diff --git a/telegram-adium/Adium.framework/Adium b/telegram-adium/Adium.framework/Adium deleted file mode 120000 index cc6abee..0000000 --- a/telegram-adium/Adium.framework/Adium +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Adium \ No newline at end of file diff --git a/telegram-adium/Adium.framework/Headers b/telegram-adium/Adium.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/telegram-adium/Adium.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/telegram-adium/Adium.framework/PrivateHeaders b/telegram-adium/Adium.framework/PrivateHeaders deleted file mode 120000 index d8e5645..0000000 --- a/telegram-adium/Adium.framework/PrivateHeaders +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/PrivateHeaders \ No newline at end of file diff --git a/telegram-adium/Adium.framework/Resources b/telegram-adium/Adium.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/telegram-adium/Adium.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/telegram-adium/Adium.framework/Versions/A/Adium b/telegram-adium/Adium.framework/Versions/A/Adium deleted file mode 100755 index 55b7d9e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Adium and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractAccount.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractAccount.h deleted file mode 100644 index be2216a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractAccount.h +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -typedef enum { - AIReconnectNever = 0, - AIReconnectNeverNoMessage, - AIReconnectImmediately, - AIReconnectNormally -} AIReconnectDelayType; - -@interface AIAccount (Abstract) - -- (id)initWithUID:(NSString *)inUID internalObjectID:(NSString *)inInternalObjectID service:(AIService *)inService; -@property (readwrite, retain, nonatomic) NSData *userIconData; -@property (readwrite, nonatomic) BOOL enabled; -@property (readonly, nonatomic) NSString *host; -@property (readonly, nonatomic) int port; -- (void)filterAndSetUID:(NSString *)inUID; - -//Status -- (void)preferencesChangedForGroup:(NSString *)group key:(NSString *)key object:(AIListObject *)object - preferenceDict:(NSDictionary *)prefDict firstTime:(BOOL)firstTime; -- (void)silenceAllContactUpdatesForInterval:(NSTimeInterval)interval; -- (void)updateContactStatus:(AIListContact *)inContact; -- (void)updateCommonStatusForKey:(NSString *)key; -@property (readwrite, retain, nonatomic) AIStatus *statusState; -@property (readonly, nonatomic) AIStatus *actualStatusState; -- (void)setStatusStateAndRemainOffline:(AIStatus *)statusState; - -/*! - * @brief Sent by an account to itself to update its user icon - * - * Both NSImage and NSData forms are passed to prevent duplication of data; either or both may be used. - * - * The image should be resized as needed for the protocol. - * - * Subclasses MUST call super's implementation. - * - * @param image An NSImage of the user icon, or nil if no image. - * @param originalData The original data which made the image, which may be in any NSImage-compatible format, or nil if no image. - */ -- (void)setAccountUserImage:(NSImage *)image withData:(NSData *)originalData; - -/*! - * @brief Called when the account was edited. - */ -- (void)accountEdited; - -//Auto-Refreshing Status String -- (NSAttributedString *)autoRefreshingOutgoingContentForStatusKey:(NSString *)key; -- (void)autoRefreshingOutgoingContentForStatusKey:(NSString *)key selector:(SEL)selector context:(id)originalContext; -- (NSAttributedString *)autoRefreshingOriginalAttributedStringForStatusKey:(NSString *)key; -- (void)setValue:(id)value forProperty:(NSString *)key notify:(NotifyTiming)notify; -- (void)startAutoRefreshingStatusKey:(NSString *)key forOriginalValueString:(NSString *)originalValueString; -- (void)stopAutoRefreshingStatusKey:(NSString *)key; -- (void)_startAttributedRefreshTimer; -- (void)_stopAttributedRefreshTimer; -- (void)gotFilteredStatusMessage:(NSAttributedString *)statusMessage forStatusState:(AIStatus *)statusState; -- (void)updateLocalDisplayNameTo:(NSAttributedString *)displayName; -@property (readonly, nonatomic) NSString *currentDisplayName; - -//Contacts -@property (readonly, nonatomic) NSArray *contacts; -- (AIListContact *)contactWithUID:(NSString *)sourceUID; -- (void)removeAllContacts; -- (void)removePropertyValuesFromContact:(AIListContact *)listContact silently:(BOOL)silent; -- (NSString *)fallbackAliasForContact:(AIListContact *)contact inChat:(AIChat *)chat; -- (AIAccountGroupDeletionResponse)willDeleteGroup:(AIListGroup *)group; - -//Connectivity -@property (readwrite, nonatomic) BOOL shouldBeOnline; -- (void)toggleOnline; -- (void)didConnect; -@property (readonly, nonatomic) NSSet *contactProperties; -- (void)didDisconnect; -- (void)connectScriptCommand:(NSScriptCommand *)command; -- (void)disconnectScriptCommand:(NSScriptCommand *)command; -- (void)serverReportedInvalidPassword; -- (void)getProxyConfigurationNotifyingTarget:(id)target selector:(SEL)selector context:(id)context; -- (NSString *)lastDisconnectionError; -- (void)setLastDisconnectionError:(NSString *)inError; -- (AIReconnectDelayType)shouldAttemptReconnectAfterDisconnectionError:(NSString * __strong *)disconnectionError; -@property (readonly, nonatomic) BOOL encrypted; - -//FUS Disconnecting -- (void)autoReconnectAfterDelay:(NSTimeInterval)delay; -- (double)minimumReconnectTime; -- (void)cancelAutoReconnect; -- (void)initFUSDisconnecting; - -- (void)setPasswordTemporarily:(NSString *)inPassword; -/*! - * @brief While we are connected, return the password used to connect - * - * This will not look up the password in the keychain. Results are undefined if we are not connected. - */ -@property (readonly, nonatomic) NSString *passwordWhileConnected; - -@end - -@interface AIAccount (Abstract_ForSubclasses) -//Chats -- (void)displayYouHaveConnectedInChat:(AIChat *)chat; - -- (void)passwordReturnedForConnect:(NSString *)inPassword - returnCode:(AIPasswordPromptReturn)returnCode - context:(id)inContext; - -/*! - * @brief Does joining a group chat require more information than is contained in the name alone? - * - * Default returns NO. Subclasses should return YES if additional information (via a chatCreationDictionary) is needed. - */ -- (BOOL)joiningGroupChatRequiresCreationDictionary; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListController.h deleted file mode 100644 index 96c1482..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListController.h +++ /dev/null @@ -1,245 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIAutoScrollView, AIContactList, AIListOutlineView, AIListContactCell, AIListGroupCell, ESObjectWithProperties, AIListObject, AIListContact, AIChat; - -@protocol AIContainingObject; - -#define LIST_LAYOUT_FOLDER @"Contact List" -#define LIST_LAYOUT_EXTENSION @"ListLayout" -#define PREF_GROUP_LIST_LAYOUT @"List Layout" - -#define KEY_LIST_LAYOUT_ALIGNMENT @"Contact Text Alignment" -#define KEY_LIST_LAYOUT_GROUP_ALIGNMENT @"Group Text Alignment" -#define KEY_LIST_LAYOUT_SHOW_ICON @"Show User Icon" -#define KEY_LIST_LAYOUT_USER_ICON_SIZE @"User Icon Size" -#define KEY_LIST_LAYOUT_SHOW_EXT_STATUS @"Show Extended Status" -#define KEY_LIST_LAYOUT_SHOW_STATUS_ICONS @"Show Status Icons" -#define KEY_LIST_LAYOUT_SHOW_SERVICE_ICONS @"Show Service Icons" -#define KEY_LIST_LAYOUT_WINDOW_STYLE @"Window Style" - -#define KEY_LIST_LAYOUT_EXTENDED_STATUS_STYLE @"Extended Status Style" -#define KEY_LIST_LAYOUT_EXTENDED_STATUS_POSITION @"Extended Status Position" -#define KEY_LIST_LAYOUT_USER_ICON_POSITION @"User Icon Position" -#define KEY_LIST_LAYOUT_STATUS_ICON_POSITION @"Status Icon Position" -#define KEY_LIST_LAYOUT_SERVICE_ICON_POSITION @"Service Icon Position" - -#define KEY_LIST_LAYOUT_CONTACT_SPACING @"Contact Spacing" -#define KEY_LIST_LAYOUT_GROUP_TOP_SPACING @"Group Top Spacing" - -#define KEY_LIST_LAYOUT_VERTICAL_AUTOSIZE @"Vertical Autosizing" -#define KEY_LIST_LAYOUT_HORIZONTAL_AUTOSIZE @"Horizontal Autosizing" -#define KEY_LIST_LAYOUT_HORIZONTAL_WIDTH @"Horizontal Width" -#define KEY_LIST_LAYOUT_VERTICAL_HEIGHT @"Vertical Height" -#define KEY_LIST_LAYOUT_WINDOW_OPACITY @"Window Opacity" - -#define KEY_LIST_LAYOUT_CONTACT_FONT @"Contact Font" -#define KEY_LIST_LAYOUT_STATUS_FONT @"Status Font" -#define KEY_LIST_LAYOUT_GROUP_FONT @"Group Font" - -#define KEY_LIST_LAYOUT_CONTACT_LEFT_INDENT @"Contact Left Indent" -#define KEY_LIST_LAYOUT_CONTACT_RIGHT_INDENT @"Contact Right Indent" - -#define KEY_LIST_LAYOUT_OUTLINE_BUBBLE @"Outline Bubble" -#define KEY_LIST_LAYOUT_CONTACT_BUBBLE_GRADIENT @"Contact Bubble Draw With Gradient" -#define KEY_LIST_LAYOUT_GROUP_HIDE_BUBBLE @"Group Hide Bubble" -#define KEY_LIST_LAYOUT_OUTLINE_BUBBLE_WIDTH @"Outline Bubble Line Width" - -typedef enum { - AIContactListWindowStyleStandard = 0, - AIContactListWindowStyleBorderless, - AIContactListWindowStyleGroupBubbles, - AIContactListWindowStyleContactBubbles, - AIContactListWindowStyleContactBubbles_Fitted, - AIContactListWindowStyleGroupChat -} AIContactListWindowStyle; - -typedef enum { - LIST_POSITION_NA = -1, - LIST_POSITION_FAR_LEFT, - LIST_POSITION_LEFT, - LIST_POSITION_RIGHT, - LIST_POSITION_FAR_RIGHT, - LIST_POSITION_BADGE_LEFT, - LIST_POSITION_BADGE_RIGHT, -} LIST_POSITION; - -typedef enum { - EXTENDED_STATUS_POSITION_BESIDE_NAME = 0, - EXTENDED_STATUS_POSITION_BELOW_NAME, - EXTENDED_STATUS_POSITION_BOTH -} EXTENDED_STATUS_POSITION; - -typedef enum { - STATUS_ONLY = 0, - IDLE_ONLY, - IDLE_AND_STATUS -} EXTENDED_STATUS_STYLE; - -//AIListThemeWindowController defines -#define LIST_THEME_FOLDER @"Contact List" -#define LIST_THEME_EXTENSION @"ListTheme" -#define PREF_GROUP_LIST_THEME @"List Theme" - -// Contact List Colors Enabled -#define KEY_AWAY_ENABLED @"Away Enabled" -#define KEY_IDLE_ENABLED @"Idle Enabled" -#define KEY_TYPING_ENABLED @"Typing Enabled" -#define KEY_SIGNED_OFF_ENABLED @"Signed Off Enabled" -#define KEY_SIGNED_ON_ENABLED @"Signed On Enabled" -#define KEY_UNVIEWED_ENABLED @"Unviewed Content Enabled" -#define KEY_ONLINE_ENABLED @"Online Enabled" -#define KEY_IDLE_AWAY_ENABLED @"Idle And Away Enabled" -#define KEY_OFFLINE_ENABLED @"Offline Enabled" -#define KEY_MOBILE_ENABLED @"Mobile Enabled" - -#define KEY_LABEL_AWAY_COLOR @"Away Label Color" -#define KEY_LABEL_IDLE_COLOR @"Idle Label Color" -#define KEY_LABEL_TYPING_COLOR @"Typing Label Color" -#define KEY_LABEL_SIGNED_OFF_COLOR @"Signed Off Label Color" -#define KEY_LABEL_SIGNED_ON_COLOR @"Signed On Label Color" -#define KEY_LABEL_UNVIEWED_COLOR @"Unviewed Content Label Color" -#define KEY_LABEL_ONLINE_COLOR @"Online Label Color" -#define KEY_LABEL_IDLE_AWAY_COLOR @"Idle And Away Label Color" -#define KEY_LABEL_OFFLINE_COLOR @"Offline Label Color" -#define KEY_LABEL_MOBILE_COLOR @"Mobile Label Color" - -#define KEY_AWAY_COLOR @"Away Color" -#define KEY_IDLE_COLOR @"Idle Color" -#define KEY_TYPING_COLOR @"Typing Color" -#define KEY_SIGNED_OFF_COLOR @"Signed Off Color" -#define KEY_SIGNED_ON_COLOR @"Signed On Color" -#define KEY_UNVIEWED_COLOR @"Unviewed Content Color" -#define KEY_ONLINE_COLOR @"Online Color" -#define KEY_IDLE_AWAY_COLOR @"Idle And Away Color" -#define KEY_OFFLINE_COLOR @"Offline Color" -#define KEY_MOBILE_COLOR @"Mobile Color" - -#define KEY_LIST_THEME_BACKGROUND_IMAGE_ENABLED @"Use Background Image" -#define KEY_LIST_THEME_BACKGROUND_IMAGE_PATH @"Background Image Path" -#define KEY_LIST_THEME_BACKGROUND_FADE @"Background Fade" -#define KEY_LIST_THEME_BACKGROUND_IMAGE_STYLE @"Background Image Style" - -#define KEY_LIST_THEME_BACKGROUND_COLOR @"Background Color" -#define KEY_LIST_THEME_HIGHLIGHT_COLOR @"Highlight Color" -#define KEY_LIST_THEME_GRID_COLOR @"Grid Color" - -#define KEY_LIST_THEME_GROUP_BACKGROUND @"Group Background" -#define KEY_LIST_THEME_GROUP_BACKGROUND_GRADIENT @"Group Background Gradient" -#define KEY_LIST_THEME_GROUP_TEXT_COLOR @"Group Text Color" -#define KEY_LIST_THEME_GROUP_TEXT_COLOR_INVERTED @"Group Inverted Text Color" -#define KEY_LIST_THEME_GROUP_SHADOW_COLOR @"Group Shadow Color" -#define KEY_LIST_THEME_GROUP_GRADIENT @"Group Gradient" -#define KEY_LIST_THEME_GROUP_SHADOW @"Group Shadow" - -#define KEY_LIST_THEME_CONTACT_STATUS_COLOR @"Contact Status Text Color" - -#define KEY_LIST_THEME_GRID_ENABLED @"Grid Enabled" -#define KEY_LIST_THEME_HIGHLIGHT_ENABLED @"Custom Highlight Enabled" -#define KEY_LIST_THEME_BACKGROUND_AS_STATUS @"Background As Status" -#define KEY_LIST_THEME_BACKGROUND_AS_EVENTS @"Background As Events" - -#define KEY_LIST_THEME_FADE_OFFLINE_IMAGES @"Fade Offline Images" - -#define AIPerformExpandItemNotification @"AIPerformExpandItemNotification" -#define AIPerformCollapseItemNotification @"AIPerformCollapseItemNotification" -#define AIDisplayableContainedObjectsDidChange @"AIDisplayableContainedObjectsDidChange" - -@protocol AIListControllerDelegate -- (IBAction)performDefaultActionOnSelectedObject:(AIListObject *)selectedObject sender:(NSOutlineView *)sender; -@end - -@interface NSObject(AIListControllerOptionalDelegateMethods) -- (void)toggleFindPanel:(id)sender; -- (BOOL)forwardKeyEventToFindPanel:(NSEvent *)theEvent; -@end - -@interface AIAbstractListController : NSObject { - AIAutoScrollView *scrollView_contactList; - AIListOutlineView *contactListView; - - AISmoothTooltipTracker *tooltipTracker; - - AIListContactCell *contentCell; - AIListGroupCell *groupCell; - - ESObjectWithProperties *contactList; - BOOL hideRoot; - - CGFloat backgroundOpacity; - - NSArray *dragItems; - - BOOL configuredViewsAndTooltips; - - id delegate; - - BOOL showTooltips; - BOOL showTooltipsInBackground; - - BOOL useContactListGroups; - int indentationPerLevel[9]; -} -@property (readonly, nonatomic) AIListOutlineView *contactListView; - -- (id)initWithContactListView:(AIListOutlineView *)inContactListView inScrollView:(AIAutoScrollView *)inScrollView_contactList delegate:(id)inDelegate; -- (id)delegate; -- (void)contactListWillBeRemovedFromWindow; -- (void)contactListWasAddedBackToWindow; - -- (void)setContactListRoot:(ESObjectWithProperties *)newContactListRoot; -- (ESObjectWithProperties *)contactListRoot; - -- (void)setHideRoot:(BOOL)inHideRoot; -- (void)setUseContactListGroups:(BOOL)useContactListGroups; -- (void)reloadData; - -- (void)setBackgroundOpacity:(CGFloat)opacity; - -- (IBAction)performDefaultActionOnSelectedItem:(NSOutlineView *)sender; - -- (void)updateLayoutFromPrefDict:(NSDictionary *)prefDict andThemeFromPrefDict:(NSDictionary *)themeDict; -- (void)updateCellRelatedThemePreferencesFromDict:(NSDictionary *)prefDict; - -- (void)listObjectAttributeChangesComplete:(NSNotification *)notification; -- (void)contactListDesiredSizeChanged; -- (void)updateTransparency; -- (BOOL)useAliasesInContactListAsRequested; -- (BOOL)shouldUseContactTextColors; -- (BOOL)useStatusMessageAsExtendedStatus; - -- (void)configureViewsAndTooltips; - -//Tooltips -- (void)showTooltipAtPoint:(NSPoint)screenPoint; -- (AIListObject *)contactListItemAtScreenPoint:(NSPoint)screenPoint; -- (void)hideTooltip; - -- (void)setShowTooltips:(BOOL)inShowTooltips; -- (void)setShowTooltipsInBackground:(BOOL)inShowTooltipsInBackground; -- (void)pasteboard:(NSPasteboard *)sender provideDataForType:(NSString *)type; - -//Drag & Drop -- (void)setDragItems:(NSNotification *)notification; - -//find panel -- (void)outlineViewToggleFindPanel:(NSOutlineView *)outlineView; -- (BOOL)outlineView:(NSOutlineView *)outlineView forwardKeyEventToFindPanel:(NSEvent *)event; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListObjectMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListObjectMenu.h deleted file mode 100644 index 20a64f1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAbstractListObjectMenu.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIListObject; - -@interface AIAbstractListObjectMenu : NSObject { - NSArray *menuItems; - NSMenu *menu; -} - -- (NSArray *)menuItems; -- (NSMenu *)menu; -- (NSMenuItem *)menuItemWithRepresentedObject:(id)object; -- (void)rebuildMenu; - -//For Subclassers -- (NSArray *)buildMenuItems; -- (NSImage *)imageForListObject:(AIListObject *)listObject usingUserIcon:(BOOL)useUserIcon; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccount.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAccount.h deleted file mode 100644 index 60b4c89..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccount.h +++ /dev/null @@ -1,351 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIListContact, AIChat, AIContentObject, ESFileTransfer, AIStatus, AIContentMessage, AIContentNotification, AIContentTyping; - -#define GROUP_ACCOUNT_STATUS @"Account Status" - -//All keys below are for NSString objects -#define KEY_CONNECT_HOST @"Connect Host" -#define KEY_DEFAULT_USER_ICON @"Default User Icon" -#define KEY_USE_USER_ICON @"Use User Icon" - -//NSNumber objects -#define KEY_CONNECT_PORT @"Connect Port" -#define KEY_ACCOUNT_CHECK_MAIL @"Check Mail" -#define KEY_ENABLED @"Enabled" -#define KEY_AUTOCONNECT @"AutoConnect" -#define KEY_ACCOUNT_REGISTER_ON_CONNECT @"Register on Connect" - -//NSData archive of an NSAttributedString -#define KEY_ACCOUNT_DISPLAY_NAME @"FullNameAttr" - -#define Adium_RequestImmediateDynamicContentUpdate @"Adium_RequestImmediateDynamicContentUpdate" - -//Proxy -#define KEY_ACCOUNT_PROXY_ENABLED @"Proxy Enabled" -#define KEY_ACCOUNT_PROXY_TYPE @"Proxy Type" -#define KEY_ACCOUNT_PROXY_HOST @"Proxy Host" -#define KEY_ACCOUNT_PROXY_PORT @"Proxy Port" -#define KEY_ACCOUNT_PROXY_USERNAME @"Proxy Username" -#define KEY_ACCOUNT_PROXY_PASSWORD @"Proxy Password" - -//Proxy types -typedef enum -{ - Adium_Proxy_HTTP = 0, - Adium_Proxy_SOCKS4, - Adium_Proxy_SOCKS5, - Adium_Proxy_Default_HTTP, - Adium_Proxy_Default_SOCKS4, - Adium_Proxy_Default_SOCKS5, - Adium_Proxy_None, - Adium_Proxy_Tor -} AdiumProxyType; - -//Privacy -typedef enum { - AIPrivacyTypePermit = 0, - AIPrivacyTypeDeny -} AIPrivacyType; - -typedef enum { - AIPrivacyOptionAllowAll = 1, //Anyone can conctact you - AIPrivacyOptionDenyAll, //Nobody can contact you - AIPrivacyOptionAllowUsers, //Only those on your allow list can contact you - AIPrivacyOptionDenyUsers, //Those on your deny list can't contact you - AIPrivacyOptionAllowContactList, //Only those on your contact list can contact you - AIPrivacyOptionUnknown, //used by the privacy settings window, but could probably also be used by accounts - AIPrivacyOptionCustom //used by the privacy settings window -} AIPrivacyOption; - -typedef enum { - AIAuthorizationNoResponse = 0, - AIAuthorizationDenied, - AIAuthorizationAllowed -} AIAuthorizationResponse; - -typedef enum { - AIAccountGroupDeletionShouldRemoveContacts = 0, - AIAccountGroupDeletionShouldIgnoreContacts -} AIAccountGroupDeletionResponse; - -//Support for file transfer -@protocol AIAccount_Files - //can the account send entire folders on its own? - - (BOOL)canSendFolders; - - //Instructs the account to accept a file transfer request - - (void)acceptFileTransferRequest:(ESFileTransfer *)fileTransfer; - - //Instructs the account to reject a file receive request - - (void)rejectFileReceiveRequest:(ESFileTransfer *)fileTransfer; - - //Instructs the account to initiate sending of a file - - (void)beginSendOfFileTransfer:(ESFileTransfer *)fileTransfer; - - //Instructs the account to cancel a filet ransfer in progress - - (void)cancelFileTransfer:(ESFileTransfer *)fileTransfer; -@end - -/*! - * @protocol AIAccount_Privacy - * @brief Support for privacy settings - * - * An AIAccount subclass may implement this protocol to support privacy settings - */ -@protocol AIAccount_Privacy - /*! - * @brief Add a list object to a privacy list - * - * @param inObject The object - * @param type Either AIPrivacyTypePermit or AIPrivacyTypeDeny - * - * @result Boolean success - */ - -(BOOL)addListObject:(AIListObject *)inObject toPrivacyList:(AIPrivacyType)type; - - /*! - * @brief Remove a list object from a privacy list - * - * @param inObject The object - * @param type Either AIPrivacyTypePermit or AIPrivacyTypeDeny - * - * @result Boolean success - */ - -(BOOL)removeListObject:(AIListObject *)inObject fromPrivacyList:(AIPrivacyType)type; - - /*! - * @brief Get the contacts on the specified privacy list - * - * @result An NSArray of AIListContacts, or an empty array if no contacts are on the requested list - */ - -(NSArray *)listObjectsOnPrivacyList:(AIPrivacyType)type; - - /*! - * @brief Set the privacy options - * - * @param option An AIPrivacyOption value - */ - -(void)setPrivacyOptions:(AIPrivacyOption)option; - - /*! - * @brief Get the privacy options - * - * @result An AIPrivacyOption value - */ - -(AIPrivacyOption)privacyOptions; -@end - -@class AdiumAccounts; -@protocol AIAccountControllerRemoveConfirmationDialog; - -/*! - * @class AIAccount - * @brief An account of ours (one we connect to and use to talk to handles) - * - * AIAccount is effectively an abstract superclass, as it can do nothing useful on its own. - * Subclasses of AIAccount, however, inherit much power. With great power comes great responsibility. - */ -@interface AIAccount : AIListObject { - NSString *password; - BOOL silentAndDelayed; //We are waiting for and processing our sign on updates - BOOL disconnectedByFastUserSwitch; //We are offline because of a fast user switch - BOOL namesAreCaseSensitive; - BOOL isTemporary; - BOOL enabled; - - int reconnectAttemptsPerformed; - NSString *lastDisconnectionError; - - //Attributed string refreshing - NSTimer *attributedRefreshTimer; - NSMutableSet *autoRefreshingKeys; - NSMutableSet *dynamicKeys; - - //Contact update guarding - NSTimer *delayedUpdateStatusTimer; - NSMutableArray *delayedUpdateStatusTargets; - NSTimer *silenceAllContactUpdatesTimer; - - // Former properties - NSString *formattedUID; - - AIStatus *accountStatus; - NSDate *waitingToReconnect; - - NSString *connectionProgressString; - - NSString *currentDisplayName; - - id confirmationDialogForAccountDeletion; -} - -- (void)initAccount; -- (void)connect; -- (void)disconnect; -- (void)disconnectFromDroppedNetworkConnection; -- (void)performRegisterWithPassword:(NSString *)inPassword; -- (NSString *)accountWillSetUID:(NSString *)proposedUID; -- (void)didChangeUID; -- (void)willBeDeleted; -- (id)confirmationDialogForAccountDeletion __attribute__((objc_method_family(new))); -@property (unsafe_unretained, readonly, nonatomic) id confirmationDialogForAccountDeletion; -@property (weak, readonly, nonatomic) NSAlert *alertForAccountDeletion; -- (void)alertForAccountDeletion:(id)dialog didReturn:(NSInteger)returnCode; -@property (weak, readonly, nonatomic) NSString *explicitFormattedUID; -@property (readonly, nonatomic) BOOL useHostForPasswordServerName; -@property (readonly, nonatomic) BOOL useInternalObjectIDForPasswordName; - -//Properties -@property (readonly, nonatomic) BOOL supportsAutoReplies; -@property (readonly, nonatomic) BOOL disconnectOnFastUserSwitch; -@property (readonly, nonatomic) BOOL connectivityBasedOnNetworkReachability; -@property (readonly, nonatomic) BOOL suppressTypingNotificationChangesAfterSend; -- (BOOL) canSendOfflineMessageToContact:(AIListContact *)inContact; -- (BOOL) maySendMessageToInvisibleContact:(AIListContact *)inContact; -@property (readonly, nonatomic) BOOL sendOfflineMessagesWithoutPrompting; -@property (readonly, nonatomic) BOOL accountDisplaysFileTransferMessages; -@property (readonly, nonatomic) BOOL managesOwnContactIconCache; -//Temporary Accounts -@property (readwrite, nonatomic) BOOL isTemporary; - -//Status -@property (weak, readonly, nonatomic) NSSet *supportedPropertyKeys; -- (id)statusForKey:(NSString *)key; -- (void)updateStatusForKey:(NSString *)key; -- (void)delayedUpdateContactStatus:(AIListContact *)inContact; -- (float)delayedUpdateStatusInterval; -- (void)setStatusState:(AIStatus *)statusState usingStatusMessage:(NSAttributedString *)statusMessage; -- (void)setSocialNetworkingStatusMessage:(NSAttributedString *)statusMessage; -- (BOOL)shouldUpdateAutorefreshingAttributedStringForKey:(NSString *)inKey; - -//Messaging, Chatting, Strings -- (BOOL)availableForSendingContentType:(NSString *)inType toContact:(AIListContact *)inContact; -- (BOOL)openChat:(AIChat *)chat; -- (BOOL)closeChat:(AIChat *)chat; -- (BOOL)inviteContact:(AIListObject *)contact toChat:(AIChat *)chat withMessage:(NSString *)inviteMessage; -- (void)sendTypingObject:(AIContentTyping *)inTypingObject; -- (BOOL)sendMessageObject:(AIContentMessage *)inMessageObject; -- (NSString *)encodedAttributedString:(NSAttributedString *)inAttributedString forListObject:(AIListObject *)inListObject; -- (NSString *)encodedAttributedStringForSendingContentMessage:(AIContentMessage *)inContentMessage; -- (BOOL)rejoinChat:(AIChat*)chat; -- (BOOL)groupChatsSupportTopic; -- (void)setTopic:(NSString *)topic forChat:(AIChat *)chat; -- (BOOL)shouldDisplayOutgoingMUCMessages; -/*! - * @brief Should an autoreply be sent to this message? - * - * This will only be called if the generic algorithm determines that an autoreply is appropriate. The account - * gets an opportunity to suppress sending the autoreply, e.g. on the basis of the message's content or source. - */ -- (BOOL)shouldSendAutoreplyToMessage:(AIContentMessage *)message; - -//Presence Tracking -@property (readonly, nonatomic) BOOL contactListEditable; -- (void)addContact:(AIListContact *)contact toGroup:(AIListGroup *)group; -- (void)removeContacts:(NSArray *)objects fromGroups:(NSArray *)groups; -- (void)deleteGroup:(AIListGroup *)group; -- (void)moveListObjects:(NSArray *)objects fromGroups:(NSSet *)oldGroups toGroups:(NSSet *)groups; -- (void)renameGroup:(AIListGroup *)group to:(NSString *)newName; -- (BOOL)isContactIntentionallyListed:(AIListContact *)contact; - -- (NSData *)serversideIconDataForContact:(AIListContact *)contact; - -//Contact-specific menu items -- (NSArray *)menuItemsForContact:(AIListContact *)inContact; - -//Chat-specific menu items -- (NSArray *)menuItemsForChat:(AIChat *)inChat; - -//Account-specific menu items -@property (weak, readonly, nonatomic) NSArray *accountActionMenuItems; -- (void)accountMenuDidUpdate:(NSMenuItem*)menuItem; - -//Secure messaging -- (BOOL)allowSecureMessagingTogglingForChat:(AIChat *)inChat; -@property (weak, readonly, nonatomic) NSString *aboutEncryption; -- (void)requestSecureMessaging:(BOOL)inSecureMessaging - inChat:(AIChat *)inChat; - -/*! - * @brief Can the account send images inline within a chat? - */ -- (BOOL)canSendImagesForChat:(AIChat *)inChat; - -/*! - * @brief Should the chat autocomplete the UID instead of the Display Name? - */ -- (BOOL)chatShouldAutocompleteUID:(AIChat *)inChat; - -/*! - * @brief Suffix for autocompleted contacts - */ -- (NSString *)suffixForAutocomplete:(AIChat *)inChat forPartialWordRange:(NSRange)charRange; - -/*! - * @brief Prefix for autocompleted contacts - */ -- (NSString *)prefixForAutocomplete:(AIChat *)inChat forPartialWordRange:(NSRange)charRange; - -/*! - * @brief Does the account support sending notifications? - */ -- (BOOL)supportsSendingNotifications; -- (BOOL)sendNotificationObject:(AIContentNotification *)inContentNotification; - -/*! - * @brief An authorization prompt closed, granting or denying a contact's request for authorization - * - * @param inWindowController The window controller which closed; an account may have kept track of what windows were showing its authorization prompts - * @param infoDict A dictionary of authorization information created by the account originally and possibly modified - * @param authorizationResponse An AIAuthorizationResponse indicating if authorization was granted or denied or if there was no response - */ -- (void)authorizationWithDict:(NSDictionary *)__attribute__((ns_consumed))infoDict response:(AIAuthorizationResponse)authorizationResponse; - --(NSMenu*)actionMenuForChat:(AIChat*)chat; - -- (BOOL)accountManagesGroupChatIgnore; -- (BOOL)contact:(AIListContact *)inContact isIgnoredInChat:(AIChat *)chat; -- (void)setContact:(AIListContact *)inContact ignored:(BOOL)inIgnored inChat:(AIChat *)chat; - -/*! - * @brief Should transcripts be stored for a given chat? - * - * Subclasses which intend to return YES should return [super shouldLogChat:chat]. - */ -- (BOOL)shouldLogChat:(AIChat *)chat; - -/*! - * @brief The proxy's type used for this account. - */ -- (AdiumProxyType)proxyType; - -/*! - * @brief The proxy's hostname the user entered for this account. - */ -- (NSString *)proxyHost; - -@end - -@interface AIAccount (Private_ForSubclasses) -- (void)gotFilteredDisplayName:(NSAttributedString *)attributedDisplayName; -- (void)performDelete; -@end - -#import diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountControllerProtocol.h deleted file mode 100644 index 6a648fd..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountControllerProtocol.h +++ /dev/null @@ -1,209 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIService, AIAccount, AIListContact, AIStatus; - -#define Account_ListChanged @"Account_ListChanged" -#define Adium_RequestSetManualIdleTime @"Adium_RequestSetManualIdleTime" - -@protocol AIAccountControllerRemoveConfirmationDialog -- (void)runModal; -- (void)beginSheetModalForWindow:(NSWindow*)window; -@end - -@interface NSObject (AIEditAccountWindowControllerTarget) -//Optional -- (void)editAccountWindow:(NSWindow*)window didOpenForAccount:(AIAccount *)inAccount; - -//Required -- (void)editAccountSheetDidEndForAccount:(AIAccount *)inAccount withSuccess:(BOOL)successful; -@end - -typedef enum { - AIPromptAsNeeded = 0, - AIPromptAlways, - AIPromptNever -} AIPromptOption; - -typedef enum { - AINickServPassword, - AIQPassword, - AIXPassword, - AIAuthServPassword -} AISpecialPasswordType; - -@protocol AIAccountController - -#pragma mark Services -/*! - * @brief Register an AIService instance - * - * All services should be registered before they are used. A service provides access to an instant messaging protocol. - */ -- (void)registerService:(AIService *)inService; - -/*! - * @brief Returns an array of all available services - * - * @return NSArray of AIService instances - */ -@property (nonatomic, readonly) NSArray *services; - -/*! - * @brief Returns an array of all active services - * - * "Active" services are those for which the user has an enabled account. - * @param includeCompatible Include services which are compatible with an enabled account but not specifically active. - * For example, if an AIM account is enabled, the ICQ service will be included if this is YES. - * @return NSArray of AIService instances - */ -- (NSSet *)activeServicesIncludingCompatibleServices:(BOOL)includeCompatible; - -/*! - * @brief Retrieves a service by its unique ID - * - * @param uniqueID The serviceCodeUniqueID of the desired service - * @return AIService if found, nil if not found - */ -- (AIService *)serviceWithUniqueID:(NSString *)uniqueID; - -/*! - * @brief Retrieves a service by service ID. - * - * Service IDs may be shared by multiple services if the same service is provided by two different plugins. - * -[AIService serviceID] returns serviceIDs. An example is @"AIM". - * @return The first service with the matching service ID, or nil if none is found. - */ -- (AIService *)firstServiceWithServiceID:(NSString *)serviceID; - -#pragma mark Passwords -/*! - * @brief Set the password of an account - * - * @param inPassword password to store - * @param inAccount account the password belongs to - */ -- (void)setPassword:(NSString *)inPassword forAccount:(AIAccount *)inAccount; - -/*! - * @brief Forget the password of an account - * - * @param inAccount account whose password should be forgotten. Any stored keychain item will be removed. - */ -- (void)forgetPasswordForAccount:(AIAccount *)inAccount; - -/*! - * @brief Retrieve the stored password of an account - * - * @param inAccount account whose password is desired - * @return account password, or nil if the password is not available without prompting - */ -- (NSString *)passwordForAccount:(AIAccount *)inAccount; - -/*! - * @brief Retrieve the password of an account, prompting the user if necessary - * - * @param inAccount account whose password is desired - * @param promptOption An AIPromptOption determining whether and how a prompt for the password should be displayed if it is needed. This allows forcing or suppressing of the prompt dialogue. If AIPromptOptionNever is used, the returnCode sent to the target will always be AIPasswordPromptOKReturn. - * @param inTarget target to notify when password is available - * @param inSelector selector to notify when password is available. Selector is of the form - (void)returnedPassword:(NSString *)p returnCode:(AIPasswordPromptReturn)returnCode context:(id)context - * @param inContext context passed to target - */ -- (void)passwordForAccount:(AIAccount *)inAccount promptOption:(AIPromptOption)promptOption notifyingTarget:(id)inTarget selector:(SEL)inSelector context:(id)inContext; - -/*! - * @brief Set the password for a proxy server - * - * @param inPassword password to store. Nil to forget the password for this server/username pair. - * @param server proxy server name - * @param userName proxy server user name - * - * XXX - This is inconsistent. Above we have a separate forget method, here we forget when nil is passed... - */ -- (void)setPassword:(NSString *)inPassword forProxyServer:(NSString *)server userName:(NSString *)userName; - -/*! - * @brief Retrieve the stored password for a proxy server - * - * @param server proxy server name - * @param userName proxy server user name - * @return proxy server password, or nil if the password is not available without prompting - */ -- (NSString *)passwordForProxyServer:(NSString *)server userName:(NSString *)userName; - -/*! - * @brief Retrieve the password for a proxy server, prompting the user if necessary - * - * @param server proxy server name - * @param userName proxy server user name - * @param inTarget target to notify when password is available - * @param inSelector selector to notify when password is available. Selector is of the form - (void)returnedPassword:(NSString *)p returnCode:(AIPasswordPromptReturn)returnCode context:(id)context - * @param inContext context passed to target - */ -- (void)passwordForProxyServer:(NSString *)server userName:(NSString *)userName notifyingTarget:(id)inTarget selector:(SEL)inSelector context:(id)inContext; - -// document -- (void)passwordForType:(AISpecialPasswordType)inType forAccount:(AIAccount *)inAccount promptOption:(AIPromptOption)inOption name:(NSString *)inName notifyingTarget:(id)inTarget selector:(SEL)inSelector context:(id)inContext; -- (NSString *)passwordForType:(AISpecialPasswordType)inType forAccount:(AIAccount *)inAccount name:(NSString *)inName; -- (void)setPassword:(NSString *)inPassword forType:(AISpecialPasswordType)inType forAccount:(AIAccount *)inAccount name:(NSString *)inName; - -#pragma mark Accounts -@property (nonatomic, readonly) NSArray *accounts; -- (NSArray *)accountsCompatibleWithService:(AIService *)service; -- (NSArray *)accountsWithCurrentStatus:(AIStatus *)status; -- (AIAccount *)accountWithInternalObjectID:(NSString *)objectID; -- (AIAccount *)createAccountWithService:(AIService *)service UID:(NSString *)inUID; -- (void)addAccount:(AIAccount *)inAccount; -- (void)deleteAccount:(AIAccount *)inAccount; -- (NSUInteger)moveAccount:(AIAccount *)account toIndex:(NSUInteger)destIndex; -- (void)accountDidChangeUID:(AIAccount *)inAccount; - -/*! - * @brief Change an account's current and future service - * - * This should only be used by an AIAccount to upgrade itself to a new service, as may happen when - * transitioning from one implementation to another. - * - * Generally, this is not necessary, as migration can be performed by simply substituting the new service ID - * for the old one in -[AdiumAccounts _upgradeServiceID:forAccountDict:]. However, if that is insufficient, - * because for example some processing must be done with information from both old and new accounts, - * this may be useful for performing a move at runtime. - * - * It will save the change; account immediately becomes on service, and it will be on service when it is - * next loaded. - */ -- (void)moveAccount:(AIAccount *)account toService:(AIService *)service; - -//Preferred Accounts -- (AIAccount *)preferredAccountForSendingContentType:(NSString *)inType toContact:(AIListContact *)inContact; - -//Connection convenience methods -- (void)disconnectAllAccounts; -@property (nonatomic, readonly) BOOL oneOrMoreConnectedAccounts; -@property (nonatomic, readonly) BOOL oneOrMoreConnectedOrConnectingAccounts; - -/*! - * @brief Display account configuration for an account - * - * @param account The account to edit. Must not be nil. - * @param window The window on which to attach the configuration as a sheet. If nil, the editor is shown as a free-standing window. - * @param target The target to notify when editing is complete. See the AIEditAccountWindowControllerTarget informal protocol. - */ -- (void)editAccount:(AIAccount *)account onWindow:(NSWindow *)window notifyingTarget:(id)target; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountMenu.h deleted file mode 100644 index 6df1c57..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountMenu.h +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -@class AIAccount; -@protocol AIAccountMenuDelegate; - -typedef enum { - AIAccountNoSubmenu = 0, - AIAccountStatusSubmenu, - AIAccountOptionsSubmenu -} AIAccountSubmenuType; - -@interface AIAccountMenu : AIAbstractListObjectMenu { - id delegate; - BOOL delegateRespondsToDidSelectAccount; - BOOL delegateRespondsToShouldIncludeAccount; - - BOOL useSystemFont; - BOOL submenuType; - BOOL showTitleVerbs; - BOOL includeDisabledAccountsMenu; - BOOL includeAddAccountsMenu; - BOOL delegateRespondsToSpecialMenuItem; - - NSControlSize controlSize; - - AIStatusMenu *statusMenu; -} - -+ (id)accountMenuWithDelegate:(id)inDelegate - submenuType:(AIAccountSubmenuType)inSubmenuType - showTitleVerbs:(BOOL)inShowTitleVerbs; - -/*! @brief Whether to use the system font instead of the menu font. - * - * @par By default, menu items in the account menu use the menu font, but a client can request them with the system font instead. - */ -@property (readwrite, nonatomic) BOOL useSystemFont; - -@property (readwrite, nonatomic, unsafe_unretained) id delegate; - -- (NSMenuItem *)menuItemForAccount:(AIAccount *)account; - -@end - -@protocol AIAccountMenuDelegate -- (void)accountMenu:(AIAccountMenu *)inAccountMenu didRebuildMenuItems:(NSArray *)menuItems; - -@optional -- (void)accountMenu:(AIAccountMenu *)inAccountMenu didSelectAccount:(AIAccount *)inAccount; -- (BOOL)accountMenu:(AIAccountMenu *)inAccountMenu shouldIncludeAccount:(AIAccount *)inAccount; - -/*! - * @brief At what size will this menu be used? - * - * If not implemented, the default is NSRegularControlSize. NSMiniControlSize is not supported. - */ -- (NSControlSize)controlSizeForAccountMenu:(AIAccountMenu *)inAccountMenu; - -//Should the account menu include a submenu of services for adding accounts? -- (BOOL)accountMenuShouldIncludeAddAccountsMenu:(AIAccountMenu *)inAccountMenu; - -//Does the menu require a special topmost item + seperator? -- (NSMenuItem *)accountMenuSpecialMenuItem:(AIAccountMenu *)inAccountMenu; - -//Should the account menu include a submenu of 'disabled accounts'? -- (BOOL)accountMenuShouldIncludeDisabledAccountsMenu:(AIAccountMenu *)inAccountMenu; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountPlusFieldPromptController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountPlusFieldPromptController.h deleted file mode 100644 index f601fc7..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountPlusFieldPromptController.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIListContact, AICompletingTextField; - -@interface AIAccountPlusFieldPromptController : AIWindowController { - IBOutlet AICompletingTextField *textField_handle; - IBOutlet NSPopUpButton *popUp_service; - - IBOutlet NSButton *button_okay; - IBOutlet NSButton *button_cancel; - - AIAccountMenu *accountMenu; -} - -+ (void)showPrompt; -+ (void)closeSharedInstance; -- (IBAction)okay:(id)sender; -- (AIListContact *)contactFromTextField; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountViewController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountViewController.h deleted file mode 100644 index aa70f19..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAccountViewController.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccount; - -@interface AIAccountViewController : NSObject { - /* These are the views used in Adium's account preferences. If views aren't provided by a custom account view - * nib, default views with the most common controls will be used. There is no need to provide a custom nib - * if your account code only needs the default controls. Avoid using the auxiliary tabs if possible. */ - IBOutlet NSView *view_setup; //Account setup (UID, password, etc) - IBOutlet NSView *view_profile; //Account profile (Alias, profile) - IBOutlet NSView *view_options; //Account options (Host, port, mail, protocol, etc) - IBOutlet NSView *view_privacy; //Account privacy (Encryption, typing, etc) - IBOutlet NSTabView *view_auxiliaryTabView; //Tab view containing auxiliary tabs - - //These common controls are used by most protocols, so we place them here as a convenience to protocol code. - //Custom account view nibs are encouraged to connect to these outlets. - IBOutlet NSTextField *textField_accountUIDLabel; //Label on UID field - IBOutlet NSTextField *textField_accountUID; //UID field - IBOutlet NSTextField *label_password; //Label on the password field - IBOutlet NSTextField *textField_password; //Password field - IBOutlet NSButton *button_signUp; //Sign up for account - IBOutlet NSTextField *textField_connectHost; //Connect host - IBOutlet NSTextField *textField_connectPort; //Connect port - IBOutlet NSTextField *textField_alias; //User alias (or display name) - IBOutlet NSTextField *label_alias; //Label for the alias field - IBOutlet NSButton *checkBox_checkMail; //Check for new mail - - IBOutlet NSTextField *label_port; //Label for the port field - IBOutlet NSTextField *label_server; //Label for the login server field - - IBOutlet NSTextField *label_typing; //Label for the typing preference - IBOutlet NSButton *checkBox_sendTyping; //Send the user's typing state - - IBOutlet NSTextField *label_encryption; //Label for the encryption preference - IBOutlet NSPopUpButton *popUp_encryption; //Encryption preference - - //Instance variables - AIAccount *account; - NSMutableDictionary *changedPrefDict; -} - -+ (id)accountViewController; -- (id)init; -- (NSView *)setupView; -- (NSView *)profileView; -- (NSView *)optionsView; -- (NSView *)privacyView; -- (void)configureForAccount:(AIAccount *)inAccount; -- (IBAction)changedPreference:(id)sender; -- (IBAction)signUpAccount:(id)sender; -- (NSString *)nibName; -- (void)saveConfiguration; - -@end - -@interface AIAccountViewController (ForSubclasses) -- (NSDictionary *)keyToKeyDict; -- (void)localizeStrings; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIActionDetailsPane.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIActionDetailsPane.h deleted file mode 100644 index 935362e..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIActionDetailsPane.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIListObject; - -@interface AIActionDetailsPane : AIModularPane { - -} - -+ (AIActionDetailsPane *)actionDetailsPane; -+ (AIActionDetailsPane *)actionDetailsPaneForPlugin:(id)inPlugin; -- (void)configureForActionDetails:(NSDictionary *)inDetails listObject:(AIListObject *)inObject; -- (void)configureForEventID:(NSString *)eventID listObject:(AIListObject *)inObject; - -- (NSDictionary *)actionDetails; - -- (void)detailsForHeaderChanged; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAddressBookController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAddressBookController.h deleted file mode 100644 index fb0eaec..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAddressBookController.h +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import -#import - -#define PREF_GROUP_ADDRESSBOOK @"Address Book" -#define KEY_AB_ENABLE_IMPORT @"AB Enable Import" -#define KEY_AB_DISPLAYFORMAT @"AB Display Format String" -#define KEY_AB_NOTE_SYNC @"AB Note Sync" -#define KEY_AB_USE_IMAGES @"AB Use AB Images" -#define KEY_AB_IMAGE_SYNC @"AB Image Sync" -#define KEY_AB_PREFER_ADDRESS_BOOK_IMAGES @"AB Prefer AB Images" -#define KEY_AB_USE_FIRSTNAME @"AB Use FirstName" -#define KEY_AB_USE_NICKNAME @"AB Use NickName Only" -#define KEY_AB_CREATE_METACONTACTS @"AB Create MetaContacts" -#define AB_DISPLAYFORMAT_DEFAULT_PREFS @"AB Display Format Defaults" - -#define FORMAT_FULL @"FULL" -#define FORMAT_INITIAL @"INITIAL" -#define FORMAT_FIRST_INITIAL @"%[FIRSTINITIAL]" -#define FORMAT_FIRST_FULL @"%[FIRSTFULL]" -#define FORMAT_MIDDLE_INITIAL @"%[MIDDLEINITIAL]" -#define FORMAT_MIDDLE_FULL @"%[MIDDLEFULL]" -#define FORMAT_LAST_INITIAL @"%[LASTINITIAL]" -#define FORMAT_LAST_FULL @"%[LASTFULL]" -#define FORMAT_NICK_INITIAL @"%[NICKINITIAL]" -#define FORMAT_NICK_FULL @"%[NICKFULL]" - -@class AIService, AIAddressBookUserIconSource; - -typedef enum { - AIRequiresAddressBookEntry, - AIRequiresNoAddressBookEntry -} AIAddressBookContextMenuTag; - -@interface AIAddressBookController : NSObject { -@private - NSMenuItem *showInABContextualMenuItem; - NSMenuItem *editInABContextualMenuItem; - NSMenuItem *addToABContexualMenuItem; - - NSInteger meTag; - - NSString *displayFormat; - BOOL enableImport; - BOOL useFirstName; - BOOL useNickNameOnly; - BOOL automaticUserIconSync; - BOOL createMetaContacts; - - AIAddressBookUserIconSource *addressBookUserIconSource; - - NSMutableDictionary *personUniqueIdToMetaContactDict; -} - -+ (void) startAddressBookIntegration; -+ (void) stopAddressBookIntegration; - -+ (AIService *)serviceFromProperty:(NSString *)property; -+ (NSString *)propertyFromService:(AIService *)service; -+ (ABPerson *)personForListObject:(AIListObject *)inObject; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAdiumProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAdiumProtocol.h deleted file mode 100644 index a98487f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAdiumProtocol.h +++ /dev/null @@ -1,112 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AICoreComponentLoader, AICorePluginLoader; - -@protocol AIAccountController, AIChatController, AIContactAlertsController, AIDebugController, AIEmoticonController, - AIPreferenceController, AIMenuController, AIApplescriptabilityController, AIStatusController, - AIContentController, AIToolbarController, AISoundController, AIDockController, - AIFileTransferController, AILoginController, AIInterfaceController, AIContactController; - -@protocol AIAdium -@property (readonly, nonatomic) NSObject *accountController; -@property (readonly, nonatomic) NSObject *chatController; -@property (readonly, nonatomic) NSObject *contactController; -@property (readonly, nonatomic) NSObject *contentController; -@property (readonly, nonatomic) NSObject *dockController; -@property (readonly, nonatomic) NSObject *emoticonController; -@property (readonly, nonatomic) NSObject *interfaceController; -@property (readonly, nonatomic) NSObject *loginController; -@property (readonly, nonatomic) NSObject *menuController; -@property (readonly, nonatomic) NSObject *preferenceController; -@property (readonly, nonatomic) NSObject *soundController; -@property (readonly, nonatomic) NSObject *statusController; -@property (readonly, nonatomic) NSObject *toolbarController; -@property (readonly, nonatomic) NSObject *contactAlertsController; -@property (readonly, nonatomic) NSObject *fileTransferController; -@property (readonly, nonatomic) NSObject *debugController; -@property (readonly, nonatomic) NSObject *applescriptabilityController; - -@property (readonly, nonatomic) AICoreComponentLoader *componentLoader; -@property (readonly, nonatomic) AICorePluginLoader *pluginLoader; - -@property (readonly, nonatomic) NSString *applicationSupportDirectory; -- (NSString *)createResourcePathForName:(NSString *)name; -- (NSArray *)resourcePathsForName:(NSString *)name; -- (NSArray *)allResourcesForName:(NSString *)name withExtensions:(id)extensions; -- (NSString *)pathOfPackWithName:(NSString *)name extension:(NSString *)extension resourceFolderName:(NSString *)folderName; -@property (readonly, nonatomic) NSString *cachesPath; - -- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB; -- (NSString *)earliestLaunchedAdiumVersion; - -@property (readonly, nonatomic) BOOL isQuitting; - -@end - -//Adium events -#define KEY_EVENT_DISPLAY_NAME @"DisplayName" -#define KEY_EVENT_NOTIFICATION @"Notification" - -//Adium Notifications -#define CONTACT_STATUS_ONLINE_YES @"Contact_StatusOnlineYes" // Contact signs on -#define CONTACT_STATUS_ONLINE_NO @"Contact_StatusOnlineNo" // Contact signs off -#define CONTACT_STATUS_AWAY_YES @"Contact_StatusAwayYes" -#define CONTACT_STATUS_AWAY_NO @"Contact_StatusAwayNo" -#define CONTACT_STATUS_IDLE_YES @"Contact_StatusIdleYes" -#define CONTACT_STATUS_IDLE_NO @"Contact_StatusIdleNo" -#define CONTACT_STATUS_MESSAGE @"Contact_StatusMessage" -#define CONTACT_SEEN_ONLINE_YES @"Contact_SeenOnlineYes" -#define CONTACT_SEEN_ONLINE_NO @"Contact_SeenOnlineNo" -#define CONTACT_STATUS_MOBILE_YES @"Contact_StatusMobileYes" -#define CONTACT_STATUS_MOBILE_NO @"Contact_StatusMobileNo" -#define CONTENT_MESSAGE_SENT @"Content_MessageSent" -#define CONTENT_MESSAGE_SENT_GROUP @"Content_MessageSentGroup" -#define CONTENT_MESSAGE_RECEIVED @"Content_MessageReceived" -#define CONTENT_MESSAGE_RECEIVED_GROUP @"Content_MessageReceivedGroup" -#define CONTENT_MESSAGE_RECEIVED_FIRST @"Content_MessageReceivedFirst" -#define CONTENT_MESSAGE_RECEIVED_BACKGROUND @"Content_MessageReceivedBackground" -#define CONTENT_MESSAGE_RECEIVED_BACKGROUND_GROUP @"Content_MessageReceivedBackgroundGroup" -#define CONTENT_MESSAGE_RECEIVED_AWAY @"Content_MessageReceivedAway" -#define CONTENT_MESSAGE_RECEIVED_AWAY_GROUP @"Content_MessageReceivedAwayGroup" -#define CONTENT_NUDGE_BUZZ_OCCURED @"Content_NudgeBuzzOccured" -#define CONTENT_CONTACT_JOINED_CHAT @"Content_ContactJoinedChat" -#define CONTENT_CONTACT_LEFT_CHAT @"Content_ContactLeftChat" -#define CONTENT_GROUP_CHAT_INVITE @"Content_GroupChatInvite" -#define CONTENT_GROUP_CHAT_MENTION @"Content_GroupChatMention" -#define INTERFACE_ERROR_MESSAGE @"Interface_ErrorMessageReceived" - -/* Note: The account connected/disconnected events are aggregated for many accounts connecting simultaneously. - * Use a list object observer (see AIContactController) if you are concerned about specific account connectivity changes. - */ -#define ACCOUNT_CONNECTED @"Account_Connected" -#define ACCOUNT_DISCONNECTED @"Account_Disconnected" - -#define ACCOUNT_RECEIVED_EMAIL @"Account_NewMailReceived" -#define FILE_TRANSFER_REQUEST @"FileTransfer_Request" -#define FILE_TRANSFER_CHECKSUMMING @"FileTransfer_Checksumming" -#define FILE_TRANSFER_WAITING_REMOTE @"File_Transfer_WaitingRemote" -#define FILE_TRANSFER_BEGAN @"FileTransfer_Began" -#define FILE_TRANSFER_CANCELLED @"FileTransfer_Cancelled" -#define FILE_TRANSFER_FAILED @"FileTransfer_Failed" -#define FILE_TRANSFER_COMPLETE @"FileTransfer_Complete" - -#define AIXtrasDidChangeNotification @"AIXtrasDidChange" -#define AIApplicationDidFinishLoadingNotification @"AIApplicationDidFinishLoading" -#define AIAppWillTerminateNotification @"AIAppWillTerminate" -#define AIShowLogAtPathNotification @"AIShowLogAtPath" -#define AIShowLogViewerAndReindexNotification @"AIShowLogViewerAndReindex" -#define AINetworkDidChangeNotification @"AINetworkDidChange" diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAdvancedPreferencePane.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAdvancedPreferencePane.h deleted file mode 100644 index db03dd6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAdvancedPreferencePane.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "AIPreferencePane.h" - -@interface AIAdvancedPreferencePane : AIPreferencePane { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIApplescriptabilityControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIApplescriptabilityControllerProtocol.h deleted file mode 100644 index 6d7de50..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIApplescriptabilityControllerProtocol.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@protocol AIApplescriptabilityController -- (void)runApplescriptAtPath:(NSString *)inPath - function:(NSString *)function - arguments:(NSArray *)arguments - notifyingTarget:(id)target - selector:(SEL)selector - userInfo:(id)userInfo; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIAuthorizationRequestsWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIAuthorizationRequestsWindowController.h deleted file mode 100644 index 4404e2f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIAuthorizationRequestsWindowController.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define AUTHORIZATION_REQUESTS AILocalizedString(@"Authorization Requests", nil) -#define GET_INFO AILocalizedString(@"Get Info", nil) -#define AUTHORIZE AILocalizedString(@"Authorize", nil) -#define AUTHORIZE_ADD AILocalizedString(@"Authorize and Add", nil) -#define DENY AILocalizedString(@"Deny", nil) -#define DENY_BLOCK AILocalizedString(@"Deny and Block", nil) -#define IGNORE AILocalizedString(@"Ignore", nil) -#define IGNORE_BLOCK AILocalizedString(@"Ignore and Block", nil) - -@class AIAccount; - -@interface AIAuthorizationRequestsWindowController : AIWindowController { - IBOutlet NSTableView *tableView; - - NSMutableArray *requests; - - NSMutableDictionary *toolbarItems; - NSMutableDictionary *requiredHeightDict; -} - -+ (AIAuthorizationRequestsWindowController *)sharedController; - -- (void)addRequestWithDict:(NSDictionary *)dict; -- (void)removeRequest:(id)request; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIChat.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIChat.h deleted file mode 100644 index b895569..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIChat.h +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import -#import - -@class AIAccount, AIListObject, AIListContact, AIContentObject, AIEmoticon; - -#define Chat_OrderDidChange @"Chat_OrderDidChange" -#define Chat_WillClose @"Chat_WillClose" -#define Chat_DidOpen @"Chat_DidOpen" -#define Chat_BecameActive @"Chat_BecameActive" -#define Chat_AttributesChanged @"Chat_AttributesChanged" -#define Chat_StatusChanged @"Chat_StatusChagned" -#define Chat_ParticipatingListObjectsChanged @"Chat_ParticipatingListObjectsChanged" -#define Chat_SourceChanged @"Chat_SourceChanged" -#define Chat_DestinationChanged @"Chat_DestinationChanged" - -#define KEY_UNVIEWED_CONTENT @"unviewedContent" -#define KEY_UNVIEWED_MENTION @"unviewedMention" -#define KEY_TYPING @"typing" - -#define KEY_CHAT_TIMED_OUT @"Timed Out" -#define KEY_CHAT_CLOSED_WINDOW @"Closed Window" - -#define KEY_TOPIC @"topic" -#define KEY_TOPIC_SETTER @"topicSetter" - -typedef enum { - AIChatCanNotSendMessage = 0, - AIChatMayNotBeAbleToSendMessage, - AIChatCanSendMessageNow, - AIChatCanSendViaServersideOfflineMessage -} AIChatSendingAbilityType; - -#define KEY_ENCRYPTED_CHAT_PREFERENCE @"Encrypted Chat Preference" -#define GROUP_ENCRYPTION @"Encryption" - -typedef enum { - EncryptedChat_Default = -2, /* For use by a menu which wants to provide a 'no preference' option */ - EncryptedChat_Never = -1, - EncryptedChat_Manually = 0, /* Manually is the default */ - EncryptedChat_Automatically = 1, - EncryptedChat_RejectUnencryptedMessages = 2 -} AIEncryptedChatPreference; - -typedef enum { - EncryptionStatus_None = 0, - EncryptionStatus_Unverified, - EncryptionStatus_Verified, - EncryptionStatus_Finished -} AIEncryptionStatus; - -//Chat errors should be indicated by setting a property on this key -//with an NSNumber of the appropriate error type as its object -#define KEY_CHAT_ERROR @"Chat Error" - -//This key may be set before sending KEY_CHAT_ERROR to provide any data the -//the error message should make use of. It may be of any type. -#define KEY_CHAT_ERROR_DETAILS @"Chat Error Details" - -typedef enum { - AIChatUnknownError = 0, - AIChatMessageSendingUserIsBlocked, - AIChatMessageSendingNotAllowedWhileInvisible, - AIChatMessageSendingUserNotAvailable, - AIChatMessageSendingTooLarge, - AIChatMessageSendingTimeOutOccurred, - AIChatMessageSendingConnectionError, - AIChatMessageSendingMissedRateLimitExceeded, - AIChatMessageReceivingMissedTooLarge, - AIChatMessageReceivingMissedInvalid, - AIChatMessageReceivingMissedRateLimitExceeded, - AIChatMessageReceivingMissedRemoteIsTooEvil, - AIChatMessageReceivingMissedLocalIsTooEvil, - AIChatCommandFailed, - AIChatInvalidNumberOfArguments -} AIChatErrorType; - -@interface AIChat : ESObjectWithProperties { - AIAccount *account; - NSDate *dateOpened; - BOOL isOpen; - BOOL hasSentOrReceivedContent; - - NSMutableArray *pendingOutgoingContentObjects; - - AIListContact *__weak preferredContact; - NSString *name; - NSString *uniqueChatID; - id identifier; - - NSMutableSet *ignoredListContacts; - - BOOL hideUserIconAndStatus; - - NSMutableSet *customEmoticons; - - // Former properties - NSDictionary *chatCreationInfo; - - NSDictionary *securityDetails; - - AIListContact *_listObject; - - NSNumber *overrideLogging; -} - -+ (id)chatForAccount:(AIAccount *)inAccount; -- (id)initForAccount:(AIAccount *)inAccount; - -@property (readwrite, nonatomic, strong) AIAccount *account; - -@property (readonly, nonatomic) NSDate *dateOpened; -@property (readwrite, nonatomic, strong) NSDictionary *chatCreationDictionary; - -@property (readwrite, nonatomic) BOOL isOpen; - -@property (readwrite, nonatomic) BOOL hasSentOrReceivedContent; - -@property (readonly, nonatomic) NSUInteger unviewedContentCount; -@property (readonly, nonatomic) NSUInteger unviewedMentionCount; - -- (void)incrementUnviewedContentCount; -- (void)incrementUnviewedMentionCount; - -- (void)clearUnviewedContentCount; - -- (void)setDisplayName:(NSString *)inDisplayName; - -// -@property (readwrite, nonatomic, strong) AIListContact *listObject; -@property (readwrite, nonatomic, weak) AIListContact *preferredListObject; - -- (BOOL)shouldBeginSendingContentObject:(AIContentObject *)inObject; -- (void)finishedSendingContentObject:(AIContentObject *)inObject; - -@property (readwrite, nonatomic, strong) NSString *name; -@property (readwrite, nonatomic, strong) id identifier; - -@property (weak, readonly, nonatomic) NSString *uniqueChatID; - -@property (unsafe_unretained, readonly, nonatomic) NSImage *chatImage; -@property (unsafe_unretained, readonly, nonatomic) NSImage *chatMenuImage; - -@property (readwrite, nonatomic, strong) NSDictionary *securityDetails; -@property (readonly, nonatomic) BOOL isSecure; -@property (readonly, nonatomic) AIEncryptionStatus encryptionStatus; -@property (readonly, nonatomic) BOOL supportsSecureMessagingToggling; - -@property (readonly, nonatomic) AIChatSendingAbilityType messageSendingAbility; -@property (readonly, nonatomic) BOOL canSendImages; - -- (BOOL)isListContactIgnored:(AIListObject *)inContact; -- (void)setListContact:(AIListContact *)inContact isIgnored:(BOOL)isIgnored; - -- (void)addCustomEmoticon:(AIEmoticon *)inEmoticon; -@property (readonly, nonatomic) NSMutableSet *customEmoticons; - -- (void)receivedError:(NSNumber *)type; - -@property (readonly, nonatomic) id chatContainer; - -@property (readonly, nonatomic) NSMenu *actionMenu; - -@property (readonly, nonatomic) BOOL shouldLog; - -@property (readwrite, nonatomic) BOOL hideUserIconAndStatus; - -// Compatibility. I don't like this here. -- (NSArray *)containedObjects; -- (BOOL)isGroupChat; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIChatControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIChatControllerProtocol.h deleted file mode 100644 index 9907360..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIChatControllerProtocol.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@protocol AIChatController_Private; -@class AIChat, AIAccount, AIListContact; - -//Observer which receives notifications of changes in chat status -@protocol AIChatObserver -- (NSSet *)updateChat:(AIChat *)inChat keys:(NSSet *)inModifiedKeys silent:(BOOL)silent; -@end - -@protocol AIChatController -//Chats -- (NSSet *)allChatsWithContact:(AIListContact *)inContact; -- (NSSet *)allGroupChatsContainingContact:(AIListContact *)inContact; -- (AIChat *)openChatWithContact:(AIListContact *)inContact onPreferredAccount:(BOOL)onPreferredAccount; -- (AIChat *)chatWithContact:(AIListContact *)inContact; -- (AIChat *)existingChatWithContact:(AIListContact *)inContact; -- (AIChat *)existingChatWithUniqueChatID:(NSString *)uniqueChatID; -- (AIGroupChat *)chatWithName:(NSString *)inName - identifier:(id)identifier - onAccount:(AIAccount *)account - chatCreationInfo:(NSDictionary *)chatCreationInfo; - -- (AIGroupChat *)existingChatWithIdentifier:(id)identifier onAccount:(AIAccount *)account; -- (AIGroupChat *)existingChatWithName:(NSString *)name onAccount:(AIAccount *)account; - -- (BOOL)closeChat:(AIChat *)inChat; -- (void)accountDidCloseChat:(AIChat *)inChat; -- (void)restoreChat:(AIChat *)inChat; - -@property (nonatomic, readonly) NSSet *openChats; -@property (nonatomic, readonly) AIChat *mostRecentUnviewedChat; -@property (nonatomic, readonly) NSUInteger unviewedContentCount; -@property (nonatomic, readonly) NSUInteger unviewedConversationCount; - -- (void)switchChat:(AIChat *)chat toAccount:(AIAccount *)newAccount; -- (void)switchChat:(AIChat *)chat toListContact:(AIListContact *)inContact usingContactAccount:(BOOL)useContactAccount; -- (BOOL)contactIsInGroupChat:(AIListContact *)listContact; - - //Status -- (void)registerChatObserver:(id )inObserver; -- (void)unregisterChatObserver:(id )inObserver; -- (void)updateAllChatsForObserver:(id )observer; - - //Addition/removal of contacts to group chats -- (void)chat:(AIChat *)chat addedListContacts:(NSArray *)contacts notify:(BOOL)notify; -- (void)chat:(AIChat *)chat removedListContact:(AIListContact *)inContact; - -- (NSString *)defaultInvitationMessageForRoom:(NSString *)room account:(AIAccount *)inAccount; -@end - -@protocol AIChatController_Private -- (void)chatStatusChanged:(AIChat *)inChat modifiedStatusKeys:(NSSet *)inModifiedKeys silent:(BOOL)silent; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIColorPickerSliders.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIColorPickerSliders.h deleted file mode 100644 index 73e021c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIColorPickerSliders.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -//Private class :( -@interface NSColorPickerSliders:NSColorPicker -{ - id sliderModePopUp; -} - -- (void)_setupProfileUI; - -@end - -@interface AIColorPickerSliders : NSColorPickerSliders { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIConsoleController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIConsoleController.h deleted file mode 100644 index 254d748..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIConsoleController.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIConsoleController : NSObject { - IBOutlet NSWindow *consoleWindow; - IBOutlet NSTextView *logView; - IBOutlet NSTextView *injectView; -} - -- (IBAction)send:(id)sender; -- (IBAction)clearLog:(id)sender; -- (IBAction)showWindow:(id)sender; -- (void)close; -- (void)windowWillClose:(NSNotification *)notification; -- (void)appendToLog:(NSAttributedString *)astr; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactAlertsControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactAlertsControllerProtocol.h deleted file mode 100644 index 031e9bd..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactAlertsControllerProtocol.h +++ /dev/null @@ -1,414 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIListObject, AIChat, AIActionDetailsPane; - -@protocol AIEventHandler, AIActionHandler; - -//Event preferences -#define PREF_GROUP_CONTACT_ALERTS @"Contact Alerts" -#define KEY_CONTACT_ALERTS @"Contact Alerts" -#define KEY_DEFAULT_EVENT_ID @"Default Event ID" -#define KEY_DEFAULT_ACTION_ID @"Default Action ID" - -//Event Dictionary keys -#define KEY_EVENT_ID @"EventID" -#define KEY_ACTION_ID @"ActionID" -#define KEY_ACTION_DETAILS @"ActionDetails" -#define KEY_ONE_TIME_ALERT @"OneTime" - -typedef enum { - AIContactsEventHandlerGroup = 0, - AIMessageEventHandlerGroup, - AIAccountsEventHandlerGroup, - AIFileTransferEventHandlerGroup, - AIOtherEventHandlerGroup -} AIEventHandlerGroupType; -#define EVENT_HANDLER_GROUP_COUNT 5 - -@protocol AIContactAlertsController -/*! - * @brief Register an event - * - * An event must have a unique eventID. handler is responsible for providing information - * about the event, such as short and long descriptions. The group determines how the event will be displayed in the events - * preferences; events in the same group are displayed together. - * - * @param eventID Unique event ID - * @param handler The handler, which must conform to AIEventHandler - * @param inGroup The group - * @param global If YES, the event will only be displayed in the global Events preferences; if NO, the event is available for contacts and groups via Get Info, as well. - */ -- (void)registerEventID:(NSString *)eventID withHandler:(id )handler inGroup:(AIEventHandlerGroupType)inGroup globalOnly:(BOOL)global; - -/*! - * @brief Generate an event, returning a set of the actionIDs which were performed. - * - * This should be called when eventID occurs; it triggers all associated actions. - * - * @param eventID The event which occurred - * @param listObject The object for which the event occurred - * @param userInfo Event-specific user info - * @param previouslyPerformedActionIDs If non-nil, a set of actionIDs which should be treated as if they had already been performed in this invocation. - * - * @result The set of actions which were performed, suitable for being passed back in for another event generation via previouslyPerformedActionIDs - */ -- (NSSet *)generateEvent:(NSString *)eventID forListObject:(AIListObject *)listObject userInfo:(id)userInfo previouslyPerformedActionIDs:(NSSet *)previouslyPerformedActionIDs; - -/*! - * @brief Return all event IDs - */ -- (NSArray *)allEventIDs; - -/*! - * @brief Return all event IDs for groups/contacts (but not global ones) - */ -- (NSArray *)nonGlobalEventIDs; - -/*! - * @brief Returns a menu of all events - * - * A menu item's represented object is the dictionary describing the event it represents - * - * @param target The target on which @selector(selectEvent:) will be called on selection. - * @param global If YES, the events listed will include global ones (such as Error Occurred) in addition to contact-specific ones. - * @result An NSMenu of the events - */ -- (NSMenu *)menuOfEventsWithTarget:(id)target forGlobalMenu:(BOOL)global; - -/*! - * @brief Sort an array of event IDs - * - * Given an array of various event IDs, this sorts them by category. - * - * @brief inArray The array of eventIDs to sort - * @return Sorted version of inArray - */ -- (NSArray *)sortedArrayOfEventIDsFromArray:(NSArray *)inArray; - -/*! - * @brief Return the default event ID for a new alert - */ -- (NSString *)defaultEventID; - -#pragma mark Descriptions - -/*! - * @brief Find the eventID associated with an English name - * - * This exists for compatibility with old AdiumXtras... - */ -- (NSString*)eventIDForEnglishDisplayName:(NSString *)displayName; - -/*! - * @brief Return a short description to describe eventID when considered globally - */ -- (NSString *)globalShortDescriptionForEventID:(NSString *)eventID; - -/*! - * @brief Return a description to describe eventID; this is more verbose than the short description - * @param listObject The object for which the eventID should be described. If nil, it will be described globally. - */ -- (NSString *)longDescriptionForEventID:(NSString *)eventID forListObject:(AIListObject *)listObject; - -/*! - * @brief Return a natural language, localized description for an event - * - * This will be suitable for display to the user such as in a message window or a Growl notification - * - * @param eventID The event - * @param listObject The object for which the event occurred - * @param userInfo Event-specific userInfo - * @param includeSubject If YES, the return value is a complete sentence. If NO, the return value is suitable for display after a name or other identifier. - * @result The natural language description - */ -- (NSString *)naturalLanguageDescriptionForEventID:(NSString *)eventID - listObject:(AIListObject *)listObject - userInfo:(id)userInfo - includeSubject:(BOOL)includeSubject; - -/*! - * @brief Return the image associated with an event - */ -- (NSImage *)imageForEventID:(NSString *)eventID; - -/*! - * @brief The description for multiple combined events. - * - * @param eventID The event - * @param listObject The object for which the event references - * @param chat The chat for which the event references - * @param count The count of combined events - * - * @return The description of the event - * - */ -- (NSString *)descriptionForCombinedEventID:(NSString *)eventID - forListObject:(AIListObject *)listObject - forChat:(AIChat *)chat - withCount:(NSUInteger)count; - -#pragma mark Event types -/*! - * @brief Is the passed event a message event? - * - * Examples of messages events are "message sent" and "message received." - * - * @result YES if it is a message event - */ -- (BOOL)isMessageEvent:(NSString *)eventID; - -/*! - * @brief Is the passed event a contact status event? - * - * Examples of messages events are "contact signed on" and "contact went away." - * - * @result YES if it is a contact status event - */ -- (BOOL)isContactStatusEvent:(NSString *)eventID; - -#pragma mark Actions -/*! - * @brief Register an actionID and its handler - * - * When an event occurs -- that is, when the event is generated via - * -[id generateEvent:forListObject:userInfo:] -- the handler for each action - * associated with that event within the appropriate list object's heirarchy (object -> containing group -> global) - * will be called as per the AIActionHandler protocol. - * - * @param actionID The actionID - * @param handler The handler, which must conform to the AIActionHandler protocol - */ -- (void)registerActionID:(NSString *)actionID withHandler:(id )handler; - -/*! - * @brief Return a dictionary whose keys are action IDs and whose objects are objects conforming to AIActionHandler - */ -- (NSDictionary *)actionHandlers; - -/*! - * @brief Returns a menu of all actions - * - * A menu item's represented object is the dictionary describing the action it represents - * - * @param target The target on which @selector(selectAction:) will be called on selection - * @result The NSMenu, which does not send validateMenuItem: messages - */ -- (NSMenu *)menuOfActionsWithTarget:(id)target; - -/*! - * @brief Return the default action ID for a new alert - */ -- (NSString *)defaultActionID; - -#pragma mark Alerts -/*! - * @brief Returns an array of all the alerts of a given list object - * - * This calls alertsForListObject:withEventID:actionID with nil for eventID and actionID. - * - * @param listObject The object - */ -- (NSArray *)alertsForListObject:(AIListObject *)listObject; - -/*! - * @brief Return an array of all alerts for a list object with filtering - * - * @param listObject The object, or nil for global - * @param eventID If specified, only return events matching eventID. If nil, don't filter based on events. - * @param actionID If specified, only return actions matching actionID. If nil, don't filter based on actionID. - */ -- (NSArray *)alertsForListObject:(AIListObject *)listObject withEventID:(NSString *)eventID actionID:(NSString *)actionID; - -/*! - * @brief Add an alert (passed as a dictionary) to a list object - * - * @param newAlert The alert to add - * @param listObject The object to which to add, or nil for global - * @param setAsNewDefaults YES to make the type and details of newAlert be the new default for new alerts - */ -- (void)addAlert:(NSDictionary *)alert toListObject:(AIListObject *)listObject setAsNewDefaults:(BOOL)setAsNewDefaults; - -/*! - * @brief Add an alert at the global level - */ -- (void)addGlobalAlert:(NSDictionary *)newAlert; - -/*! - * @brief Remove an alert from a listObject - * - * @param victimAlert The alert to remove; it will be tested against existing alerts using isEqual: so must be identical - * @param listObject The object (or nil, for global) from which to remove victimAlert - */ -- (void)removeAlert:(NSDictionary *)victimAlert fromListObject:(AIListObject *)listObject; - -/*! - * @brief Remove all current global alerts and replace them with the alerts in allGlobalAlerts - * - * Used for setting a preset of events - */ -- (void)setAllGlobalAlerts:(NSArray *)allGlobalAlerts; - -/*! - * @brief Remove all global (root-level) alerts with a given action ID - */ -- (void)removeAllGlobalAlertsWithActionID:(NSString *)actionID; - -/*! - * @brief Move all contact alerts from oldObject to newObject - * - * This is useful when adding oldObject to the metaContact newObject so that any existing contact alerts for oldObject - * are applied at the contact-general level, displayed and handled properly for the new, combined contact. - * - * @param oldObject The object from which to move contact alerts - * @param newObject The object to which to we want to add the moved contact alerts - */ -- (void)mergeAndMoveContactAlertsFromListObject:(AIListObject *)oldObject intoListObject:(AIListObject *)newObject; -@end - -/*! - * @protocol AIEventHandler - * @brief Protocol for a class which posts and supplies information about an Event - * - * Example Events are Account Connected, Contact Signed On, New Message Received - */ -@protocol AIEventHandler -/*! - * @brief Short description - * @result A short localized description of the passed event - */ -- (NSString *)shortDescriptionForEventID:(NSString *)eventID; - -/*! - * @brief Global short description for an event - * @result A short localized description of the passed event in the case that it is not associated with an object - */ -- (NSString *)globalShortDescriptionForEventID:(NSString *)eventID; - -/*! - * @brief English, non-translated global short description for an event - * - * This exists because old X(tras) relied upon matching the description of event IDs, and I don't feel like making - * a converter for old packs. If anyone wants to fix this situation, please feel free :) - * - * @result English global short description which should only be used internally - */ -- (NSString *)englishGlobalShortDescriptionForEventID:(NSString *)eventID; - -/*! - * @brief Long description for an event - * @result A localized description of an event, for listObject if passed, which is more verbose than the short description. - */ -- (NSString *)longDescriptionForEventID:(NSString *)eventID forListObject:(AIListObject *)listObject; - -/*! - * @brief Natural language description for an event - * - * @param eventID The event identifier - * @param listObject The listObject triggering the event - * @param userInfo Event-specific userInfo - * @param includeSubject If YES, return a full sentence. If not, return a fragment. - * @result The natural language description. - */ -- (NSString *)naturalLanguageDescriptionForEventID:(NSString *)eventID - listObject:(AIListObject *)listObject - userInfo:(id)userInfo - includeSubject:(BOOL)includeSubject; - -/*! - * @brief Return an image icon for the specified eventID. - */ -- (NSImage *)imageForEventID:(NSString *)eventID; - -/*! - * @brief The description for multiple combined events. - * - * @param eventID The event - * @param listObject The object for which the event references - * @param chat The chat for which the event references - * @param count The count of combined events - * - * @return The description of the event - * - */ -- (NSString *)descriptionForCombinedEventID:(NSString *)eventID - forListObject:(AIListObject *)listObject - forChat:(AIChat *)chat - withCount:(NSUInteger)count; - -@end - -/*! - * @protocol AIActionHandler - * @brief Protocol for an Action which can be taken in response to an Event - * - * An action may optionally supply a details pane. If it does, it can store information in a details dictionary - * which will be passed back to the action when it is triggered as well as when it is queried for a long description. - * - * Example Actions are Play Sound, Speak Event, Display Growl Notification - */ -@protocol AIActionHandler -/*! - * @brief Short description - * @result A short localized description of the action - */ -- (NSString *)shortDescriptionForActionID:(NSString *)actionID; - -/*! - * @brief Long description - * @result A longer localized description of the action which should take into account the details dictionary as appropraite. - */ -- (NSString *)longDescriptionForActionID:(NSString *)actionID withDetails:(NSDictionary *)details; - -/*! - * @brief Image - */ -- (NSImage *)imageForActionID:(NSString *)actionID; - -/*! - * @brief Details pane - * @result An AIActionDetailsPane to use for configuring this action, or nil if no configuration is possible. - */ -- (AIActionDetailsPane *)detailsPaneForActionID:(NSString *)actionID; - -/*! - * @brief Perform an action - * - * @param actionID The ID of the action to perform - * @param listObject The listObject associated with the event triggering the action. It may be nil - * @param details If set by the details pane when the action was created, the details dictionary for this particular action - * @param eventID The eventID which triggered this action - * @param userInfo Additional information associated with the event; userInfo's type will vary with the actionID. - * - * @result YES if the action was performed successfully. If NO, other actions of the same type will be attempted even if allowMultipleActionsWithID: returns NO for eventID. - */ -- (BOOL)performActionID:(NSString *)actionID forListObject:(AIListObject *)listObject withDetails:(NSDictionary *)details triggeringEventID:(NSString *)eventID userInfo:(id)userInfo; - -/*! - * @brief Allow multiple actions? - * - * If this method returns YES, every one of this action associated with the triggering event will be executed. - * If this method returns NO, only the first will be. - * - * Example of relevance: An action which plays a sound may return NO so that if the user has sound actions associated - * with the "Message Received (Initial)" and "Message Received" events will hear the "Message Received (Initial)" - * sound [which is triggered first] and not the "Message Received" sound when an initial message is received. If this - * method returned YES, both sounds would be played. - */ -- (BOOL)allowMultipleActionsWithID:(NSString *)actionID; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactControllerProtocol.h deleted file mode 100644 index 6586bbc..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactControllerProtocol.h +++ /dev/null @@ -1,152 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIListObject, AIListContact, AIChat; -@protocol AIContainingObject; - -/* Posted for a single object whose attributes changed. - * Must be used for observing only! Only the contact controller should post this notification. */ -#define ListObject_AttributesChanged @"ListObject_AttributesChanged" - -/* Called when one or more ListObject_AttributesChanged notifications are done and all delays have cleared. - * We're ready to update the display at this point. - * Must be used for observing only! Only the contact controller should post this notification. */ -#define ListObject_AttributeChangesComplete @"ListObject_AttributeChangesComplete" - -#define ListObject_StatusChanged @"ListObject_StatusChanged" -#define Contact_OrderChanged @"Contact_OrderChanged" -#define Contact_ListChanged @"Contact_ListChanged" -#define Contact_SortSelectorListChanged @"Contact_SortSelectorListChanged" - -#define Contact_ApplyDisplayName @"Contact_ApplyDisplayName" -#define Contact_AddNewContact @"Contact_AddNewContact" - -//A unique group name for our root group -#define ADIUM_ROOT_GROUP_NAME @"ROOTJKSHFOEIZNGIOEOP" - -//Preference groups and keys used for contacts throughout Adium -#define PREF_GROUP_ALIASES @"Aliases" //Preference group in which to store aliases -#define PREF_GROUP_USERICONS @"User Icons" -#define KEY_USER_ICON @"User Icon" -#define PREF_GROUP_NOTES @"Notes" //Preference group to store notes in -#define PREF_GROUP_ADDRESSBOOK @"Address Book" -#define PREF_GROUP_ALWAYS_VISIBLE @"Always Visible" - -#define KEY_EXPANDED @"IsExpanded" - -#define KEY_HIDE_CONTACTS @"Hide Contacts" -#define KEY_SHOW_OFFLINE_CONTACTS @"Show Offline Contacts" -#define KEY_SHOW_BLOCKED_CONTACTS @"Show Blocked Contacts" -#define KEY_SHOW_IDLE_CONTACTS @"Show Idle Contacts" -#define KEY_SHOW_MOBILE_CONTACTS @"Show Mobile Contacts" -#define KEY_SHOW_AWAY_CONTACTS @"Show Away Contacts" -#define KEY_HIDE_ACCOUNT_CONTACTS @"Hide Account Contacts" - -#define KEY_USE_OFFLINE_GROUP @"Use Offline Group" -#define KEY_HIDE_CONTACT_LIST_GROUPS @"Hide Contact List Groups" -#define PREF_GROUP_CONTACT_LIST_DISPLAY @"Contact List Display" -#define PREF_GROUP_CONTACT_LIST @"Contact List" - -#define PREF_GROUP_OBJECT_STATUS_CACHE @"Object Status Cache" - -typedef enum { - AIUserInfoLabelValuePair = 0 /* default */, - AIUserInfoSectionHeader, - AIUserInfoSectionBreak -} AIUserInfoEntryType; - -typedef enum { - AIInfo_Profile = 1, - AIInfo_Accounts, - AIInfo_Alerts, - AIInfo_Settings -} AIContactInfoCategory; - -typedef enum { - AISortGroup = 0, - AISortGroupAndSubGroups, - AISortGroupAndSuperGroups -} AISortMode; - -@protocol AIListObjectObserver; -@class AIListGroup, AIContactList, AIListObject, AIListContact, AIMetaContact, AIService, AIAccount, AISortController, AIListBookmark, AIContactHidingController; - -@protocol AIContactController -//Contact list access -@property (readonly, nonatomic) AIContactList *contactList; -- (AIListContact *)contactWithService:(AIService *)inService account:(AIAccount *)inAccount UID:(NSString *)inUID; -- (void)setUID:(NSString *)UID forContact:(AIListContact *)contact; -- (AIListObject *)existingListObjectWithUniqueID:(NSString *)uniqueID; -- (AIListContact *)existingContactWithService:(AIService *)inService account:(AIAccount *)inAccount UID:(NSString *)inUID; -- (AIListGroup *)groupWithUID:(NSString *)groupUID; -@property (readonly, nonatomic) NSArray *allGroups; -/*! - * @brief Returns a flat array of all contacts - */ -@property (readonly, nonatomic) NSArray *allContacts; -- (NSArray *)allContactsInObject:(id)inGroup onAccount:(AIAccount *)inAccount; -@property (readonly, nonatomic) NSArray *allBookmarks; -@property (readonly, nonatomic) NSArray *allMetaContacts; -- (NSMenu *)groupMenuWithTarget:(id)target; -- (NSSet *)allContactsWithService:(AIService *)service UID:(NSString *)inUID; -@property (readonly, nonatomic) AIListGroup *offlineGroup; -@property (readonly, nonatomic) BOOL useOfflineGroup; - -- (AIListBookmark *)existingBookmarkForChat:(AIChat *)inChat; -- (AIListBookmark *)existingBookmarkForChatName:(NSString *)inName - onAccount:(AIAccount *)inAccount - chatCreationInfo:(NSDictionary *)inCreationInfo; -- (AIListBookmark *)bookmarkForChat:(AIChat *)inChat inGroup:(AIListGroup *)group; -- (void)removeBookmark:(AIListBookmark *)listBookmark; - -- (AIMetaContact *)knownMetaContactForGroupingUIDs:(NSArray *)UIDsArray forServices:(NSArray *)servicesArray; -- (AIMetaContact *)groupUIDs:(NSArray *)UIDsArray forServices:(NSArray *)servicesArray usingMetaContactHint:(AIMetaContact *)metaContactHint; -- (AIMetaContact *)metaContactWithObjectID:(NSNumber *)inObjectID; - -- (AIMetaContact *)groupContacts:(NSArray *)contactsToGroupArray; -- (void)clearAllMetaContactData; - -//Contact list sorting -- (void)sortContactList; -- (void)sortListObject:(AIListObject *)inObject; - -//Preferred contacts -- (AIListContact *)preferredContactForContentType:(NSString *)inType forListContact:(AIListContact *)inContact; -- (AIListContact *)preferredContactWithUID:(NSString *)UID andServiceID:(NSString *)serviceID forSendingContentType:(NSString *)inType; - -//Editing -- (void)explodeMetaContact:(AIMetaContact *)metaContact; //Unpack contained contacts and then remove the meta -- (void)removeListGroup:(AIListGroup *)listGroup; -- (void)requestAddContactWithUID:(NSString *)contactUID service:(AIService *)inService account:(AIAccount *)inAccount; -- (void)moveGroup:(AIListGroup *)group fromContactList:(AIContactList *)oldContactList toContactList:(AIContactList *)contactList; -- (void)moveContact:(AIListObject *)listContact fromGroups:(NSSet *)oldGroups intoGroups:(NSSet *)groups; -- (void)_moveContactLocally:(AIListContact *)listContact fromGroups:(NSSet *)oldGroups toGroups:(NSSet *)groups; -@property (readonly, nonatomic) BOOL useContactListGroups; - -//For Accounts -- (void)accountDidStopTrackingContact:(AIListContact *)listContact; - -//Contact List -- (AIContactList *)createDetachedContactList; -- (void)removeDetachedContactList:(AIContactList *)detachedList; - -@end - -//Empty protocol to allow easy checking for if a particular object is a contact list outline view -@protocol ContactListOutlineView -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactHidingController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactHidingController.h deleted file mode 100644 index 45df3db..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactHidingController.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ -#import -#define CONTACT_VISIBILITY_OPTIONS_CHANGED_NOTIFICATION @"AIContactVisibilityOptionsDidChangeNotification" - -@class AIListContact; -@protocol AIContainingObject; -@interface AIContactHidingController : NSObject { -@private - NSString *searchString; - NSMutableDictionary *matchedContacts; - NSPredicate *filterPredicate; - NSPredicate *filterPredicateTemplate; - - NSArray *hideAccounts; - - BOOL hideOfflineIdleOrMobileContacts; - - BOOL showOfflineContacts; - BOOL showIdleContacts; - BOOL showMobileContacts; - BOOL showBlockedContacts; - BOOL showAwayContacts; - BOOL useOfflineGroup; - - BOOL useContactListGroups; -} - -+ (AIContactHidingController *)sharedController; - -@property (readonly, nonatomic) NSString *contactFilteringSearchString; -- (BOOL)filterContacts:(NSString *)inSearchString; -- (BOOL)visibilityOfListObject:(AIListObject *)listObject inContainer:(id)container; -- (NSPredicate*) createPredicateWithSearchString: (NSString *) inSearchString; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactInfoPane.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactInfoPane.h deleted file mode 100644 index 1bca8cf..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactInfoPane.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@interface AIContactInfoPane : AIModularPane { - -} - -+ (AIContactInfoPane *)contactInfoPane; -- (void)configureForListObject:(AIListObject *)inListObject; -- (AIContactInfoCategory)contactInfoCategory; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactList.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactList.h deleted file mode 100644 index 7ab420f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactList.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIContactList : AIListGroup -{ - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactMenu.h deleted file mode 100644 index 206a881..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactMenu.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIAccount, AIListContact, AIListObject; - -@protocol AIContactMenuDelegate; - -@interface AIContactMenu : AIAbstractListObjectMenu { - AIListObject *containingObject; - - id delegate; - BOOL delegateRespondsToDidSelectContact; - BOOL delegateRespondsToShouldIncludeContact; - BOOL delegateRespondsToValidateContact; - BOOL shouldUseDisplayName; - BOOL shouldDisplayGroupHeaders; - BOOL shouldUseUserIcon; - BOOL shouldSetTooltip; - BOOL shouldIncludeContactListMenuItem; - BOOL populateMenuLazily; -} - -+ (id)contactMenuWithDelegate:(id)inDelegate forContactsInObject:(AIListObject *)inContainingObject; -- (void)setContainingObject:(AIListObject *)inContainingObject; - -@property (readwrite, nonatomic, unsafe_unretained) id delegate; - -@end - -@protocol AIContactMenuDelegate -- (void)contactMenuDidRebuild:(AIContactMenu *)inContactMenu; -@optional -- (void)contactMenu:(AIContactMenu *)inContactMenu didSelectContact:(AIListContact *)inContact; -- (AIListContact *)contactMenu:(AIContactMenu *)inContactMenu validateContact:(AIListContact *)inContact; -- (BOOL)contactMenu:(AIContactMenu *)inContactMenu shouldIncludeContact:(AIListContact *)inContact; -- (BOOL)contactMenuShouldUseUserIcon:(AIContactMenu *)inContactMenu; -- (BOOL)contactMenuShouldSetTooltip:(AIContactMenu *)inContactMenu; -- (BOOL)contactMenuShouldIncludeContactListMenuItem:(AIContactMenu *)inContactMenu; -- (BOOL)contactMenuShouldPopulateMenuLazily:(AIContactMenu *)inContactMenu; - -// Called on each rebuild: -- (BOOL)contactMenuShouldDisplayGroupHeaders:(AIContactMenu *)inContactMenu; //only applies to contained groups -- (BOOL)contactMenuShouldUseDisplayName:(AIContactMenu *)inContactMenu; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactObserverManager.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContactObserverManager.h deleted file mode 100644 index 43dde6c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContactObserverManager.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AIListObject, AIListContact; - -//Observer which receives notifications of changes in list object status -@protocol AIListObjectObserver -- (NSSet *)updateListObject:(AIListObject *)inObject keys:(NSSet *)inModifiedKeys silent:(BOOL)silent; -@end - -@interface AIContactObserverManager : NSObject { - //Status and Attribute updates - NSMutableSet *contactObservers; - NSMutableSet *removedContactObservers; - NSTimer *delayedUpdateTimer; - NSInteger quietDelayedUpdatePeriodsRemaining; - - - NSInteger delayedStatusChanges; - NSMutableSet *delayedModifiedStatusKeys; - NSInteger delayedAttributeChanges; - NSMutableSet *delayedModifiedAttributeKeys; - - BOOL updatesAreDelayedUntilInactivity; - NSMutableSet *changedObjects; - - BOOL informingObservers; - NSInteger delayedContactChanges; - NSInteger delayedUpdateRequests; -} - -+ (AIContactObserverManager *)sharedManager; -- (void)registerListObjectObserver:(id )inObserver; -- (void)unregisterListObjectObserver:(id)inObserver; -- (void)updateAllListObjectsForObserver:(id )inObserver; -- (void)updateContacts:(NSSet *)contacts forObserver:(id )inObserver; -- (void)delayListObjectNotifications; -- (void)endListObjectNotificationsDelay; -- (void)endListObjectNotificationsDelaysImmediately; -- (void)delayListObjectNotificationsUntilInactivity; -- (BOOL)shouldDelayUpdates; -- (void)listObjectStatusChanged:(AIListObject *)inObject modifiedStatusKeys:(NSSet *)inModifiedKeys silent:(BOOL)silent; -- (void)listObjectAttributesChanged:(AIListObject *)inObject modifiedKeys:(NSSet *)inModifiedKeys; -- (void)updateListContactStatus:(AIListContact *)inContact; - -- (void)_updateAllAttributesOfObject:(AIListObject *)inObject; - -- (void)noteContactChanged:(AIListObject *)inObject; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentContext.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentContext.h deleted file mode 100644 index c609c8e..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentContext.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_CONTEXT_TYPE @"Context" //Type ID for this content - -@interface AIContentContext : AIContentMessage { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentControllerProtocol.h deleted file mode 100644 index 262d98d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentControllerProtocol.h +++ /dev/null @@ -1,263 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define Content_ContentObjectAdded @"Content_ContentObjectAdded" -#define Content_ChatDidFinishAddingUntrackedContent @"Content_ChatDidFinishAddingUntrackedContent" -#define Content_WillSendContent @"Content_WillSendContent" -#define Content_WillReceiveContent @"Content_WillReceiveContent" - -//XXX - This is really UI, but it can live here for now -#define PREF_GROUP_FORMATTING @"Formatting" -#define KEY_FORMATTING_FONT @"Default Font" -#define KEY_FORMATTING_TEXT_COLOR @"Default Text Color" -#define KEY_FORMATTING_BACKGROUND_COLOR @"Default Background Color" - -// Used to hide from events' descriptions parts of messages -#define AIHiddenMessagePartAttributeName @"AIHiddenMessagePart" - -//Not displayed, but used for internal identification of the encryption menu -#define ENCRYPTION_MENU_TITLE @"Encryption Menu" - -typedef enum { - AIFilterContent = 0, // Changes actual message and non-message content - AIFilterDisplay, // Changes only how non-message content is displayed locally (Profiles, aways, auto-replies, ...) - AIFilterMessageDisplay, // Changes only how messages are displayed locally - AIFilterTooltips, // Changes only information displayed in contact tooltips - AIFilterContactList, // Changes only information in statuses displayed in the contact list - /* A special content mode for AIM auto-replies that will only apply to bounced away messages. This allows us to - * filter %n,%t,... just like the official client. A small tumor in our otherwise beautiful filter system *cry* - */ - AIFilterAutoReplyContent - -} AIFilterType; -#define FILTER_TYPE_COUNT 6 - -typedef enum { - AIFilterIncoming = 0, // Content we are receiving - AIFilterOutgoing // Content we are sending -} AIFilterDirection; -#define FILTER_DIRECTION_COUNT 2 - -#define HIGHEST_FILTER_PRIORITY 0 -#define HIGH_FILTER_PRIORITY 0.25f -#define DEFAULT_FILTER_PRIORITY 0.5f -#define LOW_FILTER_PRIORITY 0.75f -#define LOWEST_FILTER_PRIORITY 1.0f - -@protocol AIContentFilter, AIDelayedContentFilter, AIHTMLContentFilter; -@protocol AdiumMessageEncryptor; - -@class AIAccount, AIChat, AIListContact, AIListObject, AIContentObject; -@class AIContentMessage; - -@protocol AIContentController -//Typing -- (void)userIsTypingContentForChat:(AIChat *)chat hasEnteredText:(BOOL)hasEnteredText; - - //Formatting -- (NSDictionary *)defaultFormattingAttributes; - - //Content Filtering -- (void)registerContentFilter:(id )inFilter - ofType:(AIFilterType)type - direction:(AIFilterDirection)direction; -- (void)registerDelayedContentFilter:(id )inFilter - ofType:(AIFilterType)type - direction:(AIFilterDirection)direction; -- (void)registerHTMLContentFilter:(id )inFilter - direction:(AIFilterDirection)direction; -- (void)unregisterContentFilter:(id )inFilter; -- (void)unregisterDelayedContentFilter:(id )inFilter; -- (void)unregisterHTMLContentFilter:(id )inFilter; -- (void)registerFilterStringWhichRequiresPolling:(NSString *)inPollString; -- (BOOL)shouldPollToUpdateString:(NSString *)inString; - -- (NSAttributedString *)filterAttributedString:(NSAttributedString *)attributedString - usingFilterType:(AIFilterType)type - direction:(AIFilterDirection)direction - context:(id)context; -- (void)filterAttributedString:(NSAttributedString *)attributedString - usingFilterType:(AIFilterType)type - direction:(AIFilterDirection)direction - filterContext:(id)filterContext - notifyingTarget:(id)target - selector:(SEL)selector - context:(id)context; -- (void)delayedFilterDidFinish:(NSAttributedString *)attributedString uniqueID:(unsigned long long)uniqueID; -- (NSString *)filterHTMLString:(NSString *)htmlString - direction:(AIFilterDirection)direction - content:(AIContentObject*)content; - - //Sending / Receiving content -- (void)receiveContentObject:(AIContentObject *)inObject; -- (BOOL)sendContentObject:(AIContentObject *)inObject; -- (void)sendRawMessage:(NSString *)inString toContact:(AIListContact *)inContact; -/*! - * @brief Display content, optionally using content filters - * - * This should only be used for content which is not being sent or received but only displayed, such as message history. If you - * - * The ability to force filtering to be completed immediately exists for message history, which needs to put its display - * in before the first message; otherwise, the use of delayed filtering would mean that message history showed up after the first message. - * - * @param inObject The object to display - * @param useContentFilters Should filters be used? - * @param immediately If YES, only immediate filters will be used, and inObject will have its message set before we return. - * If NO, immediate and delayed filters will be used, and inObject will be filtered over the course of some number of future run loops. - */ -- (void)displayContentObject:(AIContentObject *)inObject usingContentFilters:(BOOL)useContentFilters immediately:(BOOL)immediately; -- (void)displayEvent:(NSString *)message ofType:(NSString *)type inChat:(AIChat *)inChat; - - //Encryption -- (NSAttributedString *)decodedIncomingMessage:(NSString *)inString - fromContact:(AIListContact *)inListContact - onAccount:(AIAccount *)inAccount - tryDecrypt:(BOOL)decrypt; -- (NSString *)decryptedIncomingMessage:(NSString *)inString - fromContact:(AIListContact *)inListContact - onAccount:(AIAccount *)inAccount; - -- (NSMenu *)encryptionMenuNotifyingTarget:(id)target withDefault:(BOOL)withDefault; - -- (BOOL)chatIsReceivingContent:(AIChat *)chat; - - //OTR -- (void)setEncryptor:(id)inEncryptor; -- (void)requestSecureOTRMessaging:(BOOL)inSecureMessaging inChat:(AIChat *)inChat; -- (void)promptToVerifyEncryptionIdentityInChat:(AIChat *)inChat; -- (void)questionVerifyEncryptionIdentityInChat:(AIChat *)inChat; -- (void)sharedVerifyEncryptionIdentityInChat:(AIChat *)inChat; -@end - - -/*! - * @protocol AIContentFilter - * @brief Protocol to be implemented by regular content filter objects - * - * See registerContentFilter:ofType:direction: for registration - */ -@protocol AIContentFilter -/*! - * @brief Filter an attributed string - * - * Given an attributed string, the filtering object makes any desired changes and returns the resulting string. - * If no changes are made, the original attributed string should be returned. - * If after handling the attributed string it should be discarded rather than used (e.g. processing a message's - * attributed string led to an action, and the message itself should no longer be sent), return nil. - * - * @param inAttributedString NSAttributedString to filter - * @param context An object, such as an AIListContact or an AIAccount, potentially relevant to filtration. May be anything, so check its class as needed. - * @result The filtered attributed string, which may be the same as attributedString, or nil if the attributed string should be discared. - */ -- (NSAttributedString *)filterAttributedString:(NSAttributedString *)inAttributedString context:(id)context; - -/*! - * @brief The priority for this filter - * - * This is a float between 0.0 and 1.0. Lower numbers indicate a higher priority. - * Filter priority determines the order in which filters are executed on a given string. - * DEFAULT_FILTER_PRIORITY should be used unless you have a reason to care that your filter happen earlier or later. - * - * @result A float between 0.0 and 1.0, with (HIGHEST_FILTER_PRIORITY == 0.0) and (LOWEST_FILTER_PRIORITY == 1.0) - */ -- (CGFloat)filterPriority; -@end - -/*! - * @protocol AIHTMLContentFilter - * @brief Protocol to be implemented by HTML content filter objects - * - * See registerHTMLContentFilter:direction: for registration - * AIHTMLContentFilters only see strings just as the WKMV is about to display them. This allows outputting custom html for display - */ -@protocol AIHTMLContentFilter -/*! - * @brief Filter an HTML string - * - * Given an HTML string, the filtering object makes any desired changes and returns the resulting string. - * If no changes are made, the original HTML string should be returned. - * This filtration occurs immediately before the HTML is displayed to the user in the WebKit Message View - * - * @param inHTMLString HTML to filter - * @param content The AIContentObject associated with this HTML, allowing access to the source and destination for the message - * @result The filtered HTML string, which may be the same as inHTMLString - */ -- (NSString *)filterHTMLString:(NSString *)inHTMLString content:(AIContentObject*)content; - -/*! - * @brief The priority for this filter - * - * This is a float between 0.0 and 1.0. Lower numbers indicate a higher priority. - * Filter priority determines the order in which filters are executed on a given string. - * DEFAULT_FILTER_PRIORITY should be used unless you have a reason to care that your filter happen earlier or later. - * - * @result A float between 0.0 and 1.0, with (HIGHEST_FILTER_PRIORITY == 0.0) and (LOWEST_FILTER_PRIORITY == 1.0) - */ -- (CGFloat)filterPriority; -@end - -/*! - * @protocol AIDelayedContentFilter - * @brief Protocol to be implemented by delayed content filter objects - * - * A delayed content filter is able to begin working on filtering an attributed string and then - * return its results an unspecified amount of time later. This allows nonblocking filtration. - * - * This should only be used if the expected time for execution is nontrivial. Use AIContentFilter if - * the filtration occurs quickly. - * - * See registerDelayedContentFilter:ofType:direction: for registration - */ -@protocol AIDelayedContentFilter -/*! - * @brief Filter an attributed string over an unspecified period of time - * - * Given an attributed string, the filtering object may begin working on the result of its filter - * - * [adium.contentController delayedFilterDidFinish:uniqueID:] should be called with the eventual result if this method returns YES. - * If the filter eventually fails, this method MUST be called with the original inAttributedString. - * - * @param inAttributedString NSAttributedString to filter - * @param context An object, such as an AIListContact or an AIAccount, potentially relevant to filtration. May be anything, so check its class as needed. - * @param uniqueID A uniqueID which will be passed back to [adium.contentController delayedFilterDidFinish:uniqueID:] when this filtration is complete. - * - * @result YES if a delayed filtration process began; NO if no changes are to be made. - */ -- (BOOL)delayedFilterAttributedString:(NSAttributedString *)inAttributedString context:(id)context uniqueID:(unsigned long long)uniqueID; - -/*! - * @brief The priority for this filter - * - * This is a float between 0.0 and 1.0. Lower numbers indicate a higher priority. - * Filter priority determines the order in which filters are executed on a given string. - * DEFAULT_FILTER_PRIORITY should be used unless you have a reason to care that your filter happen earlier or later. - * - * @result A float between 0.0 and 1.0, with (HIGHEST_FILTER_PRIORITY == 0.0) and (LOWEST_FILTER_PRIORITY == 1.0) - */ -- (CGFloat)filterPriority; -@end - -@protocol AdiumMessageEncryptor -- (void)willSendContentMessage:(AIContentMessage *)inContentMessage; -- (NSString *)decryptIncomingMessage:(NSString *)inString fromContact:(AIListContact *)inListContact onAccount:(AIAccount *)inAccount; - -- (void)requestSecureOTRMessaging:(BOOL)inSecureMessaging inChat:(AIChat *)inChat; -- (void)promptToVerifyEncryptionIdentityInChat:(AIChat *)inChat; -- (void)questionVerifyEncryptionIdentityInChat:(AIChat *)inChat; -- (void)sharedVerifyEncryptionIdentityInChat:(AIChat *)inChat; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentEvent.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentEvent.h deleted file mode 100644 index 10f0030..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentEvent.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_EVENT_TYPE @"Event" //Type ID for this content - -@interface AIContentEvent : AIContentStatus { - -} - -@property (weak, readonly, nonatomic) NSString *eventType; - -+ (id)eventInChat:(AIChat *)inChat - withSource:(id)inSource - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - withType:(NSString *)inStatus; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentMessage.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentMessage.h deleted file mode 100644 index 8605ffa..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentMessage.h +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_MESSAGE_TYPE @"Message" //Type ID for this content - -@class AIChat; - -/*! @class AIContentMessage - * @brief A message in a chat. Subclass of AIContentObject. - * - * @par A content message is a type of content object that represents a message sent by one user to another user (except in the case of an autoreply, which is sent by the user's client). - * - * @par The content of the message is handled as an attributed string. This allows AIContentMessages to be used with all services, regardless of the format they use for text (HTML, XHTML, Markdown, etc.). - * - * @par A content message can be an autoreply. This happens when the message was sent automatically (or will be) in response to the sender receiving a previous message while away. Not all services support autoreplies; on those that don't, the AIContentMessage for an incoming autoreply will not have its \c autoreply flag set. - * - * @par AIContentMessage is a concrete subclass of AIContentObject. All methods and properties of AIContentObject also work with AIContentMessage. - */ - -@interface AIContentMessage : AIContentObject { - BOOL isAutoreply; - NSString *encodedMessage; - id encodedMessageAccountData; -} - -/*! @brief Create and autorelease an AIContentMessage. - * @return An autoreleased AIContentMessage. - */ -+ (id)messageInChat:(AIChat *)inChat - withSource:(id)inSource - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - autoreply:(BOOL)inAutoReply; - -+ (id)messageInChat:(AIChat *)inChat - withSource:(id)inSource - sourceNick:(NSString *)inSourceNick - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - autoreply:(BOOL)inAutoreply; - -/*! @brief Create an AIContentMessage. - * - * @par See AIContentObject's initWithChat:source:destination:date:message: method for more information. - * - * @return An AIContentMessage. - */ -- (id)initWithChat:(AIChat *)inChat - source:(id)inSource - sourceNick:(NSString *)inSourceNick - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - autoreply:(BOOL)inAutoreply; - -/*! - * @brief Whether this message is an autoreply. - */ -@property (readwrite, nonatomic) BOOL isAutoreply; - -/*! @brief The encoded string for the contents of this content message. - * - * @par This is the string containing the same message that the content message was initialized with (which is unchangeable), in a format suitable for use by the service (e.g., to be transmitted over the wire or having been received over the wire). - * - * @par Usually, the encoded string is obtained from the account by the content controller. In addition, it may be passed through one or more secondary encoders, such as an encrypter. Traditionally, the new string is set as the content message's encoded message using this method after every step. - * - * @return A string containing the message encoded to some sort of marked-up (or plain) source code, such as HTML source code. - */ -@property (readwrite, nonatomic) NSString *encodedMessage; - -/*! @brief The object associated with this method for an account's benefit. - * - * @par This property is intended for use by accounts that need to associate some private data with a message. It is not used by anything else. - * - * @return The object associated with this message. - */ -@property (readwrite, nonatomic) id encodedMessageAccountData; - -/*! - * @brief The prefix string for the sender of this message. - * - * @return A textual representation of the highest level of flags the sender has in a chat. - * - * This is returned based on the user's flags in a group chat. For a normal chat, this is an empty string. - */ -@property (weak, readonly, nonatomic) NSString *senderPrefix; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentNotification.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentNotification.h deleted file mode 100644 index 8fbbe48..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentNotification.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_NOTIFICATION_TYPE @"Notification" //Type ID for this content - -typedef enum { - AIDefaultNotificationType = 0 -} AINotificationType; - -@interface AIContentNotification : AIContentEvent { - AINotificationType notificationType; -} - -/*! @brief Create and autorelease an AIContentNotification. - * @return An autoreleased AIContentNotification. - */ -+ (id)notificationInChat:(AIChat *)inChat - withSource:(id)inSource - destination:(id)inDest - date:(NSDate *)inDate - notificationType:(AINotificationType)inNotificationType; - -@property (readonly, nonatomic) AINotificationType notificationType; -@property (weak, readonly, nonatomic) NSString *eventType; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentObject.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentObject.h deleted file mode 100644 index 937ff9a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentObject.h +++ /dev/null @@ -1,267 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIChat, AIListObject; - -/*! @class AIContentObject - * @brief A complete unit of content. Abstract class. - * - * @par “Content” is a vague word, but this is an abstract class, so vagueness is to be expected. A content object is anything that travels from a source to a destination, relevant to a chat, that may or may not be outgoing, carrying a datestamp and a message. - * - * @par The most common kind of content object is a content message, which is what people use to communicate over chats (except on MSN, where some people use their status messages). - * - * @par A content object may be incoming or outgoing. AIContentObject's basic rule for determining the direction of the content is to examine the content's source: If the source is an account, then the content is outgoing; if the source is a contact, then the content is incoming. The direction of a content object determines which events are triggered by the content (if that isn't disabled for the content object), and can affect how the content is displayed in the message view. - * - * @par Not all content objects have a message. In particular, a typing notification (\c AIContentTyping) does not have a message. - * - * @par In addition, AIContentObject includes a number of methods and properties that exist for the convenience of other parts of Adium. These include: - * @li isSimilarToContent: (used by message view to determine whether styles may want to group two content objects together) - * @li isFromSameDayAsContent: (used by message view to determine whether to insert a date separator) - * @li displayClasses (used by message view) - */ - -@interface AIContentObject : NSObject { - AIChat *__weak chat; - AIListObject *source; - AIListObject *destination; - NSString *sourceNick; - BOOL outgoing; - - NSAttributedString *message; - NSDate *date; - - BOOL filterContent; - BOOL trackContent; - BOOL displayContent; - BOOL displayContentImmediately; - BOOL sendContent; - BOOL postProcessContent; - - NSDictionary *userInfo; - - NSMutableArray *customDisplayClasses; -} - -/*! @brief Create a content object without a message. - * - * @par If your subclass represents a type of content that wouldn't have a message associated with it (such as a typing notification), then this is the message you should send to \c super. - * - * @param inChat The chat with which this content is associated. The content may be presented in the message view and/or effect a change in the status icon for the tab (as well as the contact's row in the contact list). - * @param inSource The account or contact from which the content originated. If it's an account, then this is outgoing content. - * @param inDest The contact to which the content is addressed. - * @param inDate The date and time at which the content was received or sent. - * @return A shiny new content object. - */ -- (id)initWithChat:(AIChat *)inChat - source:(AIListObject *)inSource - destination:(AIListObject *)inDest - date:(NSDate*)inDate; -/*! @brief Create a content object with a message. - * - * @par Most content objects have a styled-text or plain-text message as their content. If your subclass represents a type of content that may have a message associated with it (such as a chat message), then this is the message you should send to \c super. - * - * @param inChat The chat with which this content is associated. The content may be presented in the message view and/or effect a change in the status icon for the tab (as well as the contact's row in the contact list). - * @param inSource The account or contact from which the content originated. If it's an account, then this is outgoing content. - * @param inDest The contact to which the content is addressed. - * @param inDate The date and time at which the content was received or sent. - * @param inMessage The message that is this object's content. May be \c nil; in that case, this is the same as the init method that doesn't have a message: parameter. - * @return A shiny new content object. - */ -- (id)initWithChat:(AIChat *)inChat - source:(AIListObject *)inSource - destination:(AIListObject *)inDest - date:(NSDate*)inDate - message:(NSAttributedString *)inMessage; - -- (id)initWithChat:(AIChat *)inChat - source:(AIListObject *)inSource - sourceNick:(NSString *)inSourceNick - destination:(AIListObject *)inDest - date:(NSDate*)inDate - message:(NSAttributedString *)inMessage; - -/*! @brief The type of content. - * - * @par There is at least one type defined for every concrete subclass of \c AIContentObject. - * - * @par Subclassing note: You must override the getter and return a string (not \c nil). This string should probably be constant, so that types can be compared using the == operator rather than string comparison. - * - * @return A string representing the type of content that this object bears. - */ -@property (weak, nonatomic, readonly) NSString *type; - -#pragma mark Comparing - -/*! @brief Compares the proximity of two content objects. - * - * @par The content objects are similar if they are of the same type, are from the same source, and have datestamps within five minutes of each other. - * - * @param inContent The content object to compare the receiver to. - * @return \c YES if the receiver is similar to \a inContent; \c NO if not. - */ -- (BOOL)isSimilarToContent:(AIContentObject *)inContent; -/*! @brief Reports whether two content objects were delivered on the same day. - * - * @par The content objects are on the same day if their datestamps have the same year, month, and date. The comparison is performed within the Common Era, i.e., the Gregorian calendar. - * - * @param inContent The content object to compare the receiver to. - * @return \c YES if the receiver is from the same day of the common era as \a inContent; \c NO if not. - */ -- (BOOL)isFromSameDayAsContent:(AIContentObject *)inContent; - -#pragma mark Content - -/*! @brief The list object (usually, account or contact) that originated the content. - * - * @par If the source is an account, then the content is outgoing (the user sent it). Otherwise, it's incoming (the user received it). - * - * @par Content objects' source should not be not be confused with their chat. See \c chat if that's what you're looking for. - * - * @par This is set by the init methods. - * - * @return The source of the content. - */ -@property (nonatomic, readonly) AIListObject *source; -/*! @brief The list object (usually, contact) that the content is addressed to. - * - * @par This is set by the init methods. - * - * @return The intended recipient of the content. - */ -@property (nonatomic, readonly) AIListObject *destination; - -/*! @brief The date and time at which the content was sent. - * - * @par This is set by the init methods. - * - * @return The datestamp of the content. - */ -@property (nonatomic, readonly) NSDate *date; - -/*! @brief Returns whether the content is outgoing (the user sent it), rather than incoming (the user received it). - * - * @par If the content's source is an account, then the content is outgoing (the user sent it). Otherwise, it's incoming (the user received it). - * - * @par Whether a content object is outgoing determines which events are triggered by the content (if that isn't disabled for the content object), and can affect how the content is displayed in the message view. - * - * @return \c YES if the content is outgoing; \c NO if it is incoming. - */ -@property (nonatomic, readonly) BOOL isOutgoing; - -/*! @brief The chat with which this content is associated. - * - * @par All content is associated with a chat, even if only incidentally. While the content may not be chat-oriented, all content may eventually end up displayed in a chat somewhere, either inline in the message view (status changes and file transfers) or in the tab or title bar (typing notification). - * - * @return The chat with which this content is associated. - */ -@property (nonatomic, readwrite, weak) AIChat *chat; - -/*! @brief Obtain the current message in the content. - * - * @return The current message. - */ -@property (nonatomic, strong) NSAttributedString *message; -@property (weak, readonly, nonatomic) NSString *messageString; -/*! @brief Get an array of CSS class names with which this content should be displayed. - * - * @par You should use these classes whenever inserting the content into an HTML or XHTML document, or anywhere else where CSS would be used with the content. - * - * @return An array of strings, each containing a class name. - */ -- (NSMutableArray *)displayClasses; - -/*! @brief Add a custom display class to this object - * - * @par This can be used to tag messages with custom metadata which display engines can use to style them accordingly - */ -- (void) addDisplayClass:(NSString *)className; - -/*! @brief Associate any object you want with this content object. - * - * @par \c AIContentObject does not use this object at all; it simply retains it. This property is entirely for your own use. This sort of property is also called a “reference constant”, especially by Carbon APIs. - * - * @par Beware of setting a mutable object as the user-info object, because the \c AIContentObject will not make a copy; it will only retain it. There's nothing wrong with putting a mutable object here; just make sure that you know you're doing that, that you document that you're willfully setting a mutable object here, and that nothing mutates the object contrarily to your expectations. - * - * @par It is safe to set this property to \c nil. - * - * @param inUserInfo The new user-info object. - */ -@property (nonatomic, strong) id userInfo; - -#pragma mark Behavior - -/*! @brief Return whether the content passes through content filters. - * - * @par Content filtering is performed by the content controller; see \c AIContentControllerProtocol. This property tells the content controller whether to apply its filters to the content object, or leave the content object unfiltered. - * - * @return \c YES if the content will be passed through content filters; \c NO if it will not be passed through filters. - */ -@property (nonatomic) BOOL filterContent; - -/*! @brief Return whether the content will cause notifications and events. - * - * @par If this is \c YES, the content controller will post notifications and generate events so that other objects can monitor the progress of receipt and sending of content. - * - * @par See the \c AIContentControllerProtocol documentation for more information on content controller events. - * - * @par XXX We should list reasons why you would want or not want a content object to be tracked. - * - * @return \c YES if the content controller should generate events and post notifications about this content object; \c NO if it should keep mum. - */ -@property (nonatomic) BOOL trackContent; - - -/*! @brief Return whether the content will be displayed to the user. - * - * @par Once a content object has completely passed through the content controller's receiving or sending procedure, including all filtering, the content controller then looks to this property to decide whether it should display the content. Some types of content, such as typing notification (\c AIContentTyping), are sent, but not displayed. - * - * @par This property also controls whether the content will be entered into its chat's transcript (if the logger knows how to transcribe this content). If it is not displayed, neither will it be logged. See also the \c postProcessContent property, which controls postprocessing (such as logging) independently of whether the content will be displayed. - * - * @return \c YES if the content controller will display this content; \c NO otherwise. - */ -@property (nonatomic) BOOL displayContent; - -/*! @brief Return whether the content will be displayed immediately, or enqueued. - * - * @par The message view keeps a queue of messages which it eventually displays all at once rather than one at a time. When this is \c NO, the content is held in this queue until a suitable moment to display all the queued messages. Such a moment generally does arrive very soon; it is unlikely that the content will be held even for a whole second. - * - * @par The queue is for the benefit of the message history: it would be distracting if the message view were to scroll as one message after another were introduced into it, so the messages are inserted with displayContentImmediately = YES, so that they bypass the queue and instead all together instantly. - * - * @return \c YES if the content object should not be held in the queue; \c NO if it should. - */ -@property (nonatomic) BOOL displayContentImmediately; - -/*! @brief Return whether to allow sending the content over the network. - * - * @par The content controller will not send ask the account to send a content object's content if the content object's \c sendContent property is \c NO. The content will still be displayed locally. - * - * @return \c YES if this content is OK for the content controller to send; \c NO if it should not be sent. - */ -@property (nonatomic) BOOL sendContent; - - -/*! @brief Return whether any post-delivery treatment should be applied to the message. - * - * @par Logging (aka transcription) is one example of something that is done to messages and other content objects after they have finished being received or sent. - * - * @return \c YES if the content should be postprocessed; \c NO if it should not. - */ -@property (nonatomic) BOOL postProcessContent; - -@property (nonatomic, retain) NSString *sourceNick; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentStatus.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentStatus.h deleted file mode 100644 index ab4cccd..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentStatus.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_STATUS_TYPE @"Status" //Type ID for this content - -@interface AIContentStatus : AIContentObject { - NSString *statusType; - NSAttributedString *loggedMessage; - NSString *coalescingKey; -} - -+ (id)statusInChat:(AIChat *)inChat - withSource:(id)inSource - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - withType:(NSString *)inType; - -- (id)initWithChat:(AIChat *)inChat - source:(id)inSource - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage - withType:(NSString *)inStatus; - -/*! - * @brief A key on which multiple status messages should be consolidated if possible - * - * The message view can choose to collapse multiple consecutive status messages into a single - * or combined display if those messages have the same coalescing key. - */ -@property (readwrite, nonatomic, copy) NSString *coalescingKey; -@property (readonly, nonatomic) NSString *status; -@property (readwrite, nonatomic) NSAttributedString *loggedMessage; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTopic.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTopic.h deleted file mode 100644 index 75c38aa..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTopic.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_TOPIC_TYPE @"Topic" //Type ID for this content - - -#define CONTENT_TOPIC_MESSAGE_ACTUALLY_EMPTY [NSAttributedString stringWithString:@"This Topic Intentionally Left Blank"] - -@interface AIContentTopic : AIContentMessage { - BOOL actuallyBlank; -} - -+ (id)topicInChat:(AIChat *)inChat - withSource:(id)inSource - sourceNick:(NSString *)inSourceNick - destination:(id)inDest - date:(NSDate *)inDate - message:(NSAttributedString *)inMessage; - -@property (nonatomic) BOOL actuallyBlank; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTyping.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTyping.h deleted file mode 100644 index 96dd4f6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContentTyping.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define CONTENT_TYPING_TYPE @"Typing" //Type ID for this content - -typedef enum { - AINotTyping = 0, - AITyping, - AIEnteredText -} AITypingState; - -@interface AIContentTyping : AIContentObject { - AITypingState typingState; -} - -+ (id)typingContentInChat:(AIChat *)inChat withSource:(id)inSource destination:(id)inDest typingState:(AITypingState)inTypingState; -@property (readonly, nonatomic) AITypingState typingState; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIContextMenuTextView.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIContextMenuTextView.h deleted file mode 100644 index b91c346..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIContextMenuTextView.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIContextMenuTextView : NSTextView { -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIControllerProtocol.h deleted file mode 100644 index f239d39..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIControllerProtocol.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@protocol AIController -- (void)controllerDidLoad; -- (void)controllerWillClose; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AICorePluginLoader.h b/telegram-adium/Adium.framework/Versions/A/Headers/AICorePluginLoader.h deleted file mode 100644 index 885617a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AICorePluginLoader.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@protocol AIPlugin; - -@interface AICorePluginLoader : NSObject { - NSMutableArray *pluginArray; -} - -+ (void)loadPluginAtPath:(NSString *)pluginName confirmLoading:(BOOL)confirmLoading pluginArray:(NSMutableArray *)pluginArray; -- (id )pluginWithClassName:(NSString *)className; -+ (void)moveXtra:(NSString *)pluginPath toDisabledFolder:(BOOL)disable; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIDebugControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIDebugControllerProtocol.h deleted file mode 100644 index 3576a44..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIDebugControllerProtocol.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@protocol AIDebugController - - (void)addMessage:(NSString *)actualMessage; -@property (nonatomic, readonly) NSArray *debugLogArray; - - (void)clearDebugLogArray; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIDockControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIDockControllerProtocol.h deleted file mode 100644 index 828bfcb..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIDockControllerProtocol.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define PREF_GROUP_APPEARANCE @"Appearance" - -#define KEY_ACTIVE_DOCK_ICON @"Dock Icon" -#define FOLDER_DOCK_ICONS @"Dock Icons" - -#define KEY_ANIMATE_DOCK_ICON @"Animate Dock Icon on Unread Messages" -#define KEY_BADGE_DOCK_ICON @"Badge Dock Icon on Unread Messages" - -@class AIIconState; - -typedef enum { - AIDockBehaviorStopBouncing = 0, - AIDockBehaviorBounceOnce, - AIDockBehaviorBounceRepeatedly, - AIDockBehaviorBounceDelay_FiveSeconds, - AIDockBehaviorBounceDelay_TenSeconds, - AIDockBehaviorBounceDelay_FifteenSeconds, - AIDockBehaviorBounceDelay_ThirtySeconds, - AIDockBehaviorBounceDelay_OneMinute -} AIDockBehavior; - -@protocol AIDockController -//Icon animation & states -- (void)setIconStateNamed:(NSString *)inName; -- (void)removeIconStateNamed:(NSString *)inName; -- (void)setIconState:(AIIconState *)iconState named:(NSString *)inName; -- (NSImage *)baseApplicationIconImage; -- (void)setOverlay:(NSImage *)image; - -//Special access to icon pack loading -- (NSArray *)availableDockIconPacks; -- (BOOL)currentIconSupportsIconStateNamed:(NSString *)inName; -- (NSMutableDictionary *)iconPackAtPath:(NSString *)folderPath; -- (void)getName:(NSString **)outName previewState:(AIIconState **)outIconState forIconPackAtPath:(NSString *)folderPath; -- (AIIconState *)previewStateForIconPackAtPath:(NSString *)folderPath; - -//Bouncing & behavior -- (BOOL)performBehavior:(AIDockBehavior)behavior; -- (NSString *)descriptionForBehavior:(AIDockBehavior)behavior; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIEditStateWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIEditStateWindowController.h deleted file mode 100644 index baa483f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIEditStateWindowController.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIAccount, AITextViewWithPlaceholder, AIService, AIAutoScrollView, AISendingTextView; - -@interface AIEditStateWindowController : AIWindowController { - IBOutlet NSBox *box_title; - IBOutlet NSTextField *label_title; - IBOutlet NSTextField *textField_title; - - IBOutlet NSBox *box_separatorLine; - - IBOutlet NSBox *box_state; - IBOutlet NSTextField *label_state; - IBOutlet NSPopUpButton *popUp_state; - BOOL needToRebuildPopUpState; - - IBOutlet NSTextField *label_statusMessage; - IBOutlet NSBox *box_statusMessage; - IBOutlet AISendingTextView *textView_statusMessage; - IBOutlet AIAutoScrollView *scrollView_statusMessage; - - IBOutlet NSButton *checkbox_autoReply; - IBOutlet NSButton *checkbox_customAutoReply; - IBOutlet AISendingTextView *textView_autoReply; - IBOutlet AIAutoScrollView *scrollView_autoReply; - - IBOutlet NSButton *checkbox_idle; - IBOutlet NSBox *box_idle; - IBOutlet NSTextField *textField_idleMinutes; - IBOutlet NSStepper *stepper_idleMinutes; - IBOutlet NSTextField *textField_idleHours; - IBOutlet NSStepper *stepper_idleHours; - - IBOutlet NSButton *checkBox_save; - IBOutlet NSButton *checkBox_muteSounds; - IBOutlet NSButton *checkBox_silenceGrowl; - IBOutlet NSButton *checkBox_okay; - IBOutlet NSButton *checkBox_cancel; - - AIStatus *originalStatusState; - AIStatus *workingStatusState; - AIAccount *account; - - id target; - - BOOL showSaveCheckbox; -} - -+ (id)editCustomState:(AIStatus *)inStatusState forType:(AIStatusType)inStatusType andAccount:(AIAccount *)inAccount withSaveOption:(BOOL)allowSave onWindow:(id)parentWindow notifyingTarget:(id)inTarget; - -- (IBAction)cancel:(id)sender; -- (IBAction)okay:(id)sender; -- (IBAction)statusControlChanged:(id)sender; -- (void)updateControlVisibilityAndResizeWindow; - -- (void)configureForState:(AIStatus *)state; -- (AIStatus *)currentConfiguration; - -@end - -@interface NSObject (AICustomStatusWindowTarget) -- (void)customStatusState:(AIStatus *)originalState changedTo:(AIStatus *)newState forAccount:(AIAccount *)account; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticon.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticon.h deleted file mode 100644 index 34b155b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticon.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIEmoticonPack; - -@interface AIEmoticon : NSObject { - NSString *path; - NSString *name; - NSArray *textEquivalents; - AIEmoticonPack *pack; - - BOOL enabled; - BOOL imageLoaded; - - NSAttributedString *_cachedAttributedString; -} - -+ (id)emoticonWithIconPath:(NSString *)inPath equivalents:(NSArray *)inTextEquivalents name:(NSString *)inName pack:(AIEmoticonPack *)inPack; -- (NSArray *)textEquivalents; -- (NSMutableAttributedString *)attributedStringWithTextEquivalent:(NSString *)textEquivalent attachImages:(BOOL)attach; -- (BOOL)isAppropriateForServiceClass:(NSString *)inServiceClass; -- (NSImage *)image; -- (void)setPath:(NSString *)inPath; -- (NSString *)path; -- (NSString *)name; -- (void)setEnabled:(BOOL)inEnabled; -- (BOOL)isEnabled; -- (void)flushEmoticonImageCache; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonControllerProtocol.h deleted file mode 100644 index bb06db3..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonControllerProtocol.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define PREF_GROUP_EMOTICONS @"Emoticons" -#define KEY_EMOTICON_ACTIVE_PACKS @"Active Emoticon Packs" -#define KEY_EMOTICON_DISABLED @"Disabled Emoticons" -#define KEY_EMOTICON_PACK_ORDERING @"Emoticon Pack Ordering" -#define KEY_EMOTICON_SERVICE_APPROPRIATE @"Service Appropriate Emoticons" -#define KEY_EMOTICON_MENU_ENABLED @"Emoticon Menu Enabled" - -@class AIEmoticonPack, AIEmoticon; - -@protocol AIEmoticonController -- (NSArray *)availableEmoticonPacks; -- (AIEmoticonPack *)emoticonPackWithName:(NSString *)inName; -- (NSArray *)activeEmoticons; -- (NSArray *)activeEmoticonPacks; -- (void)moveEmoticonPacks:(NSArray *)inPacks toIndex:(NSUInteger)index; -- (void)setEmoticonPack:(AIEmoticonPack *)inPack enabled:(BOOL)enabled; -- (void)setEmoticon:(AIEmoticon *)inEmoticon inPack:(AIEmoticonPack *)inPack enabled:(BOOL)enabled; -- (void)flushEmoticonImageCache; -- (void)xtrasChanged:(NSNotification *)notification; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonPack.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonPack.h deleted file mode 100644 index 79dc848..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIEmoticonPack.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIEmoticonPack : NSObject { - NSBundle *bundle; - NSString *path; - NSString *name; - NSString *serviceClass; - NSMutableArray *emoticonArray; - NSArray *enabledEmoticonArray; - BOOL enabled; -} - -+ (id)emoticonPackFromPath:(NSString *)inPath; -- (void)setDisabledEmoticons:(NSArray *)inArray; -- (NSArray *)emoticons; -- (NSArray *)enabledEmoticons; -- (NSImage *)menuPreviewImage; -- (NSString *)name; -- (NSString *)path; -- (NSString *)serviceClass; -- (void)flushEmoticonImageCache; -- (void)setIsEnabled:(BOOL)inEnabled; -- (BOOL)isEnabled; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIFileTransferControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIFileTransferControllerProtocol.h deleted file mode 100644 index a799da0..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIFileTransferControllerProtocol.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define FileTransfer_NewFileTransfer @"NewFileTransfer" - -#define PREF_GROUP_FILE_TRANSFER @"FileTransfer" - -#define KEY_FT_AUTO_ACCEPT @"FT AutoAccept" -#define KEY_FT_AUTO_OPEN_SAFE @"FT AutoOpenSafe" -#define KEY_FT_AUTO_CLEAR_COMPLETED @"FT AutoClearCompleted" -#define KEY_FT_SHOW_PROGRESS_WINDOW @"FT ShowProgressWindow" - -typedef enum { - Unknown_FileTransfer = 0, - Incoming_FileTransfer, - Outgoing_FileTransfer, -} AIFileTransferType; - -typedef enum { - Unknown_Status_FileTransfer = 0, - Not_Started_FileTransfer, //File transfer has not yet started - Checksumming_Filetransfer, //Calculating a checksum for a file that is to be sent - Waiting_on_Remote_User_FileTransfer, //Is pending confirmation from the remote user - Connecting_FileTransfer, //Is negotiating a connection - Accepted_FileTransfer, //Could also be called Began_FileTransfer or Started_FileTransfer - In_Progress_FileTransfer, //Currently transferring, not yet complete - Complete_FileTransfer, //File is complete; transferring is finished. - Cancelled_Local_FileTransfer, //The local user cancelled the transfer - Cancelled_Remote_FileTransfer, //The remote user cancelled the transfer - Failed_FileTransfer //The transfer failed. -} AIFileTransferStatus; - -typedef enum { - AutoAccept_None = 0, - AutoAccept_All, - AutoAccept_FromContactList, -} AIFileTransferAutoAcceptType; - -@class ESFileTransfer, AIAccount, AIListContact; - -@protocol AIFileTransferController -//Should be the only vendor of new ESFileTransfer* objects, as it creates, tracks, and returns them -- (ESFileTransfer *)newFileTransferWithContact:(AIListContact *)inContact forAccount:(AIAccount *)inAccount type:(AIFileTransferType)type __attribute__((objc_method_family(none))); - -- (NSArray *)fileTransferArray; - -- (NSUInteger)activeTransferCount; - -- (void)receiveRequestForFileTransfer:(ESFileTransfer *)fileTransfer; - -- (void)fileTransfer:(ESFileTransfer *)fileTransfer didSetStatus:(AIFileTransferStatus)status; - -- (void)sendFile:(NSString *)inFile toListContact:(AIListContact *)listContact; -- (void)requestForSendingFileToListContact:(AIListContact *)listContact; - -- (NSString *)stringForSize:(unsigned long long)inSize; -- (NSString *)stringForSize:(unsigned long long)inSize of:(unsigned long long)totalSize ofString:(NSString *)totalSizeString; - -- (void)_removeFileTransfer:(ESFileTransfer *)fileTransfer; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChat.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChat.h deleted file mode 100644 index 4125ec6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChat.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "AIChat.h" - -@interface AIGroupChat : AIChat { - NSString *topic; - NSString *topicSetter; - - NSMutableDictionary *participatingNicksFlags; - NSMutableDictionary *participatingNicksContacts; - NSMutableArray *participatingNicks; - - BOOL showJoinLeave; - BOOL expanded; - - NSDate *lastMessageDate; -} - -@property (readwrite, nonatomic) BOOL showJoinLeave; - -@property (readonly, nonatomic) BOOL supportsTopic; - -- (void)updateTopic:(NSString *)inTopic withSource:(NSString *)contact; -- (void)setTopic:(NSString *)inTopic; - -@property (readwrite, copy, nonatomic) NSDate *lastMessageDate; - -// Group chat participants. -- (AIListContact *)contactForNick:(NSString *)nick; -- (AIGroupChatFlags)flagsForNick:(NSString *)nick; -- (void)setFlags:(AIGroupChatFlags)flags forNick:(NSString *)nick; -- (void)setContact:(AIListContact *)contact forNick:(NSString *)nick; -- (void)changeNick:(NSString *)from to:(NSString *)to; -- (void)removeSavedValuesForNick:(NSString *)nick; -- (NSArray *)nicksForContact:(AIListObject *)contact; - -- (void)addParticipatingNick:(NSString *)inObject notify:(BOOL)notify; -- (void)addParticipatingNicks:(NSArray *)inObjects notify:(BOOL)notify; -- (void)removeAllParticipatingContactsSilently; -- (void)removeObject:(NSString *)inObject; - -- (BOOL)inviteListContact:(AIListContact *)inObject withMessage:(NSString *)inviteMessage; - -- (void)resortParticipants; - -- (NSString *)visibleObjectAtIndex:(NSUInteger)idx; - -- (NSString *)displayNameForContact:(AIListObject *)contact __attribute__((deprecated)); - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChatStatusIcons.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChatStatusIcons.h deleted file mode 100644 index 495f96e..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIGroupChatStatusIcons.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#define PREF_GROUP_APPEARANCE @"Appearance" -#define KEY_GROUP_CHAT_STATUS_ICONS @"Group Chat Status Icons" -#define EXTENSION_GROUP_CHAT_STATUS_ICONS @"AdiumGroupChatStatusIcons" -#define RESOURCE_GROUP_CHAT_STATUS_ICONS @"Group Chat Status Icons" - -#define KEY_COLORS_DICT @"Colors" -#define KEY_ICONS_DICT @"Icons" - -#define FOUNDER @"Founder" -#define OP @"Op" -#define HOP @"Half-op" -#define VOICE @"Voice" -#define NONE @"None" - -#import -#import - -@interface AIGroupChatStatusIcons : AIXtraInfo { - NSMutableDictionary *icons; - NSMutableDictionary *colors; - NSDictionary *iconInfo; - NSDictionary *colorInfo; -} - -+ (AIGroupChatStatusIcons *)sharedIcons; -- (NSImage *)imageForFlag:(AIGroupChatFlags)flag; -- (NSColor *)colorForFlag:(AIGroupChatFlags)flags; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIHTMLDecoder.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIHTMLDecoder.h deleted file mode 100644 index 570ccb7..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIHTMLDecoder.h +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AIXMLElement; - -@interface AIHTMLDecoder : NSObject { - NSString *XMLNamespace; - NSString *baseURL; - - struct AIHTMLDecoderOptionsBitField { - unsigned reserved: 18; - - unsigned generateStrictXHTML: 1; - - unsigned allowJavascriptURLs: 1; - - //these next ten members are derived from the arguments to - // +encodeHTML:::::::::::: in the old AIHTMLDecoder. - unsigned headers: 1; - unsigned fontTags: 1; - unsigned closingFontTags: 1; - unsigned colorTags: 1; - unsigned styleTags: 1; - - unsigned nonASCII: 1; - unsigned allSpaces: 1; - unsigned attachmentTextEquivalents: 1; - unsigned onlyIncludeOutgoingImages: 1; - unsigned bodyBackground: 1; - - unsigned simpleTagsOnly: 1; - - unsigned allowAIMsubprofileLinks: 1; - } thingsToInclude; - - //For the horribly ghetto span and div tags used by the HTML logs - BOOL send; - BOOL receive; - BOOL inDiv; -} - -#define AIElementClassAttributeName @"AIElementClass" - -#pragma mark Creation - -//+decoder, +new, and -init all return an instance with all flags set to 0. - -+ (AIHTMLDecoder *)decoder; - -//convenience methods to get a decoder that's already been set up a certain way. - -- (id)initWithHeaders:(BOOL)includeHeaders - fontTags:(BOOL)includeFontTags - closeFontTags:(BOOL)closeFontTags - colorTags:(BOOL)includeColorTags - styleTags:(BOOL)includeStyleTags - encodeNonASCII:(BOOL)encodeNonASCII - encodeSpaces:(BOOL)encodeSpaces - attachmentsAsText:(BOOL)attachmentsAsText -onlyIncludeOutgoingImages:(BOOL)onlyIncludeOutgoingImages - simpleTagsOnly:(BOOL)simpleOnly - bodyBackground:(BOOL)bodyBackground - allowJavascriptURLs:(BOOL)allowJS; - -+ (AIHTMLDecoder *)decoderWithHeaders:(BOOL)includeHeaders - fontTags:(BOOL)includeFontTags - closeFontTags:(BOOL)closeFontTags - colorTags:(BOOL)includeColorTags - styleTags:(BOOL)includeStyleTags - encodeNonASCII:(BOOL)encodeNonASCII - encodeSpaces:(BOOL)encodeSpaces - attachmentsAsText:(BOOL)attachmentsAsText - onlyIncludeOutgoingImages:(BOOL)onlyIncludeOutgoingImages - simpleTagsOnly:(BOOL)simpleOnly - bodyBackground:(BOOL)bodyBackground - allowJavascriptURLs:(BOOL)allowJS; - -#pragma mark Work methods - -//turn HTML source into an attributed string. -//uses no options. -- (NSAttributedString *)decodeHTML:(NSString *)inMessage; - -//turn HTML source into an attributed string, passing the default attributes to use when tags don't explicitly set them -- (NSAttributedString *)decodeHTML:(NSString *)inMessage withDefaultAttributes:(NSDictionary *)inDefaultAttributes; - -//turn an attributed string into HTML source. -//uses all options. -- (NSString *)encodeHTML:(NSAttributedString *)inMessage imagesPath:(NSString *)imagesPath; - -//Turn an attributed string into the root element of a strict XHTML (1.0) document. -//Uses options: XMLNamespace, includeHeaders, attachmentsAsText. -- (AIXMLElement *)rootStrictXHTMLElementForAttributedString:(NSAttributedString *)inMessage imagesPath:(NSString *)imagesSavePath; - -//pass a string containing all the attributes of a tag (for example, -// @"src=\"window.jp2\" alt=\"Window on the World\""). you will get back a -// dictionary containing those attributes (for example, @{ @"src" = -// @"window.jp2", @"alt" = @"Window on the World" }). -//uses no options. -- (NSDictionary *)parseArguments:(NSString *)arguments; - -#pragma mark Properties - -@property (readwrite, nonatomic, copy) NSString *XMLNamespace; -@property (readwrite, nonatomic) BOOL generatesStrictXHTML; -//meaning and . -@property (readwrite, nonatomic) BOOL includesHeaders; -@property (readwrite, nonatomic) BOOL includesFontTags; -@property (readwrite, nonatomic) BOOL closesFontTags; -@property (readwrite, nonatomic) BOOL includesColorTags; -@property (readwrite, nonatomic) BOOL includesStyleTags; -//turn non-printable characters into entities. -@property (readwrite, nonatomic) BOOL encodesNonASCII; -@property (readwrite, nonatomic) BOOL preservesAllSpaces; -@property (readwrite, nonatomic) BOOL usesAttachmentTextEquivalents; -@property (readwrite, nonatomic) BOOL onlyConvertImageAttachmentsToIMGTagsWhenSendingAMessage; -@property (readwrite, nonatomic) BOOL onlyUsesSimpleTags; -@property (readwrite, nonatomic) BOOL includesBodyBackground; -@property (readwrite, nonatomic) BOOL allowAIMsubprofileLinks; -@property (readwrite, nonatomic) BOOL allowJavascriptURLs; -@property (readwrite, nonatomic, copy) NSString *baseURL; - -@end - -@interface AIHTMLDecoder (ClassMethodCompatibility) - -/*these bring back the class methods that I (boredzo) turned into instance - * methods for the sake of clarity. - *when these methods are no longer used, this category should be deleted. - */ - -+ (AIHTMLDecoder *)classMethodInstance; - -+ (NSString *)encodeHTML:(NSAttributedString *)inMessage encodeFullString:(BOOL)encodeFullString; -+ (NSString *)encodeHTML:(NSAttributedString *)inMessage - headers:(BOOL)includeHeaders - fontTags:(BOOL)includeFontTags - includingColorTags:(BOOL)includeColorTags - closeFontTags:(BOOL)closeFontTags - styleTags:(BOOL)includeStyleTags - closeStyleTagsOnFontChange:(BOOL)closeStyleTagsOnFontChange - encodeNonASCII:(BOOL)encodeNonASCII - encodeSpaces:(BOOL)encodeSpaces - imagesPath:(NSString *)imagesPath - attachmentsAsText:(BOOL)attachmentsAsText -onlyIncludeOutgoingImages:(BOOL)onlyIncludeOutgoingImages - simpleTagsOnly:(BOOL)simpleOnly - bodyBackground:(BOOL)bodyBackground - allowJavascriptURLs:(BOOL)allowJS; - -+ (NSAttributedString *)decodeHTML:(NSString *)inMessage; -+ (NSAttributedString *)decodeHTML:(NSString *)inMessage withDefaultAttributes:(NSDictionary *)inDefaultAttributes; - -+ (NSDictionary *)parseArguments:(NSString *)arguments; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIIconState.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIIconState.h deleted file mode 100644 index d0e27d9..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIIconState.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@interface AIIconState : NSObject { - BOOL animated; - BOOL overlay; - - //Static - NSImage *image; - - //Animated - NSMutableArray *imageArray; - CGFloat delay; - BOOL looping; - NSInteger currentFrame; - NSInteger numberOfFrames; - - //Animated w/ delayed rendering - NSArray *iconRendering_states; - AIIconState *iconRendering_baseState; - AIIconState *iconRendering_animationState; -} - -- (id)initWithImages:(NSArray *)inImages delay:(CGFloat)inDelay looping:(BOOL)inLooping overlay:(BOOL)inOverlay; -- (id)initWithImage:(NSImage *)inImage overlay:(BOOL)inOverlay; -- (id)initByCompositingStates:(NSArray *)inIconStates; -- (BOOL)animated; -- (CGFloat)animationDelay; -- (BOOL)looping; -- (BOOL)overlay; -- (NSArray *)imageArray; -- (NSImage *)image; -- (NSImage *)_compositeStates:(NSArray *)iconStateArray withBaseState:(AIIconState *)baseState animatingState:(AIIconState *)animatingState forFrame:(NSInteger)frame; -- (NSInteger)currentFrame; -- (void)nextFrame; -- (NSInteger)numberOfFrames; - -@end - diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIImageTextCellView.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIImageTextCellView.h deleted file mode 100644 index da4edb5..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIImageTextCellView.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AIImageTextCell; - -@interface AIImageTextCellView : NSView { - AIImageTextCell *cell; -} - -- (void)setStringValue:(NSString *)inString; -- (void)setImage:(NSImage *)inImage; -- (void)setSubString:(NSString *)inSubString; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIInterfaceControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIInterfaceControllerProtocol.h deleted file mode 100644 index 8da808a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIInterfaceControllerProtocol.h +++ /dev/null @@ -1,641 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define Interface_ContactSelectionChanged @"Interface_ContactSelectionChanged" - -/*! - * @brief AIContactInfoInspectorDidChangeInspectedObject notification name - * - * userinfo is an NSDictionary with keys KEY_PREVIOUS_INSPECTED_OBJECT and KEY_NEW_INSPECTED_OBJECT and objects of class AIListObject - */ -#define AIContactInfoInspectorDidChangeInspectedObject @"AIContactInfoInspectorWillChangeInspectedObject" -#define KEY_PREVIOUS_INSPECTED_OBJECT @"PreviousInspectedObject" -#define KEY_NEW_INSPECTED_OBJECT @"NewInspectedObject" - -#define Interface_SendEnteredMessage @"Interface_SendEnteredMessage" -#define Interface_WillSendEnteredMessage @"Interface_WillSendEnteredMessage" -#define Interface_DidSendEnteredMessage @"Interface_DidSendEnteredMessage" -#define Interface_ShouldDisplayErrorMessage @"Interface_ShouldDisplayErrorMessage" -#define Interface_ShouldDisplayQuestion @"Interface_ShouldDisplayQuestion" -#define Interface_ContactListDidBecomeMain @"Interface_ContactListDidBecomeMain" -#define Interface_ContactListDidResignMain @"Interface_contactListDidResignMain" -#define Interface_ContactListDidClose @"Interface_contactListDidClose" -#define Interface_TabArrangingPreferenceChanged @"Interface_TabArrangingPreferenceChanged" -#define AIViewDesiredSizeDidChangeNotification @"AIViewDesiredSizeDidChangeNotification" - -#define PREF_GROUP_INTERFACE @"Interface" -#define KEY_TABBED_CHATTING @"Tabbed Chatting" -#define KEY_GROUP_CHATS_BY_GROUP @"Group Chats By Group" -#define KEY_SAVE_CONTAINERS @"Save Containers On Quit" -#define KEY_CONTAINERS @"Containers" - -#define KEY_CL_WINDOW_LEVEL @"Window Level" -#define KEY_CL_HIDE @"Hide While in Background" -#define KEY_CL_EDGE_SLIDE @"Hide On Screen Edges" -#define KEY_CL_FLASH_UNVIEWED_CONTENT @"Flash Unviewed Content" -#define KEY_CL_ANIMATE_CHANGES @"Animate Changes" -#define KEY_CL_SHOW_TOOLTIPS @"Show Tooltips" -#define KEY_CL_SHOW_TOOLTIPS_IN_BACKGROUND @"Show Tooltips in Background" -#define KEY_CL_WINDOW_HAS_SHADOW @"Window Has Shadow" - -#define PREF_GROUP_CONFIRMATIONS @"Confirmations" -#define KEY_CONFIRM_QUIT_FT @"Suppress Quit Confirmation for File Transfers" -#define KEY_CONFIRM_QUIT_UNREAD @"Suppress Quit Confirmation for Unread Messages" -#define KEY_CONFIRM_MSG_CLOSE @"Confirm Message Window Close" -#define KEY_CONFIRM_LOGGED_OTR @"Confirm Logging When Using OTR" -#define KEY_CONFIRM_SEND_CRASH @"Suppress Send Crash Reports" - -typedef enum { - AINormalWindowLevel = 0, - AIFloatingWindowLevel = 1, - AIDesktopWindowLevel = 2 -} AIWindowLevel; - -//Identifiers for the various message views -typedef enum { - DCStandardMessageView = 1, //webkit is not available - DCWebkitMessageView //Preferred message view -} DCMessageViewType; - -typedef enum { - AITextAndButtonsDefaultReturn = 1, - AITextAndButtonsAlternateReturn = 0, - AITextAndButtonsOtherReturn = -1, - AITextAndButtonsClosedWithoutResponse = -2 -} AITextAndButtonsReturnCode; - -typedef enum { - AITextAndButtonsWindowButtonDefault = 0, - AITextAndButtonsWindowButtonAlternate, - AITextAndButtonsWindowButtonOther -} AITextAndButtonsWindowButton; - -@protocol AIInterfaceComponent, AIContactListComponent, AIMessageDisplayController, AIMessageDisplayPlugin; -@protocol AIContactListTooltipEntry, AIFlashObserver, AIPlugin; - -@class AIListWindowController, AIMessageWindowController, AIMessageViewController; - -@class AIChat, AIListObject, AIListGroup, AIContactList; - -@protocol AIInterfaceController -- (void)registerInterfaceController:(id )inController; -- (void)registerContactListController:(id )inController; - -/*! @brief Implement handling of the reopen Apple Event. - * - * @par The reopen handler should respond by making sure that at least one of Adium's windows is visible. - * - * @par Adium.app's implementation handles this event this way: - * - * @li If there are no chat windows, shows the Contact List. - * @li Else, if the foremost chat window and chat tab has unviewed content, make sure it stays foremost (bringing it forward of the Contact List, if necessary). - * @li Else, if any chat window has unviewed content, bring foremost the chat window and chat tab with the most recent unviewed content. - * @li Else, if all chat windows are minimized, unminimize one of them. - * @li If the application is hidden, unhide it. - * - * @return A value suitable for returning from the \c NSApplication delegate method applicationShouldHandleReopen:hasVisibleWindows: -. Specifically: \c YES if AppKit should perform its usual response to the event; \c NO if AppKit should do nothing. - */ -- (BOOL)handleReopenWithVisibleWindows:(BOOL)visibleWindows; - -//Contact List -/*! @name Contact List */ -/* @{ */ -/*! - * @brief Brings contact list to the front - */ -- (IBAction)showContactList:(id)sender; -/*! - * @brief Close the contact list window - */ -- (IBAction)closeContactList:(id)sender; -/*! - * @brief Toggle the contact list - * - * Show the contact list if it's closed, bring it to the front if it's open but not in the front, - * or close it if it's active. - */ -- (IBAction)toggleContactList:(id)sender; -/*! - * @returns YES if contact list is visible and selected, otherwise NO - */ -@property (nonatomic, readonly) BOOL contactListIsVisibleAndMain; -/*! - * @returns YES if contact list is visible, otherwise NO - */ -@property (nonatomic, readonly) BOOL contactListIsVisible; -/*! @} */ - -#pragma mark Detachable Contact List -/*! - * @brief Create a new AIListWindowController to display a given contact list group in a detached window - * - * @result Created contact list controller for detached contact list - */ -- (AIListWindowController *)detachContactList:(AIContactList *)aContactList; - -#pragma mark Messaging -/*! - * @brief Opens tab or window for a chat (following user's preferences) - * - * @param inChat The chat. If already open, the chat will be brought to the front. - */ -- (void)openChat:(AIChat *)inChat; - -/*! - * @brief Opens a chat in a given container at a specific index - * - * NOTE: If the chat is already open, this won't move it and instead does nothing. Perhaps it should, though :) - * - * @param inChat The chat. - * @param containerID The name of the container window. - * @param index The index within that containter window. - */ -- (id)openChat:(AIChat *)inChat inContainerWithID:(NSString *)containerID atIndex:(NSUInteger)index; - -/*! - * @brief Move a chat to a new window container - * - * NOTE: The chat must already be open. That's a bug. - */ -- (void)moveChatToNewContainer:(AIChat *)inChat; - -/*! - * @brief Close the interface for a chat - * - * @param inChat The chat - */ -- (void)closeChat:(AIChat *)inChat; - -/*! - * @brief Consolidate all open chats into a single container - */ -- (void)consolidateChats; - -/*! - * @brief Active Chat property - * - * Setter brings the tab/window for a chat to the front and sets it as active - * If no chat is active (a non-chat window is focused, or Adium is not focused), getter returns nil. - */ -@property (nonatomic, retain) AIChat *activeChat; - -/*! - * @brief Get the chat which was most recently active - * - * If -[self activeChat] is non-nil, this will be the same as activeChat. However, if no chat is active, so long - * as any chat is open, this will return the chat most recently active. If no chats are open, this will return nil. - */ -@property (nonatomic, readonly) AIChat *mostRecentActiveChat; - -/*! - * @brief Get all open chats - * - * @result The open chats. Returns an empty array if no chats are open. - */ -@property (nonatomic, readonly) NSArray *openChats; - -/*! - * @brief Get all open chats in a given container. - * - * @result The array of open chats. Returns nil if no container with containerID exists. - */ -- (NSArray *)openChatsInContainerWithID:(NSString *)containerID; - -/*! - * @brief The container ID for a chat - * - * @param chat The chat to look up - * @returns The container ID for the container the chat is in. - */ -- (NSString *)containerIDForChat:(AIChat *)chat; - -/*! - * @brief Get an array of the containerIDs of all open containers - */ -@property (nonatomic, readonly) NSArray *openContainerIDs; - -/*! - * @brief Open a new container with a given ID and name - * - * @param containerID The container's ID. Pass nil to let Adium generate one - * @param containerName THe name of the container. Pass nil to not specify one. - * - * @result The newly created AIMessageWindowController - */ -- (AIMessageWindowController *)openContainerWithID:(NSString *)containerID name:(NSString *)containerName; - -/*! - * @brief Cycles to the next open chat, making it active - * - * This does not cross container boundaries. If there is no currently active chat, this has no effect. - */ -- (void)nextChat:(id)sender; - -/*! - * @brief Cycles to the previous open chat, making it active - * - * This does not cross container boundaries. If there is no currently active chat, this has no effect. - */ -- (void)previousChat:(id)sender; - -#pragma mark Interface plugin callbacks -/*! - * @brief A chat window did open: rebuild our window menu to show the new chat - * - * This should be called by the interface plugin (e.g. AIDualWindowInterfacePlugin) after a chat opens - * - * @param inChat Newly created chat - */ -- (void)chatDidOpen:(AIChat *)inChat; - -/*! - * @brief A chat has become active: update our chat closing keys and flag this chat as selected in the window menu - * - * This should be called by the interface plugin (e.g. AIDualWindowInterfacePlugin) - * - * @param inChat Chat which has become active - */ -- (void)chatDidBecomeActive:(AIChat *)inChat; - -/*! - * @brief A chat has become visible: send out a notification for components and plugins to take action - * - * This should be called by the interface plugin (e.g. AIDualWindowInterfacePlugin) - * - * @param inChat Chat that has become active - * @param inWindow Containing chat window - */ -- (void)chatDidBecomeVisible:(AIChat *)inChat inWindow:(NSWindow *)inWindow; - -/*! - * @brief A chat window did close: rebuild our window menu to remove the chat - * - * This should be called by the interface plugin (e.g. AIDualWindowInterfacePlugin) - * - * @param inChat Chat that closed - */ -- (void)chatDidClose:(AIChat *)inChat; - -/*! - * @brief The order of chats has changed: rebuild our window menu to reflect the new order - * - * This should be called by the interface plugin (e.g. AIDualWindowInterfacePlugin) - */ -- (void)chatOrderDidChange; - -#pragma mark Chat window access -/*! - * @brief Find the window currently displaying a chat - * - * @returns Window for chat otherwise if the chat is not in any window, or is not visible in any window, returns nil - */ -- (NSWindow *)windowForChat:(AIChat *)inChat; - - -/*! - * @brief Find the chat active in a window - * - * If the window does not have an active chat, nil is returned - */ -- (AIChat *)activeChatInWindow:(NSWindow *)window; - -#pragma mark Interface selection -/*! - * @brief Get the list object currently focused in the interface - * - * We find the first responder that knows about list objects and get its selected object. - * This may be, for example, the contact list or a chat window. - */ -@property (readonly, nonatomic) AIListObject *selectedListObject; - -/*! - * @brief Get the list object currently selected in the contact list - * - * If multiple objects are selected, this returns the first one. If possible, use arrayOfSelectedListObjectsInContactList and - * handle multiple selections. - */ -@property (readonly, nonatomic) AIListObject *selectedListObjectInContactList; - -/*! - * @brief Get the list objects currently selected in the contact list - * - * @result An NSArray of selected objects - */ -@property (readonly, nonatomic) NSArray *arrayOfSelectedListObjectsInContactList; - -/*! - * @brief Get the list objects currently selected in the contact list with their groups - * - * Each entry in the NSArray is an NSDictionary of the following layout: - * - * @"ListObject" => the AIListObject - * @"ContainingObject" => the containing object - * - * @result An NSArray of selected objects - */ -@property (readonly, nonatomic) NSArray *arrayOfSelectedListObjectsWithGroupsInContactList; - -#pragma mark Message View -/*! - * @brief Register an object which can handle displaying messages - * - * See @protocol AIMessageDisplayPlugin for details. An example of such an object is the WebKit Message View plugin. - * - * @param inPlugin The object, which must conform to @protocol(AIMessageDisplayPlugin) - */ -- (void)registerMessageDisplayPlugin:(id )inPlugin; - -/*! - * @brief Unregister an object previously registered with registerMessageDisplayPlugin. - */ -- (void)unregisterMessageDisplayPlugin:(id )inPlugin; - -/*! - * @brief Get the AIMessageDisplayController-conforming object for a chat - * - * Every chat has exactly one. You can get it! - */ -- (id )messageDisplayControllerForChat:(AIChat *)inChat; - -#pragma mark Error Display -- (void)handleErrorMessage:(NSString *)inTitle withDescription:(NSString *)inDesc; -- (void)handleMessage:(NSString *)inTitle withDescription:(NSString *)inDesc withWindowTitle:(NSString *)inWindowTitle; - -#pragma mark Question Display -- (void)displayQuestion:(NSString *)inTitle withAttributedDescription:(NSAttributedString *)inDesc withWindowTitle:(NSString *)inWindowTitle - defaultButton:(NSString *)inDefaultButton alternateButton:(NSString *)inAlternateButton otherButton:(NSString *)inOtherButton suppression:(NSString *)inSuppression -responseHandler:(void (^)(AITextAndButtonsReturnCode ret, BOOL suppressed, id userInfo))handler; -- (void)displayQuestion:(NSString *)inTitle withDescription:(NSString *)inDesc withWindowTitle:(NSString *)inWindowTitle - defaultButton:(NSString *)inDefaultButton alternateButton:(NSString *)inAlternateButton otherButton:(NSString *)inOtherButton suppression:(NSString *)inSuppression -responseHandler:(void (^)(AITextAndButtonsReturnCode ret, BOOL suppressed, id userInfo))handler; - -- (void)displayQuestion:(NSString *)inTitle withAttributedDescription:(NSAttributedString *)inDesc withWindowTitle:(NSString *)inWindowTitle - defaultButton:(NSString *)inDefaultButton alternateButton:(NSString *)inAlternateButton otherButton:(NSString *)inOtherButton suppression:(NSString *)inSuppression - makeKey:(BOOL)key responseHandler:(void (^)(AITextAndButtonsReturnCode ret, BOOL suppressed, id userInfo))handler; -- (void)displayQuestion:(NSString *)inTitle withDescription:(NSString *)inDesc withWindowTitle:(NSString *)inWindowTitle - defaultButton:(NSString *)inDefaultButton alternateButton:(NSString *)inAlternateButton otherButton:(NSString *)inOtherButton suppression:(NSString *)inSuppression - makeKey:(BOOL)key responseHandler:(void (^)(AITextAndButtonsReturnCode ret, BOOL suppressed, id userInfo))handler; - -#pragma mark Synchronized Flashing -- (void)registerFlashObserver:(id )inObserver; -- (void)unregisterFlashObserver:(id )inObserver; -- (int)flashState; - -#pragma mark Tooltips -/*! - * @brief Register a tooltip-supplying object - * - * @param inEntry The object which will be queried for information when building a tooltip. Must conform to the AIContactListTooltipEntry protocol. - * @param isSecondary Most tooltips are secondary; this means they are displayed in the bottom half of the tooltip which can expand as needed. - */ -- (void)registerContactListTooltipEntry:(id )inEntry secondaryEntry:(BOOL)isSecondary; - -/*! - * @brief Unregister a previously reigstered tooltip-supplying object - * - * @param inEntry The object to unregister - * @param isSecondary This should match the value passed to registerContactListTooltipEntry:secondaryEntry: - */ -- (void)unregisterContactListTooltipEntry:(id )inEntry secondaryEntry:(BOOL)isSecondary; - -/*! - * @brief Get an array of all primary contact list tooltip entries - * - * @result An NSArray of objects conforming to AIContactListTooltipEntry - */ -- (NSArray *)contactListTooltipPrimaryEntries; - -/*! - * @brief Get an array of all secondary contact list tooltip entries - * - * @result An NSArray of objects conforming to AIContactListTooltipEntry - */ -- (NSArray *)contactListTooltipSecondaryEntries; - -/*! - * @brief Show an object's tooltip at a given point - * - * If object is not nil, the tooltip box will be shown for that object at the given point. It is created if needed; - * if there is an existing object tooltip, that window is moved to the given point and reconfigured for object. - * This is a rich-text, information-rich tooltip, not a simple text tooltip as seen elsewhere in Mac OS X. - * - * @param object The object for which the tooltip should be shown. Pass nil to hide any existing tooltip. - * @param point The point in screen coordinates for the tooltip's origin. If object is nil, this value is ignored. - * @param inWindow The window from which the tooltip is originating. If object is nil, this value is ignored. - */ -- (void)showTooltipForListObject:(AIListObject *)object atScreenPoint:(NSPoint)point onWindow:(NSWindow *)inWindow; - -#pragma mark Window level menu -/*! - * @brief Build a menu of possible window levels - * - * Window levels may be, for example, 'Above other windows' or 'Normally'. - * - * @param target The target on which @selector(selectedWindowLevel:) will be called when a menu item is selected - */ -- (NSMenu *)menuForWindowLevelsNotifyingTarget:(id)target; - -@end - -//Controls a contact list view -@protocol AIContactListViewController -- (NSView *)contactListView; -@end - -//Manages contact list view controllers -@protocol AIContactListController -- (id )contactListViewController; -@end - -/*! - * @protocol AIMessageDisplayController - * @brief The message display controller is responsible for, unsurprisingly, the actual display of messages. - * - * The display controller manages a view ("messageView") which will be inserted along with other UI elements such - * as a text entry area into a window. The Interface Plugin knows nothing about how the AIMessageDisplayController - * keeps its messageView up to date, nor should it, but knows that the view will show messages. - * - * The AIMessageDisplayController is informed when the message view which is using it is closing. - * - * This is, for example, the AIWebKitMessageViewController. - */ -@protocol AIMessageDisplayController -- (void)setChatContentSource:(NSString *)source; -- (NSString *)chatContentSource; -- (NSString *)contentSourceName; // Unique name for this particular style of "content source". - -- (NSView *)messageView; -- (NSView *)messageScrollView; -- (void)messageViewIsClosing; -- (void)clearView; - -- (void)jumpToPreviousMark; -- (BOOL)previousMarkExists; - -- (void)jumpToNextMark; -- (BOOL)nextMarkExists; - -- (void)jumpToFocusMark; -- (BOOL)focusMarkExists; - -- (void)addMark; -- (void)markForFocusChange; -@end - -/* - * @protocol AIMessageDisplayPlugin - * @brief A AIMessageDisplayPlugin provides AIMessageDisplayController objects on demand. - * - * The WebKit display plugin is one example. - */ -@protocol AIMessageDisplayPlugin -- (id )messageDisplayControllerForChat:(AIChat *)inChat; -@end - -@protocol AIContactListTooltipEntry -- (NSString *)labelForObject:(AIListObject *)inObject; -- (NSAttributedString *)entryForObject:(AIListObject *)inObject; -- (BOOL)shouldDisplayInContactInspector; -@end - -@protocol AIFlashObserver -- (void)flash:(int)value; -@end - -//Handles any attributed text entry -@protocol AITextEntryView -- (void)setAttributedString:(NSAttributedString *)inAttributedString; -- (void)setTypingAttributes:(NSDictionary *)attrs; -- (BOOL)availableForSending; -- (AIChat *)chat; -@end - -@protocol AIInterfaceComponent -- (void)openInterface; -- (void)closeInterface; -- (id)openChat:(AIChat *)chat inContainerWithID:(NSString *)containerID withName:(NSString *)containerName atIndex:(NSUInteger)index; -- (void)setActiveChat:(AIChat *)inChat; -- (void)moveChat:(AIChat *)chat toContainerWithID:(NSString *)containerID index:(NSUInteger)index; -- (void)moveChatToNewContainer:(AIChat *)inChat; -- (void)closeChat:(AIChat *)chat; -- (AIMessageWindowController *)openContainerWithID:(NSString *)containerID name:(NSString *)containerName; -/*! - * @brief Return an array of NSDictionary objects for all open containers with associated information - * - * The returned array has zero or more NSDictionary objects with the following information for each container - * Key Value - * @"ID" NSString of the containerID - * @"Frame" NSString of the window's [NSWindow frame] - * @"Content" NSArray of the AIChat objects within that container - * @"ActiveChat" AIChat that is currently active - * @"Name" NSString of the container's name - */ -@property (readonly, nonatomic) NSArray *openContainersAndChats; -@property (readonly, nonatomic) NSArray *openContainerIDs; -@property (readonly, nonatomic) NSArray *openChats; -- (NSArray *)openChatsInContainerWithID:(NSString *)containerID; -- (NSString *)containerIDForChat:(AIChat *)chat; -- (NSWindow *)windowForChat:(AIChat *)chat; -- (AIChat *)activeChatInWindow:(NSWindow *)window; -@end - -/*! - * @protocol AIInterfaceContainer - * @brief This protocol is for a general interface element such as the contact list or the container of a chat - */ -@protocol AIInterfaceContainer -- (void)makeActive:(id)sender; //Make the container active/front -- (void)close:(id)sender; //Close the container -@end - -/*! - * @protocol AIChatViewController - * @brief A AIChatViewController manages everything pertaining to a chat's view area - * - * It will manage this view, text input, and any associated controls. - */ -@protocol AIChatViewController -- (NSView *)view; -- (NSScrollView *)messagesScrollView; -- (AIChat *)chat; - -/*! - * @brief Show/hide the user list for a group chat. - * Does nothing if not in a group chat. - */ -- (void)toggleUserList; - -/*! - * @brief Is the user list visible for a group chat? - */ -- (BOOL)userListVisible; - -/*! - * @brief Swap the side the user list is on for a group chat. - * Does nothing if not in a group chat. - */ -- (void)toggleUserListSide; -@end - -/*! - * @protocol AIChatContainer - * @brief This protocol is for an object which displays a single chat (e.g. a tab in a chat window) - */ -@protocol AIChatContainer -/* - * @brief Get the window controller which holds this AIChatContainer - */ -@property (readonly, nonatomic, retain) AIMessageWindowController *windowController; - -/* - * @brief Get the view controller for this AIChatContainer - */ -@property (readonly, nonatomic) id chatViewController; - -/*! - * @brief Get the message view controller for this AIChatContainer - */ -@property (readonly, nonatomic) AIMessageViewController *messageViewController; -@end - -@protocol AIContactListComponent -/*! - * @brief Show the contact list window and bring Adium to the front - */ -- (void)showContactListAndBringToFront:(BOOL)bringToFront; -- (BOOL)contactListIsVisibleAndMain; -- (BOOL)contactListIsVisible; -- (void)closeContactList; -@end - -@protocol AIMultiContactListComponent -- (id)detachContactList:(AIContactList *)contactList; -- (void)nextDetachedContactList; -- (void)previousDetachedContactList; -@end - -//Custom printing informal protocol -@interface NSObject (AdiumPrinting) -- (void)adiumPrint:(id)sender; -- (BOOL)validatePrintMenuItem:(NSMenuItem *)menuItem; -@end - -@interface NSWindowController (AdiumBorderlessWindowClosing) -- (BOOL)windowPermitsClose; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListBookmark.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListBookmark.h deleted file mode 100644 index 065e3f2..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListBookmark.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "AIListContact.h" - -#import - -#define KEY_AUTO_JOIN @"Automatically Join" -#define KEY_UNREAD_STATUS @"Unread Status" - -#define GROUP_LIST_BOOKMARK @"List Bookmark Settings" - -@class AIChat; - -@interface AIListBookmark : AIListContact { - NSDictionary *chatCreationDictionary; - - NSString *password; - NSString *name; -} - -- (id)initWithChat:(AIChat *)inChat; - -@property (nonatomic) NSString *password; -@property (readonly, nonatomic) NSString *name; -@property (readonly, nonatomic) NSDictionary *chatCreationDictionary; - -- (AIChat *)openChat; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListCell.h deleted file mode 100644 index ef095e4..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListCell.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "AIProxyListObject.h" - -@class AIListObject, AIListOutlineView, AIAdium; - -#define DROP_HIGHLIGHT_WIDTH_MARGIN 5.0f -#define DROP_HIGHLIGHT_HEIGHT_MARGIN 1.0f - -@interface AIListCell : NSCell { - AIListOutlineView *__weak controlView; - AIProxyListObject *proxyObject; - BOOL isGroup; - - NSTextAlignment textAlignment; - CGFloat labelFontHeight; - - CGFloat topSpacing; - CGFloat bottomSpacing; - CGFloat topPadding; - CGFloat bottomPadding; - - CGFloat leftPadding; - CGFloat rightPadding; - CGFloat leftSpacing; - CGFloat rightSpacing; - - CGFloat indentation; - - NSColor *textColor; - NSColor *invertedTextColor; - - NSFont *font; - - BOOL useAliasesAsRequested; - NSMutableDictionary *labelAttributes; -} - -- (void)setProxyListObject:(AIProxyListObject *)inObject; -@property (readonly, nonatomic) BOOL isGroup; -@property (readwrite, weak, nonatomic) AIListOutlineView *controlView; - -//Display options -@property (readwrite, nonatomic) NSFont *font; -@property (readwrite, nonatomic) NSTextAlignment textAlignment; -@property (readwrite, nonatomic) NSColor *textColor; -@property (readwrite, nonatomic) NSColor *invertedTextColor; - -//Cell sizing and padding -- (void) setSplitVerticalSpacing:(int) inSpacing; -- (void) setSplitVerticalPadding:(int) inPadding; -@property (readonly, nonatomic) NSSize cellSize; -@property (readonly, nonatomic) CGFloat cellWidth; -@property (readwrite, nonatomic) CGFloat rightSpacing; -@property (readwrite, nonatomic) CGFloat leftSpacing; -@property (readwrite, nonatomic) CGFloat topSpacing; -@property (readwrite, nonatomic) CGFloat bottomSpacing; -@property (readwrite, nonatomic) CGFloat rightPadding; -@property (readwrite, nonatomic) CGFloat leftPadding; -@property (readwrite, nonatomic) CGFloat topPadding; -@property (readwrite, nonatomic) CGFloat bottomPadding; -@property (readwrite, nonatomic) CGFloat indentation; - -//Drawing -- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; -- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; -- (void)_drawHighlightWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; -- (void)drawSelectionWithFrame:(NSRect)rect; -- (void)drawBackgroundWithFrame:(NSRect)rect; -- (void)drawContentWithFrame:(NSRect)rect; -- (void)drawDropHighlightWithFrame:(NSRect)rect; -@property (weak, readonly, nonatomic) NSAttributedString *displayName; -@property (readonly, nonatomic) NSSize displayNameSize; -- (NSRect)drawDisplayNameWithFrame:(NSRect)inRect; -@property (weak, readonly, nonatomic) NSString *labelString; -@property (weak, readonly, nonatomic) NSMutableDictionary *labelAttributes; -@property (weak, readonly, nonatomic) NSDictionary *additionalLabelAttributes; -@property (readonly, nonatomic) BOOL cellIsSelected; -@property (readonly, nonatomic) BOOL drawGridBehindCell; -@property (weak, readonly, nonatomic) NSColor *backgroundColor; - -@property (readwrite, nonatomic) BOOL shouldShowAlias; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContact.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContact.h deleted file mode 100644 index 3d6689f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContact.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -#define KEY_AB_UNIQUE_ID @"ABUniqueID" - -@class ABPerson, AIListGroup, AIMetaContact; - -@interface AIListContact : AIListObject { - AIAccount *account; - AIMetaContact *metaContact; - NSMutableSet *m_remoteGroupNames; - NSString *internalUniqueObjectID; - - // Former properties - NSColor *textColor; - NSInteger idle; - - NSString *formattedUID; -} - -- (id)initWithUID:(NSString *)inUID account:(AIAccount *)inAccount service:(AIService *)inService; -- (id)initWithUID:(NSString *)inUID service:(AIService *)inService; -@property (unsafe_unretained, readonly, nonatomic) idcontainingObject __attribute__((deprecated)); -@property (readwrite, copy, nonatomic) NSSet *remoteGroupNames; -@property (readonly, nonatomic) NSUInteger countOfRemoteGroupNames; -@property (weak, readonly, nonatomic) NSSet *remoteGroups; -- (void) addRemoteGroupName:(NSString *)name; -- (void) removeRemoteGroupName:(NSString *)name; - -- (void)setUID:(NSString *)inUID; -@property (readonly, nonatomic) AIAccount *account; -- (NSString *)internalUniqueObjectID; -+ (NSString *)internalUniqueObjectIDForService:(AIService *)inService account:(AIAccount *)inAccount UID:(NSString *)inUID; -- (void)restoreGrouping; - -@property (weak, readonly, nonatomic) AIListContact *parentContact; //This needs renaming. It's the 'topmost' contact, either self or meta -@property (readonly, nonatomic, weak) AIMetaContact *metaContact; - -@property (weak, readonly, nonatomic) NSString *ownDisplayName; -@property (weak, readonly, nonatomic) NSString *ownPhoneticName; -@property (weak, readonly, nonatomic) NSString *serversideDisplayName; - -@property (readonly, nonatomic) BOOL canJoinMetaContacts; - -@property (readonly, nonatomic) BOOL existsServerside; //Metas and Bookmarks (among others?) have no serverside representation - -@property (readonly, nonatomic) BOOL isIntentionallyNotAStranger; - -@property (readonly, nonatomic) AIEncryptedChatPreference encryptedChatPreferences; - -- (void)setIsMobile:(BOOL)isMobile notify:(NotifyTiming)notify; -- (void)setOnline:(BOOL)online notify:(NotifyTiming)notify silently:(BOOL)silent; -- (void)setSignonDate:(NSDate *)signonDate notify:(NotifyTiming)notify; -- (NSDate *)signonDate; -- (void)setIsBlocked:(BOOL)yesOrNo updateList:(BOOL)addToPrivacyLists; -- (void)setIsAllowed:(BOOL)yesOrNo updateList:(BOOL)addToPrivacyLists; -- (void)setIsOnPrivacyList:(BOOL)yesOrNo updateList:(BOOL)addToPrivacyLists privacyType:(AIPrivacyType)privType; - -- (void)setIdle:(BOOL)isIdle sinceDate:(NSDate *)idleSinceDate notify:(NotifyTiming)notify; -- (void)setServersideIconData:(NSData *)iconData notify:(NotifyTiming)notify; - -- (void)setWarningLevel:(NSInteger)warningLevel notify:(NotifyTiming)notify; -- (NSInteger)warningLevel; - -- (void)setProfileArray:(NSArray *)array notify:(NotifyTiming)notify; -- (void)setProfile:(NSAttributedString *)profile notify:(NotifyTiming)notify; -- (NSArray *)profileArray; -- (NSAttributedString *)profile; - -- (void)setServersideAlias:(NSString *)alias - silently:(BOOL)silent; - -- (NSAttributedString *)contactListStatusMessage; - -- (NSWritingDirection)baseWritingDirection; -- (void)setBaseWritingDirection:(NSWritingDirection)direction; - -- (ABPerson *)addressBookPerson; -- (void)setAddressBookPerson:(ABPerson *)inPerson; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleCell.h deleted file mode 100644 index ffc8db0..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleCell.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIListContactBubbleCell : AIListContactCell { - NSBezierPath *lastBackgroundBezierPath; - BOOL outlineBubble; - BOOL drawWithGradient; - float outlineBubbleLineWidth; -} - -- (NSRect)bubbleRectForFrame:(NSRect)rect; - -- (void)setOutlineBubble:(BOOL)flag; -- (void)setOutlineBubbleLineWidth:(float)inWidth; - -- (void)setDrawWithGradient:(BOOL)flag; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleToFitCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleToFitCell.h deleted file mode 100644 index 181bc63..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactBubbleToFitCell.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIListContactBubbleToFitCell : AIListContactBubbleCell { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactCell.h deleted file mode 100644 index ccbffea..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactCell.h +++ /dev/null @@ -1,127 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -//User Icon -#define USER_ICON_LEFT_PAD 2 -#define USER_ICON_RIGHT_PAD 2 - -//Status icon -#define STATUS_ICON_LEFT_PAD 2 -#define STATUS_ICON_RIGHT_PAD 2 - -//Service icon -#define SERVICE_ICON_LEFT_PAD 2 -#define SERVICE_ICON_RIGHT_PAD 2 - -#define TEXT_WITH_IMAGES_LEFT_PAD 2 -#define TEXT_WITH_IMAGES_RIGHT_PAD 2 - -@interface AIListContactCell : AIListCell { - BOOL userIconVisible; - BOOL extendedStatusVisible; - BOOL statusIconsVisible; - BOOL serviceIconsVisible; - - BOOL statusMessageVisible; - BOOL idleTimeVisible; - - NSSize userIconSize; - NSInteger userIconRoundingRadius; - CGFloat statusFontHeight; - - BOOL backgroundColorIsStatus; - BOOL backgroundColorIsEvents; - BOOL shouldUseContactTextColors; - - LIST_POSITION userIconPosition; - LIST_POSITION statusIconPosition; - LIST_POSITION serviceIconPosition; - BOOL idleTimeIsBelow; - BOOL statusMessageIsBelow; - BOOL useStatusMessageAsExtendedStatus; - BOOL useAliasesOnNonParentContacts; - - CGFloat backgroundOpacity; - - NSFont *statusFont; - NSColor *statusColor; - - NSDictionary *_statusAttributes; - NSMutableDictionary *_statusAttributesInverted; -} - -//Status Text -- (void)setStatusFont:(NSFont *)inFont; -- (NSFont *)statusFont; -- (NSDictionary *)statusAttributes; -- (NSDictionary *)statusAttributesInverted; -- (void)setTextAlignment:(NSTextAlignment)inAlignment; -- (void)setStatusColor:(NSColor *)inColor; -- (NSColor *)statusColor; - -//Display options -- (void)setUserIconVisible:(BOOL)inShowIcon; -- (BOOL)userIconVisible; -- (void)setUserIconSize:(NSInteger)inSize; -- (CGFloat)userIconSize; - -- (void)setExtendedStatusVisible:(BOOL)inShowStatus; -- (BOOL)extendedStatusVisible; - -- (void)setStatusIconsVisible:(BOOL)inShowStatus; -- (BOOL)statusIconsVisible; - -- (void)setServiceIconsVisible:(BOOL)inShowService; -- (BOOL)serviceIconsVisible; - -- (void)setIdleTimeIsBelowName:(BOOL)isBelow; -- (void)setIdleTimeIsVisible:(BOOL)isVisible; -- (void)setStatusMessageIsBelowName:(BOOL)isBelow; -- (void)setStatusMessageIsVisible:(BOOL)isVisible; - -- (void)setUserIconPosition:(LIST_POSITION)inPosition; -- (void)setStatusIconPosition:(LIST_POSITION)inPosition; -- (void)setServiceIconPosition:(LIST_POSITION)inPosition; -- (void)setBackgroundOpacity:(CGFloat)inOpacity; -- (CGFloat)backgroundOpacity; -- (void)setBackgroundColorIsStatus:(BOOL)isStatus; -- (void)setBackgroundColorIsEvents:(BOOL)isEvents; -- (void)setShouldUseContactTextColors:(BOOL)flag; -- (void)setUseStatusMessageAsExtendedStatus:(BOOL)flag; - -//Drawing -- (void)drawContentWithFrame:(NSRect)rect; -- (void)drawBackgroundWithFrame:(NSRect)rect; -- (NSRect)drawUserIconInRect:(NSRect)inRect position:(IMAGE_POSITION)position; -- (NSRect)drawStatusIconInRect:(NSRect)rect position:(IMAGE_POSITION)position; -- (NSRect)drawServiceIconInRect:(NSRect)rect position:(IMAGE_POSITION)position; -- (NSRect)drawUserExtendedStatusInRect:(NSRect)rect withMessage:(NSString *)string drawUnder:(BOOL)drawUnder; -- (NSColor *)labelColor; -- (NSColor *)textColor; -- (NSImage *)userIconImage; -- (NSImage *)statusImage; -- (NSImage *)serviceImage; -//- (BOOL)drawStatusBelowLabelInRect:(NSRect)rect; -- (float)imageOpacityForDrawing; - -// Should not parent contacts have their aliases shown? -- (void)setUseAliasesOnNonParentContacts:(BOOL)inFlag; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactGroupChatCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactGroupChatCell.h deleted file mode 100644 index 1023ec5..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactGroupChatCell.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ -#import - -@class AIGroupChat; - -@interface AIListContactGroupChatCell : AIListContactCell { - AIGroupChat *chat; -} - -@property (readwrite, nonatomic) AIGroupChat *chat; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactMockieCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactMockieCell.h deleted file mode 100644 index feaa3c6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListContactMockieCell.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIListContactMockieCell : AIListContactCell { - NSBezierPath *lastBackgroundBezierPath; -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroup.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroup.h deleted file mode 100644 index 8f8aed1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroup.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AISortController, AIContactList; - -@interface AIListGroup : AIListObject { - NSMutableArray *_visibleObjects; - NSMutableArray *_containedObjects; //Manually ordered array of contents - BOOL expanded; //Exanded/Collapsed state of this object - BOOL loadedExpanded; -} - -- (id)initWithUID:(NSString *)inUID; - -//Object Storage -- (AIListObject *)objectWithService:(AIService *)inService UID:(NSString *)inUID; - -//Sorting (PRIVATE: For contact controller only) -- (void)sortListObject:(AIListObject *)inObject; -- (void)sort; - -//Visibility -@property (readonly, nonatomic) NSUInteger visibleCount; - -@property (weak, readonly, nonatomic) AIContactList *contactList; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleCell.h deleted file mode 100644 index 064e182..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleCell.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIListGroupBubbleCell : AIListGroupCell { - BOOL outlineBubble; - BOOL drawBubble; - - float outlineBubbleLineWidth; -} - -- (NSRect)bubbleRectForFrame:(NSRect)rect; -- (void)setOutlineBubble:(BOOL)flag; -- (void)setOutlineBubbleLineWidth:(float)inWidth; - -//This is the inverse of drawBubble so a default of NO will draw the bubble -- (void)setHideBubble:(BOOL)flag; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleToFitCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleToFitCell.h deleted file mode 100644 index 6640ebc..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupBubbleToFitCell.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface AIListGroupBubbleToFitCell : AIListGroupBubbleCell { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupCell.h deleted file mode 100644 index 097c5aa..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupCell.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIGradient; - -@interface AIListGroupCell : AIListCell { - NSColor *shadowColor; - NSColor *backgroundColor; - NSColor *gradientColor; - BOOL drawsBackground; - BOOL drawsGradientEdges; - NSLayoutManager *layoutManager; - - NSImage *_gradient; - NSSize _gradientSize; -} - -- (CGFloat)flippyIndent; -- (void)setShadowColor:(NSColor *)inColor; -- (NSColor *)shadowColor; -- (NSRect)drawGroupCountWithFrame:(NSRect)inRect; -- (void)setBackgroundColor:(NSColor *)inBackgroundColor gradientColor:(NSColor *)inGradientColor; -- (void)setDrawsBackground:(BOOL)inValue; -- (void)setDrawsGradientEdges:(BOOL)inValue; -- (NSImage *)cachedGradient:(NSSize)inSize; -- (void)drawBackgroundGradientInRect:(NSRect)inRect; -- (NSGradient *)backgroundGradient; -- (void)flushGradientCache; -- (NSColor *)flippyColor; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupMockieCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupMockieCell.h deleted file mode 100644 index 0cc943d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListGroupMockieCell.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define MOCKIE_RADIUS 6 //Radius of the rounded mockie corners - -typedef enum { - AIGroupCollapsed = 0, - AIGroupExpanded -} AIGroupState; -#define NUMBER_OF_GROUP_STATES 2 - -@interface AIListGroupMockieCell : AIListGroupCell { - NSImage *_mockieGradient[NUMBER_OF_GROUP_STATES]; - NSSize _mockieGradientSize[NUMBER_OF_GROUP_STATES]; -} - -- (id)copyWithZone:(NSZone *)zone; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListObject.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListObject.h deleted file mode 100644 index 4ca88cc..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListObject.h +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIListObject, AIStatus, AIService, AIMutableOwnerArray, AIListGroup; - -#define KEY_ORDER_INDEX @"Order Index" -#define KEY_IS_BLOCKED @"isBlocked" - -#define KEY_FORMATTED_UID @"FormattedUID" - -typedef enum { - AIAvailableStatus = 'avaL', - AIAwayStatus = 'awaY', - AIIdleStatus = 'idlE', - AIAwayAndIdleStatus = 'aYiE', - AIOfflineStatus = 'offL', - AIUnknownStatus = 'unkN' -} AIStatusSummary; - -typedef enum { - AIGroupChatNone = 0x0000, /**< No flags */ - AIGroupChatVoice = 0x0001, /**< Voiced user or "Participant" */ - AIGroupChatHalfOp = 0x0002, /**< Half-op */ - AIGroupChatOp = 0x0004, /**< Channel Op or Moderator */ - AIGroupChatFounder = 0x0008, /**< Channel Founder */ - AIGroupChatTyping = 0x0010, /**< Currently typing */ - AIGroupChatAway = 0x0020 /**< Currently away */ -} AIGroupChatFlags; - -@protocol AIContainingObject - -@property (readonly, copy, nonatomic) NSArray *visibleContainedObjects; -@property (readonly, copy, nonatomic) NSArray *containedObjects; -- (NSUInteger) countOfContainedObjects; -@property (readonly, nonatomic) NSArray *uniqueContainedObjects; - -@property (readonly, nonatomic) NSString *contentsBasedIdentifier; - -- (BOOL)containsObject:(AIListObject *)inObject; - -/*! - * As NSArray's -objectAtIndex:, except that it only looks at visible objects contained in this object - */ -- (AIListObject *)visibleObjectAtIndex:(NSUInteger)index; - -/*! - * As NSArray's -indexOfObject:, except that it looks at visible objects contained in this object - */ -- (NSUInteger)visibleIndexOfObject:(AIListObject *)object; - - -- (AIListObject *)objectWithService:(AIService *)inService UID:(NSString *)inUID; - -@property (readonly, nonatomic) float smallestOrder; -@property (readonly, nonatomic) float largestOrder; -- (void)listObject:(AIListObject *)listObject didSetOrderIndex:(float)inOrderIndex; -- (float)orderIndexForObject:(AIListObject *)listObject; - -- (void)removeObjectAfterAccountStopsTracking:(AIListObject *)inObject; - -@property (readwrite, nonatomic, getter=isExpanded) BOOL expanded; -@property (readonly, nonatomic, getter=isExpandable) BOOL expandable; -@property (readonly, nonatomic) NSUInteger visibleCount; -- (BOOL)canContainObject:(id)obj; - -- (BOOL)addObject:(AIListObject *)inObject; -- (void)removeObject:(AIListObject *)inObject; - -@end - -@interface AIListObject : ESObjectWithProperties { - AIService *__weak service; - - NSString *UID; - NSString *internalObjectID; - - //Grouping, Manual ordering - NSMutableSet *m_groups; //The AIContainingObjects that this object is in - - float cachedSmallestOrder; - float cachedLargestOrder; - - BOOL isOnline; - - // Former properties - NSAttributedString *listObjectStatusMessage; - - NSString *webKitUserIconPath; -} - -- (id)initWithUID:(NSString *)inUID service:(AIService *)inService; - -- (void)object:(id)inObject didChangeValueForProperty:(NSString *)key notify:(NotifyTiming)notify; -- (void)notifyOfChangedPropertiesSilently:(BOOL)silent; - -//Identifying information -@property (readonly, nonatomic) NSString *UID; -@property (readonly, weak, nonatomic) AIService *service; -@property (weak, readonly, nonatomic) NSString *internalObjectID; -+ (NSString *)internalObjectIDForServiceID:(NSString *)inServiceID UID:(NSString *)inUID; - -//Visibility -@property (readwrite, nonatomic) BOOL alwaysVisible; - -//Grouping -//Not recommended for most uses. Use -groups and -metaContact instead unless you really need both -@property (weak, readonly, nonatomic) NSSet *containingObjects; -@property (readonly, copy, nonatomic) NSSet *groups; -- (void)removeContainingGroup:(AIListGroup *)group; -- (void)addContainingGroup:(AIListGroup *)group; -- (void)removeFromGroup:(AIListObject *)group; - -//Display -@property (weak, readonly, nonatomic) NSString *formattedUID; -- (void)setFormattedUID:(NSString *)inFormattedUID notify:(NotifyTiming)notify; -@property (weak, readonly, nonatomic) NSString *longDisplayName; - -//Prefs -- (void)setPreference:(id)value forKey:(NSString *)inKey group:(NSString *)groupName; -- (void)setPreferences:(NSDictionary *)prefs inGroup:(NSString *)group; -- (id)preferenceForKey:(NSString *)inKey group:(NSString *)groupName; -@property (weak, readonly, nonatomic) NSString *pathToPreferences; - -//Key-Value pairing -@property (readonly, nonatomic) BOOL online; - -@property (weak, readonly, nonatomic) NSString *statusName; -@property (readonly, nonatomic) AIStatusType statusType; -- (void)setStatusWithName:(NSString *)statusName statusType:(AIStatusType)statusType notify:(NotifyTiming)notify; -@property (weak, readonly, nonatomic) NSAttributedString *statusMessage; -@property (weak, readonly, nonatomic) NSString *statusMessageString; -- (void)setStatusMessage:(NSAttributedString *)statusMessage notify:(NotifyTiming)notify; -- (void)setBaseAvailableStatusAndNotify:(NotifyTiming)notify; -@property (readonly, nonatomic) AIStatusSummary statusSummary; - -@property (readonly, nonatomic) BOOL soundsAreMuted; - -@property (readonly, nonatomic) BOOL isStranger; -@property (readonly, nonatomic) BOOL isMobile; -@property (readonly, nonatomic) BOOL isBlocked; - -@property (readwrite, nonatomic, strong) NSString *displayName; - -@property (weak, readonly, nonatomic) NSString *phoneticName; - -@property (readwrite, nonatomic, strong) NSString *notes; - -@property (readonly, nonatomic) NSInteger idleTime; - -@property (unsafe_unretained, readonly, nonatomic) NSImage *userIcon; -@property (unsafe_unretained, readonly, nonatomic) NSImage *menuIcon; -@property (unsafe_unretained, readonly, nonatomic) NSImage *statusIcon; -@property (weak, readwrite, nonatomic) NSData *userIconData; -- (void)setUserIconData:(NSData *)inData; - -//For use only by subclasses -@property (unsafe_unretained, readonly, nonatomic) NSImage *internalUserIcon; - -//mutableOwnerArray delegate and methods -- (void)listObject:(AIListObject *)listObject mutableOwnerArray:(AIMutableOwnerArray *)inArray didSetObject:(id)anObject withOwner:(AIListObject *)inOwner priorityLevel:(float)priority; - -//Comparison -- (NSComparisonResult)compare:(AIListObject *)other; - -/*! - * These methods are part of the AIContainingObject protocol - * but are implemented by AIListObject (which does not conform to the protocol) for the convenience - * of subclasses. - */ -@property (readonly, nonatomic) float smallestOrder; -@property (readonly, nonatomic) float largestOrder; -- (void)listObject:(AIListObject *)listObject didSetOrderIndex:(float)inOrderIndex; -- (float)orderIndexForObject:(AIListObject *)listObject; -- (void) moveContainedObject:(AIListObject *)object toIndex:(NSInteger)index; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIListOutlineView.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIListOutlineView.h deleted file mode 100644 index ddecc6e..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIListOutlineView.h +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import -#import - -@class AIListObject; - -typedef enum { - AINormalBackground = 0, - AITileBackground, - AIFillProportionatelyBackground, - AIFillStretchBackground -} AIBackgroundStyle; - -@interface AIListOutlineView : AIMultiCellOutlineView { - BOOL groupsHaveBackground; - BOOL updateShadowsWhileDrawing; - - NSImage *backgroundImage; - CGFloat backgroundFade; - AIBackgroundStyle backgroundStyle; - AIContactListWindowStyle windowStyle; - - NSColor *backgroundColor; - NSColor *_backgroundColorWithOpacity; - CGFloat backgroundOpacity; - - NSColor *highlightColor; - - NSColor *rowColor; - NSColor *_rowColorWithOpacity; - - CGFloat minimumDesiredWidth; - BOOL desiredHeightPadding; -} - -@property (readonly, nonatomic) NSInteger desiredHeight; -@property (readonly, nonatomic) NSInteger desiredWidth; - -// Contact menu -@property (weak, readonly, nonatomic) AIListObject *listObject; -@property (weak, readonly, nonatomic) NSArray *arrayOfListObjects; -@property (weak, readonly, nonatomic) NSArray *arrayOfListObjectsWithGroups; -@property (weak, readonly, nonatomic) AIListContact *firstVisibleListContact; - -// Contacts - -/*! - * @brief Index of the first visible list contact - * - * @result The index, or -1 if no list contact is visible - */ -@property (readonly, nonatomic) int indexOfFirstVisibleListContact; - -- (void)setMinimumDesiredWidth:(CGFloat)inMinimumDesiredWidth; -- (void)setDesiredHeightPadding:(int)inPadding; - -@end - -@interface AIListOutlineView (AIListOutlineView_Drawing) - -@property (readwrite, nonatomic, retain) NSColor *backgroundColor; -@property (readwrite, nonatomic, retain) NSColor *highlightColor; -@property (readwrite, nonatomic, retain) NSColor *alternatingRowColor; - -// Shadows -- (void)setUpdateShadowsWhileDrawing:(BOOL)update; - -// Backgrounds -- (void)setBackgroundImage:(NSImage *)inImage; -- (void)setBackgroundStyle:(AIBackgroundStyle)inBackgroundStyle; -- (void)setBackgroundOpacity:(CGFloat)opacity forWindowStyle:(AIContactListWindowStyle)windowStyle; -- (void)setBackgroundFade:(CGFloat)fade; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationAssistance.h b/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationAssistance.h deleted file mode 100644 index 759698b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationAssistance.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - Note: This file is dual-licensed under the BSD "3-Clause" license and the GPL license. - - Copyright (c) 2009, Evan Schoenberg - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the - following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following - disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Adium nor the names of its contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -typedef enum { - AILOCALIZATION_MOVE_SELF = 0, - AILOCALIZATION_MOVE_ANCHOR -} AILocalizationAnchorMovementType; - -@interface NSObject (PRIVATE_AILocalizationControls) -- (void)_resizeWindow:(NSWindow *)inWindow leftBy:(CGFloat)difference; -- (void)_resizeWindow:(NSWindow *)inWindow rightBy:(CGFloat)difference; -- (void)setRightAnchorMovementType:(AILocalizationAnchorMovementType)inType; -- (void)_handleSizingWithOldFrame:(NSRect)oldFrame stringValue:(NSString *)inStringValue; -- (NSControl *)viewForSizing; -@end - -#import -#import -#import diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButton.h b/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButton.h deleted file mode 100644 index 98a0d47..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButton.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - Note: This file is dual-licensed under the BSD "3-Clause" license and the GPL license. - - Copyright (c) 2009, Evan Schoenberg - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the - following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following - disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Adium nor the names of its contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AILocalizationButton : NSButton { - NSRect originalFrame; - - IBOutlet NSWindow *window_anchorOnLeftSide; - IBOutlet NSWindow *window_anchorOnRightSide; - - IBOutlet NSView *view_anchorToLeftSide; - IBOutlet NSView *view_anchorToRightSide; - - AILocalizationAnchorMovementType rightAnchorMovementType; - BOOL alwaysMoveRightAnchoredWindow; -} - -- (void)setRightAnchorMovementType:(AILocalizationAnchorMovementType)inType; -- (void)setAlwaysMoveRightAnchoredWindow:(BOOL)inAlwaysMove; - -@end - -@interface NSButton (AILocalizationAssistance) -- (void)setLocalizedString:(NSString *)inString; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButtonCell.h b/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButtonCell.h deleted file mode 100644 index fb550a2..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationButtonCell.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - Note: This file is dual-licensed under the BSD "3-Clause" license and the GPL license. - - Copyright (c) 2009, Evan Schoenberg - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the - following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following - disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Adium nor the names of its contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AILocalizationButtonCell : NSButtonCell { - NSRect originalFrame; - - IBOutlet NSWindow *window_anchorOnLeftSide; - IBOutlet NSWindow *window_anchorOnRightSide; - - IBOutlet NSView *view_anchorToLeftSide; - IBOutlet NSView *view_anchorToRightSide; - - AILocalizationAnchorMovementType rightAnchorMovementType; - BOOL alwaysMoveRightAnchoredWindow; -} - -@end - -@interface NSButtonCell (AILocalizationAssistance) -- (void)setLocalizedString:(NSString *)inString; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationTextField.h b/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationTextField.h deleted file mode 100644 index 54c62b6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AILocalizationTextField.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - Note: This file is dual-licensed under the BSD "3-Clause" license and the GPL license. - - Copyright (c) 2009, Evan Schoenberg - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the - following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following - disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Adium nor the names of its contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AILocalizationTextField : NSTextField { - NSRect originalFrame; - - IBOutlet NSWindow *window_anchorOnLeftSide; - IBOutlet NSWindow *window_anchorOnRightSide; - - IBOutlet NSView *view_anchorToLeftSide; - IBOutlet NSView *view_anchorToRightSide; - - AILocalizationAnchorMovementType rightAnchorMovementType; - BOOL alwaysMoveRightAnchoredWindow; -} - -- (void)setAlwaysMoveRightAnchoredWindow:(BOOL)inAlwaysMove; - -@end - -@interface NSTextField (AILocalizationAssistance) -- (void)setLocalizedString:(NSString *)inString; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AILoginControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AILoginControllerProtocol.h deleted file mode 100644 index 49a2dd1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AILoginControllerProtocol.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define LOGIN_PREFERENCES_FILE_NAME @"Login Preferences" //Login preferences file name -#define LOGIN_SHOW_WINDOW @"Show Login Window" //Should hide the login window - -#define LOGIN_LAST_USER @"Last Login Name" //Last logged in user -#if defined (DEBUG_BUILD) && ! defined (RELEASE_BUILD) -# define LOGIN_LAST_USER_DEBUG @"Last Login Name-Debug"//Last logged in user - debug -#endif - -@protocol AILoginController -@property (nonatomic, readonly) NSString *userDirectory; -@property (nonatomic, readonly) NSString *currentUser; -@property (nonatomic, readonly) NSArray *userArray; - -- (void)addUser:(NSString *)inUserName; -- (void)deleteUser:(NSString *)inUserName; -- (void)renameUser:(NSString *)oldName to:(NSString *)newName; -- (void)loginAsUser:(NSString *)userName; -- (void)requestUserNotifyingTarget:(id)inTarget selector:(SEL)inSelector; -@end - diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIMediaControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIMediaControllerProtocol.h deleted file mode 100644 index 60188de..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIMediaControllerProtocol.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -typedef enum { - AIMediaTypeAudio, - AIMediaTypeVideo -} AIMediaType; - -typedef enum { - AIMediaStateWaiting = 1, /* Waiting for response */ - AIMediaStateRequested, /* Got request */ - AIMediaStateAccepted, /* Accepted call */ - AIMediaStateRejected, /* Rejected call */ -} AIMediaState; - -@class AIMedia, AIListContact, AIAccount; - -@protocol AIMediaWindowController -@property (readwrite, retain, nonatomic) AIMedia *media; -@property (readwrite, retain, nonatomic) NSView *outgoingVideo; -@property (readwrite, retain, nonatomic) NSView *incomingVideo; -@end - -@protocol AIMediaController -- (AIMedia *)mediaWithContact:(AIListContact *)contact - onAccount:(AIAccount *)account; - -- (AIMedia *)existingMediaWithContact:(AIListContact *)contact - onAccount:(AIAccount *)account; - -- (NSWindowController *)windowControllerForMedia:(AIMedia *)media; -- (void)closeMediaWindowController:(NSWindowController *)mediaWindowController; - -- (void)media:(AIMedia *)media didSetState:(AIMediaState)state; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIMenuControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIMenuControllerProtocol.h deleted file mode 100644 index 68dc029..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIMenuControllerProtocol.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define AIMenuDidChange @"AIMenuDidChange" - -/* Each of the items in this enum must correspond to an NSMenuItem which is: - * 1. Declared in the AIMenuController.h interface - * 2. Connected to AIMenuController in MainMenu.nib - * 3. Be included in the locationArray in -[AIMenuController awakeFromNib] - * - * If the menu item isn't the first in its menu, it can be connected to the Quit Adium menu item; AIMenuController will move it - * to the appropriate place. - */ -typedef enum { - LOC_Adium_About = 0, LOC_Adium_Preferences, LOC_Adium_Other, - LOC_File_New, LOC_File_Close, LOC_File_Save, LOC_File_Accounts, LOC_File_Additions, - LOC_Edit_Bottom, LOC_Edit_Links, LOC_Edit_Additions, - LOC_View_General, LOC_View_Sorting, LOC_View_Toggles, LOC_View_Counting_Toggles, LOC_View_Appearance_Toggles, LOC_View_Additions, - LOC_Display_General, LOC_Display_Jump, LOC_Display_MessageControl, - LOC_Contact_Manage, LOC_Contact_Info, LOC_Contact_Action, LOC_Contact_NegativeAction, LOC_Contact_Additions, - LOC_Status_State, LOC_Status_SocialNetworking, LOC_Status_Accounts, LOC_Status_Additions, - LOC_Format_Styles, LOC_Format_Palettes, LOC_Format_Additions, - LOC_Window_Top, LOC_Window_Commands, LOC_Window_Auxiliary, LOC_Window_Fixed, - LOC_Help_Local, LOC_Help_Web, LOC_Help_Additions, - LOC_Dock_Status -} AIMenuLocation; - -typedef enum { - Context_Group_AttachDetach,Context_Contact_AttachDetach,Context_Group_Manage,Context_Contact_Manage,Context_Contact_Action, Context_Contact_NegativeAction, - Context_Contact_Message, Context_Contact_Additions, Context_Contact_ChatAction, Context_Contact_Stranger_ChatAction, Context_Contact_ListAction, - Context_Contact_GroupChat_ParticipantAction, Context_GroupChat_Manage, Context_GroupChat_Action, - Context_Tab_Action, - Context_TextView_LinkEditing, Context_TextView_Edit -} AIContextMenuLocation; - -@class AIListObject, AIChat; - -@protocol AIMenuController -//Custom menu items -- (void)addMenuItem:(NSMenuItem *)newItem toLocation:(AIMenuLocation)location; -- (void)removeMenuItem:(NSMenuItem *)targetItem; - -- (void)delayMenuItemPostProcessing; -- (void)endDelayMenuItemPostProcessing; - -//Contextual menu items -- (void)addContextualMenuItem:(NSMenuItem *)newItem toLocation:(AIContextMenuLocation)location; -- (NSMenu *)contextualMenuWithLocations:(NSArray *)inLocationArray forListObject:(AIListObject *)inObject; -- (NSMenu *)contextualMenuWithLocations:(NSArray *)inLocationArray forChat:(AIChat *)inObject; -- (NSMenu *)contextualMenuWithLocations:(NSArray *)inLocationArray forListObject:(AIListObject *)inObject inChat:(AIChat *)inChat; -@property (nonatomic, readonly) AIListObject *currentContextMenuObject; -@property (nonatomic, readonly) AIChat *currentContextMenuChat; -- (NSMenu *)contextualMenuWithLocations:(NSArray *)inLocationArray; - -//Control over the italics menu item -- (void)removeItalicsKeyEquivalent; -- (void)restoreItalicsKeyEquivalent; -@end - -@interface NSObject (MenuItemUpdating) -- (void)menu:(NSMenu *)menu needsUpdateForMenuItem:(NSMenuItem *)menuItem; -@end - diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageEntryTextView.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageEntryTextView.h deleted file mode 100644 index fbafc07..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageEntryTextView.h +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -@class AIListContact, AIAccount, AIChat, AIButtonWithCursor; - -@protocol AIMessageEntryTextViewDelegate - -@optional -/*! - * @brief Should the tab key trigger an autocomplete? - */ -- (BOOL)textViewShouldTabComplete:(NSTextView *)inTextView; -- (NSRange)textView:(NSTextView *)inTextView rangeForCompletion:(NSRange)completionRange; -- (void)textViewDidCancel:(NSTextView *)inTextView; -@end - -@interface AISimpleTextView : NSView { - NSAttributedString *string; -} - -@property (readwrite, nonatomic) NSAttributedString *string; - -@end - -@interface AIMessageEntryTextView : AISendingTextView { - AIChat *chat; - - BOOL clearOnEscape; - BOOL historyEnabled; - BOOL pushPopEnabled; - BOOL homeToStartOfLine; - BOOL enableTypingNotifications; - - NSMutableArray *historyArray; - int currentHistoryLocation; - - NSMutableArray *pushArray; - BOOL pushIndicatorVisible; - AIButtonWithCursor *pushIndicator; - - NSSize lastPostedSize; - NSSize _desiredSizeCached; - BOOL resizing; - - NSView *associatedView; - - AISimpleTextView *characterCounter; - NSString *characterCounterPrefix; - NSInteger maxCharacters; - NSColor *savedTextColor; - -@protected - // Emoticons - BOOL hasEmoticonsMenu; - AIButtonWithCursor *emoticonsMenuButton; -} - -@property (readwrite, unsafe_unretained, nonatomic) id delegate; - -// Configure -@property (readwrite, nonatomic) BOOL clearOnEscape; -@property (readwrite, nonatomic) BOOL homeToStartOfLine; -@property (readwrite, nonatomic) NSView *associatedView; - -// Context -@property (readwrite, retain, nonatomic) AIChat *chat; -@property (readonly, nonatomic) AIListContact *listObject; - -// History -@property (readwrite, nonatomic) BOOL historyEnabled; - -// Emoticons -@property (assign) BOOL hasEmoticonsMenu; -@property (retain) NSButton *emoticonsMenuButton; - -// Adium Text Entry -- (void)setAttributedString:(NSAttributedString *)inAttributedString; -- (void)setString:(NSString *)string; -- (void)setTypingAttributes:(NSDictionary *)attrs; -- (void)pasteAsPlainTextWithTraits:(id)sender; -- (void)pasteAsRichText:(id)sender; -- (NSSize)desiredSize; - -// Paging -- (void)scrollPageUp:(id)sender; -- (void)scrollPageDown:(id)sender; - -// History -- (void)historyUp; -- (void)historyDown; - -// Push and Pop -- (void)setPushPopEnabled:(BOOL)inBool; -- (void)pushContent; -- (void)popContent; -- (void)swapContent; - -// Emoticons -- (void)popUpEmoticonsMenu; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageViewEmoticonsController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageViewEmoticonsController.h deleted file mode 100644 index 1a9303b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIMessageViewEmoticonsController.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -#import - - -@class AIImageCollectionView, AIImageCollectionViewDelegate, AIMessageEntryTextView; - -/*! - * @class AIMessageViewEmoticonsController - * @brief Handles message view emoticons menu - * - * Opens a contextual (pop-up) menu, allowing to insert emoticons. - */ -@interface AIMessageViewEmoticonsController : NSObject { - AIMessageEntryTextView *textView; - NSArray *emoticons; - -@private - NSArray *emoticonTitles; - NSArray *emoticonSymbols; -} - -@property (weak) IBOutlet NSMenu *menu; -@property (weak) IBOutlet AIImageCollectionView *emoticonsCollectionView; -@property (weak) IBOutlet NSTextField *emoticonTitleLabel; -@property (weak) IBOutlet NSTextField *emoticonSymbolLabel; -@property (weak) IBOutlet NSView *alignmentView; - -@property (strong) AIMessageEntryTextView *textView; - -@property (copy) NSArray *emoticons; -@property (copy) NSArray *emoticonTitles; -@property (copy) NSArray *emoticonSymbols; - -/*! - * @brief Open the menu - * - * @param textView AIMessageEntryTextView - */ -+ (void)popUpMenuForTextView:(AIMessageEntryTextView *)textView atPoint:(NSPoint)aPoint; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIMetaContact.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIMetaContact.h deleted file mode 100644 index b98e047..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIMetaContact.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define KEY_PREFERRED_DESTINATION_CONTACT @"Preferred Destination Contact" - -@interface AIMetaContact : AIListContact { - NSNumber *objectID; - - AIListContact *_preferredContact; - NSArray *_listContacts; - NSArray *_listContactsIncludingOfflineAccounts; - - BOOL containsOnlyOneUniqueContact; - - NSMutableArray *_containedObjects; //Manually ordered array of contents - BOOL containedObjectsNeedsSort; - BOOL saveGroupingChanges; - - BOOL expanded; //Exanded/Collapsed state of this object -} - -//The objectID is unique to a meta contact and is used as the UID for purposes of AIListContact inheritance -- (id)initWithObjectID:(NSNumber *)objectID; -@property (readonly, nonatomic) NSNumber *objectID; -+ (NSString *)internalObjectIDFromObjectID:(NSNumber *)inObjectID; - -@property (weak, readonly, nonatomic) AIListContact *preferredContact; -- (AIListContact *)preferredContactWithCompatibleService:(AIService *)inService; - -- (void)updateRemoteGroupingOfContact:(AIListContact *)inListContact; - -@property (readonly, nonatomic) BOOL containsOnlyOneService; -@property (readonly, nonatomic) NSUInteger uniqueContainedObjectsCount; -- (AIListObject *)uniqueObjectAtIndex:(int)inIndex; - -@property (weak, readonly, nonatomic) NSDictionary *dictionaryOfServiceClassesAndListContacts; -@property (weak, readonly, nonatomic) NSArray *servicesOfContainedObjects; - -/* - * @brief A flat array of AIListContacts each with a different internalObjectID - * - * If multiple AIListContacts with the same UID/Service are within this metacontact (i.e. from multiple accounts), - * only one will be included in this array, and that one will be the most available of them. - * Contacts from all accounts, including offline ones, will be included. - */ -- (NSArray *)listContactsIncludingOfflineAccounts; -- (BOOL)removeObject:(AIListObject *)inObject; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPane.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPane.h deleted file mode 100644 index dd667b8..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPane.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@interface AIModularPane : NSObject { - IBOutlet NSView *view; - id plugin; - -} - -// -+ (AIModularPane *)modularPane; -+ (AIModularPane *)modularPaneForPlugin:(id)inPlugin; -- (id)initForPlugin:(id)inPlugin; -- (id)init; -- (NSComparisonResult)compare:(AIModularPane *)inPane; -- (NSView *)view; -- (void)closeView; - -//For subclasses -- (NSString *)label; -- (NSString *)nibName; -- (void)viewDidLoad; -- (void)localizePane; -- (void)viewWillClose; -- (IBAction)changePreference:(id)sender; -- (void)configureControlDimming; -- (BOOL)resizable; -- (BOOL)resizableHorizontally; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPaneCategoryView.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPaneCategoryView.h deleted file mode 100644 index 20a4acc..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIModularPaneCategoryView.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIModularPaneCategoryView : NSView { - CGFloat desiredHeight; - BOOL containsPanes; -} - -- (void)setDesiredHeight:(CGFloat)inHeight; -- (CGFloat)desiredHeight; -- (void)setPanes:(NSArray *)paneArray; -+ (CGFloat)heightForTabView:(NSTabView *)tabView; -- (BOOL)isEmpty; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIPasswordPromptController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIPasswordPromptController.h deleted file mode 100644 index d2d25c3..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIPasswordPromptController.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "AIWindowController.h" - -typedef enum { - AIPasswordPromptOKReturn = 0, - AIPasswordPromptCancelReturn -} AIPasswordPromptReturn; - -/*! - * @class AIPasswordPromptController - * - * This abstract superclass simplifies displaying a password prompt and notifying a target when the - * password is entered. - */ -@interface AIPasswordPromptController : AIWindowController { - IBOutlet NSTextField *textField_password; - IBOutlet NSButton *checkBox_savePassword; - IBOutlet NSButton *button_OK; - - NSString *password; - - SEL selector; - id target; - - id context; -} - -/*! - * @brief Designated initializer for AIPasswordPromptController - * - * @param windowNibName Nib name. - * @param password Iniital password to put in the password field. If nil, the field will be empty. - * @param inTarget Target to notify when the prompt window is closed - * @param inSelector Selector on target. Signature is - (void)passwordReturnedForConnect:(NSString *)inPassword returnCode:(AIPasswordPromptReturn)returnCode context:(id)inContext - * @param inContext Context to pass back when notifying the target. - * - * @result An AIPasswordPromptController - */ -- (id)initWithWindowNibName:(NSString *)windowNibName password:(NSString *)password notifyingTarget:(id)inTarget selector:(SEL)inSelector context:(id)inContext; -- (IBAction)cancel:(id)sender; -- (IBAction)okay:(id)sender; -- (IBAction)togglePasswordSaved:(id)sender; - -@end - -@interface AIPasswordPromptController (PRIVATE_and_Subclasses) -- (NSString *)savedPasswordKey; -- (void)windowDidLoad; -- (void)savePassword:(NSString *)password; -- (void)setTarget:(id)inTarget selector:(SEL)inSelector context:(id)inContext; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIPathUtilities.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIPathUtilities.h deleted file mode 100644 index feb6394..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIPathUtilities.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -enum { - AICachesDirectory = 400, - AIPluginsDirectory = 405, - AIContactListDirectory = 410, - AIDockIconsDirectory = 411, - AIEmoticonsDirectory = 412, - AIMessageStylesDirectory = 413, - AIScriptsDirectory = 414, - AIServiceIconsDirectory = 415, - AISoundsDirectory = 416, - AIStatusIconsDirectory = 417, - AIMenuBarIconsDirectory = 418, -}; - -enum { - AIInternalDomainMask = 0x10000, - AIAllDomainsMask = NSAllDomainsMask | AIInternalDomainMask, -}; - -NSArray *AISearchPathForDirectories(NSUInteger directory); -NSArray *AISearchPathForDirectoriesInDomainsExpanding(NSUInteger directory, NSUInteger domainMask, BOOL expandTilde); diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIPlugin.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIPlugin.h deleted file mode 100644 index 278e137..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIPlugin.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@protocol AIPlugin -- (void)installPlugin; -- (void)uninstallPlugin; -@end - -@protocol AIPluginInfo -@property (readonly, nonatomic) NSString *pluginAuthor; -@property (readonly, nonatomic) NSString *pluginVersion; -@property (readonly, nonatomic) NSString *pluginDescription; -@property (readonly, nonatomic) NSString *pluginURL; -@end - -@interface AIPlugin : NSObject { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferenceControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferenceControllerProtocol.h deleted file mode 100644 index 9db9ebd..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferenceControllerProtocol.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -//Preference groups -#define PREF_GROUP_GENERAL @"General" -#define PREF_GROUP_ACCOUNTS @"Accounts" -#define PREF_GROUP_TOOLBARS @"Toolbars" -#define PREF_GROUP_WINDOW_POSITIONS @"Window Positions" -#define PREF_GROUP_SPELLING @"Spelling" -#define OBJECT_PREFS_PATH @"ByObject" //Path to object specific preference folder -#define ACCOUNT_PREFS_PATH @"Accounts" //Path to account specific preference folder - -@class AIAdium, AIListObject; -@class AIPreferencePane, AIAdvancedPreferencePane; - -@protocol AIPreferenceController -//Preference Window -- (IBAction)showPreferenceWindow:(id)sender; -- (IBAction)closePreferenceWindow:(id)sender; -- (void)openPreferencesToCategoryWithIdentifier:(NSString *)identifier; -- (void)addPreferencePane:(AIPreferencePane *)inPane; -- (void)removePreferencePane:(AIPreferencePane *)inPane; -- (NSArray *)paneArray; -- (NSArray *)paneArrayForCategory:(AIPreferenceCategory)paneCategory; - -//Observing -- (void)registerPreferenceObserver:(id)observer forGroup:(NSString *)group; -- (void)unregisterPreferenceObserver:(id)observer; - -- (void)addObserver:(NSObject *)anObserver forKeyPath:(NSString *)keyPath options:(NSKeyValueObservingOptions)options context:(void *)context; -- (void)addObserver:(NSObject *)anObserver forKeyPath:(NSString *)keyPath ofObject:(AIListObject *)listObject options:(NSKeyValueObservingOptions)options context:(void *)context; - -- (void)informObserversOfChangedKey:(NSString *)key inGroup:(NSString *)group object:(AIListObject *)object; -- (void)delayPreferenceChangedNotifications:(BOOL)inDelay; - -//Setting Preferences -- (void)setPreference:(id)value forKey:(NSString *)key group:(NSString *)group; -- (void)setPreference:(id)value forKey:(NSString *)inKey group:(NSString *)group object:(AIListObject *)object; -- (void)setPreferences:(NSDictionary *)inPrefDict inGroup:(NSString *)group; -- (void)setPreferences:(NSDictionary *)inPrefDict inGroup:(NSString *)group object:(AIListObject *)object; - -//Retrieving Preferences -- (id)preferenceForKey:(NSString *)key group:(NSString *)group; -- (id)preferenceForKey:(NSString *)key group:(NSString *)group object:(AIListObject *)object; -- (id)preferenceForKey:(NSString *)key group:(NSString *)group objectIgnoringInheritance:(AIListObject *)object; -- (NSDictionary *)preferencesForGroup:(NSString *)group; -- (id)defaultPreferenceForKey:(NSString *)key group:(NSString *)group object:(AIListObject *)object; - -//Defaults -- (void)registerDefaults:(NSDictionary *)defaultDict forGroup:(NSString *)group; -- (void)registerDefaults:(NSDictionary *)defaultDict forGroup:(NSString *)group object:(AIListObject *)object; - -//Default download location -- (NSString *)userPreferredDownloadFolder; -- (void)setUserPreferredDownloadFolder:(NSString *)path; -@end - -@interface NSObject (AIPreferenceObserver) -- (void)preferencesChangedForGroup:(NSString *)group key:(NSString *)key - object:(AIListObject *)object preferenceDict:(NSDictionary *)prefDict firstTime:(BOOL)firstTime; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferencePane.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferencePane.h deleted file mode 100644 index 1574983..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIPreferencePane.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -//Preference Categories -typedef enum { - AIPref_General = 0, - AIPref_Appearance, - AIPref_Events, - AIPref_Advanced -} AIPreferenceCategory; - -@interface AIPreferencePane : AIModularPane { - -} - -+ (AIPreferencePane *)preferencePane; -+ (AIPreferencePane *)preferencePaneForPlugin:(id)inPlugin; -- (AIPreferenceCategory)category; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIProxyListObject.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIProxyListObject.h deleted file mode 100644 index 1be35f4..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIProxyListObject.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class ESObjectWithProperties, MAZeroingWeakRef; -@protocol AIContainingObject; - -@interface AIProxyListObject : NSObject { - AIListObject *__weak listObject; - ESObjectWithProperties *__weak containingObject; - NSString *key; - NSString *cachedDisplayNameString; - NSAttributedString *cachedDisplayName; - NSDictionary *cachedLabelAttributes; - NSSize cachedDisplayNameSize; - NSString *nick; -} -@property (nonatomic, copy) NSDictionary *cachedLabelAttributes; -@property (nonatomic, strong) NSString *cachedDisplayNameString; -@property (nonatomic, strong) NSAttributedString *cachedDisplayName; -@property (nonatomic) NSSize cachedDisplayNameSize; - -@property (nonatomic, strong) NSString *key; -@property (nonatomic, strong) NSString *nick; - -@property (nonatomic, weak) AIListObject *listObject; -@property (nonatomic, weak) ESObjectWithProperties * containingObject; - -+ (AIProxyListObject *)proxyListObjectForListObject:(ESObjectWithProperties *)inListObject - inListObject:(ESObjectWithProperties *)containingObject; - -+ (AIProxyListObject *)existingProxyListObjectForListObject:(ESObjectWithProperties *)inListObject - inListObject:(ESObjectWithProperties *)inContainingObject; - -+ (AIProxyListObject *)proxyListObjectForListObject:(AIListObject *)inListObject - inListObject:(ESObjectWithProperties *)inContainingObject - withNick:(NSString *)inNick; - -/*! - * @brief Called when an AIListObject is done with an AIProxyListObject to remove it from the global dictionary - */ -+ (void)releaseProxyObject:(AIProxyListObject *)proxyObject; - -/*! - * @brief Clear out cached display information; should be called when the AIProxyListObject may be used later - */ -- (void)flushCache; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIService.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIService.h deleted file mode 100644 index a437a7e..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIService.h +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccountViewController, DCJoinChatViewController; - -//Service importance, used to group and order services -typedef enum { - AIServicePrimary, - AIServiceSecondary, - AIServiceUnsupported -} AIServiceImportance; - -@interface AIService : NSObject { - -} - -/*! - * @brief Called one time to register this service with Adium - * - * This is typically called by the principal class of a service plugin - */ -+ (void)registerService; - -//Account Creation -- (id)accountWithUID:(NSString *)inUID internalObjectID:(NSString *)inInternalObjectID; -@property (unsafe_unretained, readonly, nonatomic) Class accountClass; -@property (weak, readonly, nonatomic) AIAccountViewController *accountViewController; -@property (unsafe_unretained, readonly, nonatomic) DCJoinChatViewController *joinChatView; - -//Service Description -@property (weak, readonly, nonatomic) NSString *serviceCodeUniqueID; -@property (weak, readonly, nonatomic) NSString *serviceID; -@property (weak, readonly, nonatomic) NSString *serviceClass; -@property (weak, readonly, nonatomic) NSString *shortDescription; -@property (weak, readonly, nonatomic) NSString *longDescription; -@property (weak, readonly, nonatomic) NSString *userNameLabel; -@property (weak, readonly, nonatomic) NSString *contactUserNameLabel; -@property (weak, readonly, nonatomic) NSString *UIDPlaceholder; -@property (weak, readonly, nonatomic) NSURL *serviceAccountSetupURL; -@property (weak, readonly, nonatomic) NSString *accountSetupLabel; -@property (readonly, nonatomic) AIServiceImportance serviceImportance; -- (NSImage *)defaultServiceIconOfType:(AIServiceIconType)iconType; -- (NSString *)pathForDefaultServiceIconOfType:(AIServiceIconType)iconType; - -//Service Properties -@property (weak, readonly, nonatomic) NSCharacterSet *allowedCharacters; -@property (weak, readonly, nonatomic) NSCharacterSet *allowedCharactersForUIDs; -@property (weak, readonly, nonatomic) NSCharacterSet *allowedCharactersForAccountName; -@property (weak, readonly, nonatomic) NSCharacterSet *ignoredCharacters; -@property (readonly, nonatomic) NSUInteger allowedLength; -@property (readonly, nonatomic) NSUInteger allowedLengthForUIDs; -@property (readonly, nonatomic) NSUInteger allowedLengthForAccountName; -@property (readonly, nonatomic) BOOL caseSensitive; -@property (readonly, nonatomic) BOOL canCreateGroupChats; -@property (readonly, nonatomic) BOOL canRegisterNewAccounts; -@property (readonly, nonatomic) BOOL supportsProxySettings; -@property (readonly, nonatomic) BOOL supportsPassword; -@property (readonly, nonatomic) BOOL requiresPassword; -@property (readonly, nonatomic) BOOL isSocialNetworkingService; -@property (weak, readonly, nonatomic) NSString *defaultUserName; -@property (readonly, nonatomic) BOOL isHidden; - -//Utilities -- (NSString *)normalizeUID:(NSString *)inUID removeIgnoredCharacters:(BOOL)removeIgnored; -- (NSString *)normalizeChatName:(NSString *)inChatName; - --(void) registerStatuses; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceIcons.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceIcons.h deleted file mode 100644 index db640e0..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceIcons.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -//Notifications -#define AIServiceIconSetDidChangeNotification @"AIServiceIconSetDidChangeNotification" - -typedef enum { - AIServiceIconSmall = 0, //Interface small - AIServiceIconLarge, //Interface large - AIServiceIconList //Contact List -} AIServiceIconType; -#define NUMBER_OF_SERVICE_ICON_TYPES 3 - -typedef enum { - AIIconNormal = 0, - AIIconFlipped -} AIIconDirection; -#define NUMBER_OF_ICON_DIRECTIONS 2 - -@class AIService, AIListObject; - -@interface AIServiceIcons : NSObject { - -} - -+ (NSImage *)serviceIconForObject:(AIListObject *)inObject type:(AIServiceIconType)iconType direction:(AIIconDirection)iconDirection; -+ (NSImage *)serviceIconForService:(AIService *)service type:(AIServiceIconType)iconType direction:(AIIconDirection)iconDirection; -+ (NSImage *)serviceIconForServiceID:(NSString *)serviceID type:(AIServiceIconType)iconType direction:(AIIconDirection)iconDirection; -+ (NSString *)pathForServiceIconForServiceID:(NSString *)serviceID type:(AIServiceIconType)iconType; -+ (BOOL)setActiveServiceIconsFromPath:(NSString *)inPath; - -+ (NSImage *)previewMenuImageForIconPackAtPath:(NSString *)inPath; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceMenu.h deleted file mode 100644 index 05ed637..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIServiceMenu.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIService; - -@interface AIServiceMenu : NSObject { - -} - -+ (NSMenu *)menuOfServicesWithTarget:(id)target activeServicesOnly:(BOOL)activeServicesOnly - longDescription:(BOOL)longDescription format:(NSString *)format; - -@end - -@interface NSObject (AIServiceMenuTarget) -- (BOOL)serviceMenuShouldIncludeService:(AIService *)service; -- (IBAction)selectServiceType:(id)sender; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AISharedAdium.h b/telegram-adium/Adium.framework/Versions/A/Headers/AISharedAdium.h deleted file mode 100644 index aac8b04..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AISharedAdium.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -extern id adium; - -void setSharedAdium(id shared); diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AISocialNetworkingStatusMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AISocialNetworkingStatusMenu.h deleted file mode 100644 index 15cb124..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AISocialNetworkingStatusMenu.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIAccount; - -@interface AISocialNetworkingStatusMenu : NSObject { - -} - -+ (NSMenuItem *)socialNetworkingSubmenuItem; -+ (NSMenu *)socialNetworkingSubmenuForAccount:(AIAccount *)inAccount; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AISortController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AISortController.h deleted file mode 100644 index 8c76249..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AISortController.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AIListObject, AIAdium; -@protocol AIContainingObject; - -typedef NSComparisonResult(*sortfunc)(id, id, BOOL, id); -typedef struct { - sortfunc function; -__unsafe_unretained id container; -} SortContext; - -#define PREF_GROUP_CONTACT_SORTING @"Sorting" - -@interface AISortController : NSSortDescriptor { - NSSet *statusKeysRequiringResort; - NSSet *attributeKeysRequiringResort; - BOOL alwaysSortGroupsToTop; - - sortfunc sortFunction; - - IBOutlet NSView *configureView; - - BOOL becameActiveFirstTime; -} - -+ (void) setActiveSortController:(AISortController *)newSortController; -+ (AISortController *)activeSortController; -+ (void) registerSortController:(AISortController *)newSortController; -+ (NSArray *)availableSortControllers; - -- (BOOL)shouldSortForModifiedStatusKeys:(NSSet *)inModifiedKeys; -- (BOOL)shouldSortForModifiedAttributeKeys:(NSSet *)inModifiedKeys; -@property (readonly, nonatomic) BOOL alwaysSortGroupsToTopByDefault; -- (int)indexForInserting:(AIListObject *)inObject intoObjects:(NSArray *)inObjects inContainer:(id)container; -@property (weak, readonly, nonatomic) NSView *configureView; -- (void)forceIgnoringOfGroups:(BOOL)shouldForce; -@property (readonly, nonatomic) BOOL canSortManually; - -//For subclasses to override -@property (weak, readonly, nonatomic) NSString *identifier; -@property (weak, readonly, nonatomic) NSString *displayName; -@property (weak, readonly, nonatomic) NSSet *statusKeysRequiringResort; -@property (weak, readonly, nonatomic) NSSet *attributeKeysRequiringResort; -@property (readonly, nonatomic) sortfunc sortFunction; -@property (weak, readonly, nonatomic) NSString *configureSortMenuItemTitle; -@property (weak, readonly, nonatomic) NSString *configureSortWindowTitle; -@property (weak, readonly, nonatomic) NSString *configureNibName; -- (void)viewDidLoad; -- (IBAction)changePreference:(id)sender; -- (void)didBecomeActive; -- (void)didBecomeActiveFirstTime; - -@end - -@interface NSArray (AdiumSorting) -- (NSArray *) sortedArrayUsingActiveSortControllerInContainer:(id)container; -@end - -@interface NSMutableArray (AdiumSorting) -- (void) sortUsingActiveSortControllerInContainer:(id)container; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AISoundControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AISoundControllerProtocol.h deleted file mode 100644 index 2e8b636..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AISoundControllerProtocol.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -#define PREF_GROUP_SOUNDS @"Sounds" -#define KEY_SOUND_CUSTOM_VOLUME_LEVEL @"Custom Volume Level" - -@protocol AISoundController -//Sound -- (void)playSoundAtPath:(NSString *)inPath; -- (void)stopPlayingSoundAtPath:(NSString *)inPath; - -//Speech -- (void)speakDemoTextForVoice:(NSString *)voiceString withPitch:(float)pitch andRate:(float)rate; -@property (nonatomic, readonly) float defaultRate; -@property (nonatomic, readonly) float defaultPitch; -- (void)speakText:(NSString *)text; -- (void)speakText:(NSString *)text withVoice:(NSString *)voiceString pitch:(float)pitch rate:(float)rate; - -//Soundsets -@property (nonatomic, readonly) NSArray *soundSets; - -- (void)setSoundsAreMuted:(BOOL)muted; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AISoundSet.h b/telegram-adium/Adium.framework/Versions/A/Headers/AISoundSet.h deleted file mode 100644 index 77bfb22..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AISoundSet.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AISoundSet : NSObject { - NSString *name; - NSString *info; - NSDictionary *sounds; - - NSString *sourcePath; -} - -+ (id)soundSetWithContentsOfFile:(NSString *)inPath; -@property (readonly, nonatomic) NSString *name; -@property (readonly, nonatomic) NSString *info; -@property (readonly, nonatomic) NSDictionary *sounds; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatus.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatus.h deleted file mode 100644 index 567bc4b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatus.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -//Keys used for storage and retrieval -#define STATUS_STATUS_MESSAGE @"Status Message NSAttributedString" -#define STATUS_HAS_AUTO_REPLY @"Has AutoReply" -#define STATUS_AUTO_REPLY_IS_STATUS_MESSAGE @"AutoReply is Status Message" -#define STATUS_AUTO_REPLY_MESSAGE @"AutoReply Message NSAttributedString" -#define STATUS_STATUS_NAME @"Status Name" -#define STATUS_SHOULD_FORCE_INITIAL_IDLE_TIME @"Should Force Initial Idle Time" -#define STATUS_FORCED_INITIAL_IDLE_TIME @"Forced Initial Idle Time" -#define STATUS_INVISIBLE @"Invisible" -#define STATUS_MUTABILITY_TYPE @"Mutability Type" -#define STATUS_MUTE_SOUNDS @"Mute Sounds" -#define STATUS_SILENCE_GROWL @"Silence Growl" -#define STATUS_SPECIAL_TYPE @"Special Type" - -typedef enum { - AINoSpecialStatusType = 0, - AINowPlayingSpecialStatusType -} AISpecialStatusType; - -@interface AIStatus : AIStatusItem { - NSString *filteredStatusMessage; -} - -+ (AIStatus *)status; -+ (AIStatus *)statusWithDictionary:(NSDictionary *)inDictionary; -+ (AIStatus *)statusOfType:(AIStatusType)inStatusType; - -@property (readwrite, nonatomic) NSAttributedString *statusMessage; - -@property (readwrite, nonatomic, copy) NSString *statusMessageString; - -- (void)setFilteredStatusMessage:(NSString *)inFilteredStatusMessage; - -- (NSString *)statusMessageTooltipString; - -@property (readwrite, nonatomic) NSAttributedString *autoReply; -- (void)setAutoReplyString:(NSString *)autoReplyString; - -@property (readwrite, nonatomic) BOOL hasAutoReply; -@property (readwrite, nonatomic) BOOL autoReplyIsStatusMessage; - -@property (readwrite, nonatomic) NSString *statusName; - -@property (readwrite, nonatomic) BOOL shouldForceInitialIdleTime; -@property (readwrite, nonatomic) double forcedInitialIdleTime; - -- (void)setMutabilityType:(AIStatusMutabilityType)mutabilityType; - -@property (readwrite, nonatomic) BOOL mutesSound; -@property (readwrite, nonatomic) BOOL silencesGrowl; -@property (readwrite, nonatomic) AISpecialStatusType specialStatusType; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusControllerProtocol.h deleted file mode 100644 index 97a2bf6..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusControllerProtocol.h +++ /dev/null @@ -1,148 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIStatus, AIAccount, AIStatusGroup, AIService; - -//Status State Notifications -#define AIStatusStateArrayChangedNotification @"AIStatusStateArrayChangedNotification" -#define AIStatusActiveStateChangedNotification @"AIStatusActiveStateChangedNotification" - -//Idle Notifications -#define AIMachineIsIdleNotification @"AIMachineIsIdleNotification" -#define AIMachineIsActiveNotification @"AIMachineIsActiveNotification" -#define AIMachineIdleUpdateNotification @"AIMachineIdleUpdateNotification" - -//Preferences -#define PREF_GROUP_SAVED_STATUS @"Saved Status" -#define KEY_SAVED_STATUS @"Saved Status Array" - -#define KEY_STATUS_NAME @"Status Name" -#define KEY_STATUS_DESCRIPTION @"Status Description" -#define KEY_STATUS_TYPE @"Status Type" - -#define PREF_GROUP_STATUS_PREFERENCES @"Status Preferences" -#define KEY_STATUS_CONVERSATION_COUNT @"Unread Conversations" -#define KEY_STATUS_MENTION_COUNT @"Unread Mentions" -#define KEY_STATUS_REPORT_IDLE @"Report Idle" -#define KEY_STATUS_REPORT_IDLE_INTERVAL @"Report Idle Interval" -#define KEY_STATUS_AUTO_AWAY @"Auto Away" -#define KEY_STATUS_AUTO_AWAY_STATUS_STATE_ID @"Auto Away Status State ID" -#define KEY_STATUS_FUS @"Fast User Switching Auto Away" -#define KEY_STATUS_FUS_STATUS_STATE_ID @"Fast User Switching Status State ID" -#define KEY_STATUS_SS @"ScreenSaver Auto Away" -#define KEY_STATUS_SS_STATUS_STATE_ID @"ScreenSaver Status State ID" -#define KEY_STATUS_AUTO_AWAY_INTERVAL @"Auto Away Interval" - -#define KEY_STATUS_SHOW_STATUS_WINDOW @"Show Status Window" -#define KEY_STATUS_STATUS_WINDOW_ON_TOP @"Status Window Always On Top" -#define KEY_STATUS_STATUS_WINDOW_HIDE_IN_BACKGROUND @"Status Window Hide in Background" - -//Built-in names and descriptions, which services should use when they support identical or approximately identical states -#define STATUS_NAME_AVAILABLE @"Generic Available" -#define STATUS_NAME_FREE_FOR_CHAT @"Free for Chat" -#define STATUS_NAME_AVAILABLE_FRIENDS_ONLY @"Available for Friends Only" - -#define STATUS_NAME_AWAY @"Generic Away" -#define STATUS_NAME_EXTENDED_AWAY @"Extended Away" -#define STATUS_NAME_AWAY_FRIENDS_ONLY @"Away for Friends Only" -#define STATUS_NAME_DND @"DND" -#define STATUS_NAME_NOT_AVAILABLE @"Not Available" -#define STATUS_NAME_OCCUPIED @"Occupied" -#define STATUS_NAME_BRB @"BRB" -#define STATUS_NAME_BUSY @"Busy" -#define STATUS_NAME_PHONE @"Phone" -#define STATUS_NAME_LUNCH @"Lunch" -#define STATUS_NAME_NOT_AT_HOME @"Not At Home" -#define STATUS_NAME_NOT_AT_DESK @"Not At Desk" -#define STATUS_NAME_NOT_IN_OFFICE @"Not In Office" -#define STATUS_NAME_VACATION @"Vacation" -#define STATUS_NAME_STEPPED_OUT @"Stepped Out" - -#define STATUS_NAME_INVISIBLE @"Invisible" - -#define STATUS_NAME_OFFLINE @"Offline" - -//Current version state ID string -#define STATE_SAVED_STATE @"State" - -@protocol AIStatusController -/*! - * @brief Register a status for a service - * - * Implementation note: Each AIStatusType has its own NSMutableDictionary, statusDictsByServiceCodeUniqueID. - * statusDictsByServiceCodeUniqueID is keyed by serviceCodeUniqueID; each object is an NSMutableSet of NSDictionaries. - * Each of these dictionaries has KEY_STATUS_NAME, KEY_STATUS_DESCRIPTION, and KEY_STATUS_TYPE. - * - * @param statusName A name which will be passed back to accounts of this service. Internal use only. Use the AIStatusController.h \#defines where appropriate. - * @param description A human-readable localized description which will be shown to the user. Use the AIStatusController.h \#defines where appropriate. - * @param type An AIStatusType, the general type of this status. - * @param service The AIService for which to register the status - */ -- (void)registerStatus:(NSString *)statusName - withDescription:(NSString *)description - ofType:(AIStatusType)type - forService:(AIService *)service; -/*! - * @brief Generate and return a menu of status types (Away, Be right back, etc.) - * - * @param service The service for which to return a specific list of types, or nil to return all available types - * @param target The target for the menu items, which will have an action of \@selector(selectStatus:) - * - * @result The menu of statuses, separated by available and away status types - */ -- (NSMenu *)menuOfStatusesForService:(AIService *)service withTarget:(id)target; - -@property (readonly, nonatomic) NSSet *flatStatusSet; -@property (readonly, nonatomic) NSArray *sortedFullStateArray; -@property (readonly, nonatomic) AIStatus *offlineStatusState; -@property (readonly, nonatomic) AIStatus *availableStatus; -@property (readonly, nonatomic) AIStatus *awayStatus; -@property (readonly, nonatomic) AIStatus *invisibleStatus; -@property (readonly, nonatomic) AIStatus *offlineStatus; -- (AIStatus *)statusStateWithUniqueStatusID:(NSNumber *)uniqueStatusID; - -- (void)setActiveStatusState:(AIStatus *)state; -- (void)setActiveStatusState:(AIStatus *)state forAccount:(AIAccount *)account; -- (void)setDelayStatusMenuRebuilding:(BOOL)shouldDelay; -- (void)applyState:(AIStatus *)statusState toAccounts:(NSArray *)accountArray; -@property (readonly, nonatomic) AIStatus *activeStatusState; -- (NSSet *)allActiveStatusStates; -- (AIStatusType)activeStatusTypeTreatingInvisibleAsAway:(BOOL)invisibleIsAway; -- (NSSet *)activeUnavailableStatusesAndType:(AIStatusType *)activeUnvailableStatusType - withName:(NSString **)activeUnvailableStatusName - allOnlineAccountsAreUnvailable:(BOOL *)allOnlineAccountsAreUnvailable; -- (AIStatus *)defaultInitialStatusState; - -- (NSString *)descriptionForStateOfStatus:(AIStatus *)statusState; -- (NSString *)localizedDescriptionForCoreStatusName:(NSString *)statusName; -- (NSString *)localizedDescriptionForStatusName:(NSString *)statusName statusType:(AIStatusType)statusType; -- (NSString *)defaultStatusNameForType:(AIStatusType)statusType; - -//State Editing -- (void)addStatusState:(AIStatus *)state; -- (void)removeStatusState:(AIStatus *)state; -- (void)statusStateDidSetUniqueStatusID; - -//State menu support -- (void)setDelayActiveStatusUpdates:(BOOL)shouldDelay; -- (BOOL)removeIfNecessaryTemporaryStatusState:(AIStatus *)originalState; -- (AIStatusGroup *)rootStateGroup; - -- (void)savedStatusesChanged; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusDefines.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusDefines.h deleted file mode 100644 index 4fd0ad3..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusDefines.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ -typedef enum { - AIAvailableStatusType = 0, /* Must be first in the enum */ - AIAwayStatusType, - AIInvisibleStatusType, - AIOfflineStatusType -} AIStatusType; -#define STATUS_TYPES_COUNT 4 - -//Mutability types -typedef enum { - AIEditableStatusState = 0, /* A user created state which can be modified -- the default, should be 0 */ - AILockedStatusState, /* A state which is built into Adium and can not be modified */ - AITemporaryEditableStatusState, /* A user created state which is not part of the permanent stored state array */ - AISecondaryLockedStatusState /* A state which is managed by Adium and grouped separately from other states of the same type */ -} AIStatusMutabilityType; - -typedef enum { - AIAvailableStatusTypeAS = 'Sonl', - AIAwayStatusTypeAS = 'Sawy', - AIInvisibleStatusTypeAS = 'Sinv', - AIOfflineStatusTypeAS = 'Soff' -} AIStatusTypeApplescript; - -#define STATUS_UNIQUE_ID @"Unique ID" -#define STATUS_TITLE @"Title" -#define STATUS_STATUS_TYPE @"Status Type" diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusGroup.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusGroup.h deleted file mode 100644 index bbec5c0..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusGroup.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIStatus; - -@interface AIStatusGroup : AIStatusItem { - NSMutableArray *containedStatusItems; - NSMutableSet *_flatStatusSet; - NSArray *_sortedContainedStatusItems; - - int delaySavingAndNotification; -} - -+ (id)statusGroup; -+ (id)statusGroupWithContainedStatusItems:(NSArray *)inContainedObjects; - -- (void)setContainedStatusItems:(NSArray *)inContainedStatusItems; - -- (void)addStatusItem:(AIStatusItem *)inStatusItem atIndex:(NSUInteger)index; -- (void)removeStatusItem:(AIStatusItem *)inStatusItem; -- (NSUInteger)moveStatusItem:(AIStatusItem *)statusState toIndex:(NSUInteger)destIndex; -- (void)replaceExistingStatusState:(AIStatus *)oldStatusState withStatusState:(AIStatus *)newStatusState; - -- (NSArray *)containedStatusItems; -- (AIStatus *)anyContainedStatus; -- (NSSet *)flatStatusSet; -- (NSMenu *)statusSubmenuNotifyingTarget:(id)target action:(SEL)selector; - -- (void)setDelaySavingAndNotification:(BOOL)inShouldDelay; -- (BOOL)enclosesStatusState:(AIStatus *)inStatusState; -- (BOOL)enclosesStatusStateInSet:(NSSet *)inSet; - -+ (void)sortArrayOfStatusItems:(NSMutableArray *)inArray context:(void *)context; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusIcons.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusIcons.h deleted file mode 100644 index 3cfacd1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusIcons.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import //For AIIconDirection -#import //For AIStatusType - -//Notifications -#define AIStatusIconSetDidChangeNotification @"AIStatusIconSetDidChangeNotification" -#define AIStatusIconSetInvalidSetNotification @"AIStatusIconSetInvalidSetNotification" - -@class AIListObject, AIChat; - -//Status icon type -typedef enum { - AIStatusIconTab = 0, //Tabs - AIStatusIconList, //Contact List - AIStatusIconMenu -} AIStatusIconType; -#define NUMBER_OF_STATUS_ICON_TYPES 3 - -@interface AIStatusIcons : NSObject { - -} -+ (NSImage *)statusIconForListObject:(AIListObject *)object type:(AIStatusIconType)iconType - direction:(AIIconDirection)iconDirection; -+ (NSImage *)statusIconForChat:(AIChat *)chat type:(AIStatusIconType)iconType - direction:(AIIconDirection)iconDirection; -+ (NSImage *)statusIconForUnknownStatusWithIconType:(AIStatusIconType)iconType - direction:(AIIconDirection)iconDirection; -+ (NSImage *)statusIconForStatusName:(NSString *)statusName - statusType:(AIStatusType)statusType - iconType:(AIStatusIconType)iconType - direction:(AIIconDirection)iconDirection; -+ (BOOL)setActiveStatusIconsFromPath:(NSString *)inPath; -+ (NSImage *)previewMenuImageForIconPackAtPath:(NSString *)inPath; - -+ (NSString *)statusNameForListObject:(AIListObject *)listObject; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusItem.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusItem.h deleted file mode 100644 index 539d30d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusItem.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AIStatusGroup; - -@interface AIStatusItem : NSObject { - NSMutableDictionary *statusDict; - AIStatusGroup *containingStatusGroup; - - BOOL encoding; -} - -- (NSString *)title; -- (void)setTitle:(NSString *)inTitle; - -- (NSImage *)menuIcon; -- (NSImage *)icon; -- (NSImage *)iconOfType:(AIStatusIconType)iconType direction:(AIIconDirection)direction; - -- (AIStatusType)statusType; -- (void)setStatusType:(AIStatusType)statusType; - -- (AIStatusMutabilityType)mutabilityType; - -- (NSNumber *)uniqueStatusID; -- (int)preexistingUniqueStatusID; -- (void)setUniqueStatusID:(NSNumber *)inUniqueStatusID; - -- (AIStatusGroup *)containingStatusGroup; -- (void)setContainingStatusGroup:(AIStatusGroup *)inStatusGroup; - -#pragma mark Applescript -- (AIStatusTypeApplescript)statusTypeApplescript; -- (void)setStatusTypeApplescript:(AIStatusTypeApplescript)statusTypeApplescript; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusMenu.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusMenu.h deleted file mode 100644 index e9db29f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIStatusMenu.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@class AIStatusItem; -@protocol AIStatusMenuDelegate; - -@interface AIStatusMenu : NSObject { - NSMutableArray *menuItemArray; - NSMutableSet *stateMenuItemsAlreadyValidated; - - id __unsafe_unretained delegate; -} - -+ (id)statusMenuWithDelegate:(id)inDelegate; - -@property (readwrite, nonatomic, unsafe_unretained) id delegate; - -- (void)delegateWillReplaceAllMenuItems; -- (void)delegateCreatedMenuItems:(NSArray *)addedMenuItems; -- (void)rebuildMenu; - -+ (NSMenu *)staticStatusStatesMenuNotifyingTarget:(id)target selector:(SEL)selector; -+ (NSString *)titleForMenuDisplayOfState:(AIStatusItem *)statusState; - -@end - -@protocol AIStatusMenuDelegate -- (void)statusMenu:(AIStatusMenu *)statusMenu didRebuildStatusMenuItems:(NSArray *)inMenuItems; -@optional -- (void)statusMenu:(AIStatusMenu *)statusMenu willRemoveStatusMenuItems:(NSArray *)inMenuItems; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AITextAttachmentExtension.h b/telegram-adium/Adium.framework/Versions/A/Headers/AITextAttachmentExtension.h deleted file mode 100644 index 8aa2d7f..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AITextAttachmentExtension.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AITextAttachmentExtension : NSTextAttachment { - NSString *stringRepresentation; - BOOL shouldSaveImageForLogging; - BOOL hasAlternate; - NSString *path; - NSImage *image; - NSString *imageClass; //set as class attribute in html, used to tell images apart for CSS - BOOL shouldAlwaysSendAsText; -} - -+ (AITextAttachmentExtension *)textAttachmentExtensionFromTextAttachment:(NSTextAttachment *)textAttachment; - -@property (readwrite, nonatomic, copy) NSString *string; -@property (readwrite, nonatomic, copy) NSString *imageClass; -@property (readwrite, nonatomic) BOOL shouldSaveImageForLogging; -@property (readwrite, nonatomic) BOOL hasAlternate; -@property (readwrite, nonatomic, copy) NSString *path; -@property (readwrite, nonatomic) NSImage *image; -@property (unsafe_unretained, readonly, nonatomic) NSImage *iconImage; -@property (readonly, nonatomic) BOOL attachesAnImage; -@property (readwrite, nonatomic) BOOL shouldAlwaysSendAsText; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbar.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbar.h deleted file mode 100644 index 5961ccf..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbar.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIToolbar : NSToolbar { - -} - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbarControllerProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbarControllerProtocol.h deleted file mode 100644 index ab9dfd4..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIToolbarControllerProtocol.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@protocol AIToolbarController -- (void)registerToolbarItem:(NSToolbarItem *)item forToolbarType:(NSString *)type; -- (void)unregisterToolbarItem:(NSToolbarItem *)item forToolbarType:(NSString *)type; -- (NSDictionary *)toolbarItemsForToolbarTypes:(NSArray *)types; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIUserIcons.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIUserIcons.h deleted file mode 100644 index e2864c1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIUserIcons.h +++ /dev/null @@ -1,173 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIListContact, AIListObject, AIServersideUserIconSource; - -typedef enum { - AIUserIconSourceDidNotFindIcon = 0, - AIUserIconSourceFoundIcon, - AIUserIconSourceLookingUpIconAsynchronously -} AIUserIconSourceQueryResult; - -typedef CGFloat AIUserIconPriority; -#define AIUserIconHighestPriority 0.00f -#define AIUserIconHighPriority 0.25f -#define AIUserIconMediumPriority 0.50f -#define AIUserIconLowPriority 0.75f -#define AIUserIconLowestPriority 1.00f - -@protocol AIUserIconSource -/*! - * @brief AIUserIcons wants this source to update its user icon for an object - * - * Call +[AIUserIcons userIconSource:didDetermineUserIcon:asynchronously:forObject:] with the new icon, if appropriate - * - * @result An AIUserIconSourceQueryResult indicating the result - */ -- (AIUserIconSourceQueryResult)updateUserIconForObject:(AIListObject *)inObject; - -/*! - * @brief The priority at which this source should be used. See the \#defines in AIUserIcons.h for posible values. - */ -@property (readonly, nonatomic) AIUserIconPriority priority; -@end - -@interface AIUserIcons : NSObject { - -} - -/*! - * @brief Register a user icon source - */ -+ (void)registerUserIconSource:(id )inSource; - -/*! - * @brief Get the user icon source currently providingthe icon for an object - */ -+ (void)userIconSource:(id )inSource priorityDidChange:(AIUserIconPriority)newPriority fromPriority:(AIUserIconPriority)oldPriority; - -/*! - * @brief Determine if a change in a given icon source would potentially change the icon of an object - */ -+ (BOOL)userIconSource:(id )inSource changeWouldBeRelevantForObject:(AIListObject *)inObject; - -/*! - * @brief Called by an icon source to inform us that its provided icon changed - */ -+ (void)userIconSource:(id )inSource didChangeForObject:(AIListObject *)inObject; - -/*! - * @brief A user icon source determined a user icon for an object - * - * This should be called only by a user icon source upon successful determination of a user icon - */ -+ (void)userIconSource:(id )inSource didDetermineUserIcon:(NSImage *)inUserIcon asynchronously:(BOOL)wasAsynchronous forObject:(AIListObject *)inObject; - -/*! - * @brief Set what user icon and source an object is currently using (regardless of what AIUserIcon would otherwise do) - * - * This is useful if an object knows something AIUserIcons can't. For example, AIMetaContact uses this to let AIUserIcons - * know how it resolved iterating through its contained contacts based on their respective priorities in order to determine - * which user icon should be used. Tracking it here prevents needless repeated lookups of data. - */ -+ (void)setActualUserIcon:(NSImage *)userIcon andSource:(id )inSource forObject:(AIListObject *)inObject; - -/*! - * @brief Get the user icon source currently providing the icon for an object - */ -+ (id )userIconSourceForObject:(AIListObject *)inObject; - -/*! - * @brief Retrieve the manually set user icon (a stored preference) for an object, if there is one - */ -+ (NSData *)manuallySetUserIconDataForObject:(AIListObject *)inObject; - -/*! - * @brief Retreive the cached icon for an object, if there is one. - */ -+ (NSData *)cachedUserIconDataForObject:(AIListObject *)inObject; - -/*! - * @brief Returns if a cached user icon exists. - * - * @result YES if a cached user icon exists, NO otherwise. - */ -+ (BOOL)cachedUserIconExistsForObject:(AIListObject *)inObject; - -/*! - * @brief Retreive the serverside icon for an object, if there is one. - */ -+ (NSData *)serversideUserIconDataForObject:(AIListObject *)inObject; - -/*! - * @brief Get the user icon for an object - * - * If it's not already cached, the icon sources will be queried as needed. - */ -+ (NSImage *)userIconForObject:(AIListObject *)inObject; - -/* - * @brief Retrieve a user icon sized for the contact list - * - * @param inObject The object - * @param size Size of the returned image. If this is the size passed to -[self setListUserIconSize:], a cache will be used. - */ -+ (NSImage *)listUserIconForContact:(AIListObject *)inObject size:(NSSize)size; - -/*! - * @brief Retrieve a user icon sized for a menu - * - * Returns the appropriate service icon if no user icon is found - */ -+ (NSImage *)menuUserIconForObject:(AIListObject *)inObject; - -/*! - * @brief Inform AIUserIcons a new manually-set icon data for an object - * - * We take responsibility (via AIManuallySetUserIconSource) for saving the data - */ -+ (void)setManuallySetUserIconData:(NSData *)inData forObject:(AIListObject *)inObject; - -/*! - * @brief Inform AIUserIcons of new serverside icon data for an object. - * - * This is likely called by a contact for itself or by an accont for a contact. - */ -+ (void)setServersideIconData:(NSData *)inData forObject:(AIListObject *)inObject notify:(NotifyTiming)notify; - -/* - * @brief Set the current contact list user icon size - * This determines the size at which images are cached for listUserIconForContact:size: - */ -+ (void)setListUserIconSize:(NSSize)inSize; - -/*! - * @brief Clear the cache for a specific object - */ -+ (void)flushCacheForObject:(AIListObject *)inContact; - -/*! - * @brief Clear all caches - */ -+ (void)flushAllCaches; - -@end - -@interface AIUserIcons (AIUserIconSource) -+ (void)userIconSource:(id )inSource didDetermineUserIcon:(NSImage *)inUserIcon forObject:(AIListObject *)inObject; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIWindowController.h deleted file mode 100644 index 393ff24..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIWindowController.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface AIWindowController : NSWindowController { -} - -- (void)showOnWindow:(id)parentWindow; -- (void)sheetDidEnd:(NSWindow *)sheet returnCode:(NSInteger)returnCode contextInfo:(void *)contextInfo; -- (IBAction)closeWindow:(id)sender; -- (BOOL)windowShouldClose:(id)sender; -- (NSString *)adiumFrameAutosaveName; -- (NSString *)savedFrameString; -- (NSRect)savedFrameFromString:(NSString *)frameString; -- (void)windowDidLoad; -- (void)showWindowInFrontIfAllowed:(BOOL)inFront; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIXMLElement.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIXMLElement.h deleted file mode 100644 index 4f2805a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIXMLElement.h +++ /dev/null @@ -1,73 +0,0 @@ -/* AIXMLElement.h - * - * Created by Peter Hosey on 2006-06-07. - * - * This class is explicitly released under the BSD license with the following modification: - * It may be used without reproduction of its copyright notice within The Adium Project. - * - * This class was created for use in the Adium project, which is released under the GPL. - * The release of this specific class (AIXMLElement) under BSD in no way changes the licensing of any other portion - * of the Adium project. - * - **** - Copyright © 2006 Peter Hosey, Colin Barrett - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of Peter Hosey nor the names of his contributors may be used to endorse or promote products derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -//FIXME: This class is not CodingStyle compliant. -@interface AIXMLElement : NSObject { - NSString *name; - NSMutableArray *attributeNames; - NSMutableArray *attributeValues; - NSMutableArray *contents; - BOOL selfCloses; -} - -+ (id) elementWithNamespaceName:(NSString *)namespace elementName:(NSString *)newName; -- (id) initWithNamespaceName:(NSString *)namespace elementName:(NSString *)newName; -+ (id) elementWithName:(NSString *)newName; -- (id) initWithName:(NSString *)newName; - -#pragma mark Accessors - -- (NSString *) name; - -- (NSUInteger)numberOfAttributes; -- (NSDictionary *)attributes; -- (void) setAttributeNames:(NSArray *)newAttrNames values:(NSArray *)newAttrVals; - -- (void)setValue:(NSString *)attrVal forAttribute:(NSString *)attrName; -- (NSString *)valueForAttribute:(NSString *)attrName; - -@property (readwrite, nonatomic) BOOL selfCloses; - -#pragma mark Contents - -//NSString: Unescaped string data (will be escaped when making XML data). -//AIXMLElement: Sub-element (e.g. span in a p). -- (void) addEscapedObject:(id)obj; -- (void) addObject:(id)obj; -- (void) addObjectsFromArray:(NSArray *)array; -- (void) insertEscapedObject:(id)obj atIndex:(NSUInteger)idx; -- (void) insertObject:(id)obj atIndex:(NSUInteger)idx; - -- (NSArray *)contents; -- (void)setContents:(NSArray *)newContents; -- (NSString *)contentsAsXMLString; - -#pragma mark XML representation - -- (NSString *) XMLString; -- (void) appendXMLStringtoString:(NSMutableString *)string; - -- (NSData *) UTF8XMLData; -- (void) appendUTF8XMLBytesToData:(NSMutableData *)data; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AIXtraInfo.h b/telegram-adium/Adium.framework/Versions/A/Headers/AIXtraInfo.h deleted file mode 100644 index 1776834..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AIXtraInfo.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@interface AIXtraInfo : NSObject { - NSString *name; - NSString *path; - NSString *version; - NSImage *icon; - NSImage *previewImage; - NSString *resourcePath; - NSString *type; - NSString *readMePath; - NSBundle *xtraBundle; - - BOOL enabled; -} - -+ (AIXtraInfo *) infoWithURL:(NSURL *)url; -- (id) initWithURL:(NSURL *)url; - -- (NSString *)type; -- (NSString *)path; -- (NSString *)name; -- (NSString *)version; -- (NSString *)resourcePath; -- (NSString *)readMePath; -- (NSImage *)icon; -- (NSImage *)previewImage; -- (void)setName:(NSString *)name; -- (NSBundle *)bundle; //returns nil if no bundle is available - -- (BOOL)enabled; -- (void)setEnabled:(BOOL)inEnabled; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/AdiumAuthorization.h b/telegram-adium/Adium.framework/Versions/A/Headers/AdiumAuthorization.h deleted file mode 100644 index 49bdeff..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/AdiumAuthorization.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccount; - -@interface AdiumAuthorization : NSObject { - -} - -+ (void)start; -+ (id)showAuthorizationRequestWithDict:(NSDictionary *)inDict forAccount:(AIAccount *)inAccount; -+ (void)closeAuthorizationForUIHandle:(id)__attribute__((ns_consumed))handle; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/CSNewContactAlertWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/CSNewContactAlertWindowController.h deleted file mode 100644 index 6dee22b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/CSNewContactAlertWindowController.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIImageTextCellView, AIActionDetailsPane; - -@interface CSNewContactAlertWindowController : AIWindowController { - IBOutlet NSView *view_auxiliary; - IBOutlet NSPopUpButton *popUp_event; - IBOutlet NSPopUpButton *popUp_action; - - IBOutlet NSButton *checkbox_oneTime; - - IBOutlet NSButton *button_OK; - IBOutlet NSButton *button_cancel; - IBOutlet NSTextField *label_Event; - IBOutlet NSTextField *label_Action; - - AIActionDetailsPane *detailsPane; - NSView *detailsView; - NSMutableDictionary *alert; - - id target; - NSDictionary *oldAlert; - - AIListObject *listObject; - - BOOL configureForGlobal; - - IBOutlet AIImageTextCellView *headerView; -} - -/*! - * @brief Edit or create a contact alert - * - * @param inAlert The alert to edit. Pass nil to create a new alert. - * @param inObject The list object for which to edit. Pass nil for global. - * @param parentWindow A window on which to show a modal sheet. Pass nil for a panel prompt. - * @param inTarget The target to notify when complete, which must implement - (void)alertUpdated:(NSDictionary *)newAlert oldAlert:(NSDictionary *)oldAlert - * newAlert will be 'nil' if the user cancels. - * @param inConfigureForGlobal YES if the display should be for global events - * @param inDefaultEventID The event to show initially for this alert - * - * @result An autoreleased CSNewContactAlertWindowController, which will already have its window or sheet showing. - */ -+ (CSNewContactAlertWindowController *)editAlert:(NSDictionary *)inAlert - forListObject:(AIListObject *)inObject - onWindow:(NSWindow *)parentWindow - notifyingTarget:(id)inTarget - configureForGlobal:(BOOL)inConfigureForGlobal - defaultEventID:(NSString *)inDefaultEventID __attribute__((objc_method_family(new))); -- (IBAction)cancel:(id)sender; -- (IBAction)save:(id)sender; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatViewController.h b/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatViewController.h deleted file mode 100644 index 16685c5..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatViewController.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIChat, AIAccount, AIMetaContact, AIListContact, AIService; - -@interface DCJoinChatViewController : NSObject { - IBOutlet NSView *__weak view; // Custom view - AIChat *chat; // The newly created chat - AIAccount *account; // The account we're being configured for - - id __unsafe_unretained delegate; // Our delegate - id __unsafe_unretained sharedChatInstance; -} - -+ (DCJoinChatViewController *)joinChatView; - -- (id)init; -@property (weak, readonly, nonatomic) NSView *view; -@property (weak, readonly, nonatomic) NSString *nibName; - -- (void)configureForAccount:(AIAccount *)inAccount; -- (void)joinChatWithAccount:(AIAccount *)inAccount; - -- (NSString *)impliedCompletion:(NSString *)aString; -- (AIListContact *)validContact:(NSString *)uniqueID withService:(AIService *)service; -- (NSDragOperation)doDraggingEntered:(id )sender; -- (BOOL)doPerformDragOperation:(id )sender toField:(NSTextField *)theField; - -- (void)doJoinChatWithName:(NSString *)inName - onAccount:(AIAccount *)inAccount - chatCreationInfo:(NSDictionary *)inInfo - invitingContacts:(NSArray *)contactsToInvite - withInvitationMessage:(NSString *)invitationMessage; -- (NSArray *)contactsFromNamesSeparatedByCommas:(NSString *)namesSeparatedByCommas onAccount:(AIAccount *)inAccount; - -@property (readwrite, nonatomic, unsafe_unretained) id delegate; - -//roomlistWindowController delegate -@property (readwrite, nonatomic, unsafe_unretained) id sharedChatInstance; - -@end - - diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatWindowController.h deleted file mode 100644 index b76a292..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/DCJoinChatWindowController.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@class AILocalizationTextField, AILocalizationButton, AIListContact, DCJoinChatViewController; - -@interface DCJoinChatWindowController : AIWindowController { - IBOutlet NSPopUpButton *popUp_service; // Account selector - IBOutlet NSView *view_customView; // View containing service-specific controls - - IBOutlet AILocalizationTextField *label_account; - IBOutlet AILocalizationButton *button_joinChat; - IBOutlet AILocalizationButton *button_cancel; - - DCJoinChatViewController *joinChatViewController; // Current view controller - - AIAccountMenu *accountMenu; -} - -+ (DCJoinChatWindowController *)showJoinChatWindow; - -@property (nonatomic) DCJoinChatViewController *joinChatViewController; - -- (void)configureForAccount:(AIAccount *)inAccount; -- (IBAction)joinChat:(id)sender; - -- (void)setJoinChatEnabled:(BOOL)enabled; -- (AIListContact *)contactFromText:(NSString *)text; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESContactAlertsViewController.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESContactAlertsViewController.h deleted file mode 100644 index f5bed84..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESContactAlertsViewController.h +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#define CONTACT_ALERTS_DETAILS_FOR_HEADER_CHANGED @"ContactAlertDetailsForHeaderChanged" - -@class AIVariableHeightFlexibleColumnsOutlineView, AIListObject, AIAutoScrollView, CSNewContactAlertWindowController; -@protocol ESContactAlertsViewControllerDelegate; - -@interface ESContactAlertsViewController : NSObject { - IBOutlet NSView *view; - - IBOutlet AIVariableHeightFlexibleColumnsOutlineView *outlineView_summary; - - NSMutableArray *contactAlertsEvents; - NSMutableArray *contactAlertsActions; - - NSMutableDictionary *expandStateDict; - NSMutableDictionary *requiredHeightDict; - - IBOutlet NSButton *button_edit; - IBOutlet NSSegmentedControl *button_addOrRemoveAlert; - - AIListObject *listObject; - - id delegate; - - BOOL configureForGlobal; - BOOL showEventsInEditSheet; - - NSString *targetEventID; - - CSNewContactAlertWindowController *editingPanel; -} - -- (void)configureForListObject:(AIListObject *)inObject; -- (void)configureForListObject:(AIListObject *)inObject showingAlertsForEventID:(NSString *)inTargetEventID; - -- (IBAction)addOrRemoveAlert:(id)sender; -- (IBAction)editAlert:(id)sender; - -- (void)setDelegate:(id)inDelegate; -- (id)delegate; - -- (void)setConfigureForGlobal:(BOOL)inConfigureForGlobal; -- (void)setShowEventsInEditSheet:(BOOL)inShowEventsInEditSheet; - -- (void)viewWillClose; - -@end - -@protocol ESContactAlertsViewControllerDelegate - -//Delegate is notified with the new and old alert dictionaries when the user makes a change -- (void)contactAlertsViewController:(ESContactAlertsViewController *)inController - updatedAlert:(NSDictionary *)newAlert - oldAlert:(NSDictionary *)oldAlert; - -//Delegate is notified with the deleted dictionary when the user deletes an alert -- (void)contactAlertsViewController:(ESContactAlertsViewController *)inController - deletedAlert:(NSDictionary *)deletedAlert; -@end - -@interface NSObject (AIActionHandlerOptionalMethods) -- (void)performPreviewForAlert:(NSDictionary *)alert; -- (void)alertUpdated:(NSDictionary *)newAlert oldAlert:(NSDictionary *)oldAlert; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESDebugAILog.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESDebugAILog.h deleted file mode 100644 index 05d653c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESDebugAILog.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -extern NSString *const AIDebugLoggingEnabledNotification; -extern BOOL AIDebugLoggingEnabled; - -#define AILog(fmt, args...) do { if (__builtin_expect(AIDebugLoggingEnabled, 0)) AILog_impl(fmt, ##args); } while(0) -#define AILogWithPrefix(sig, fmt, args...) do { if(__builtin_expect(AIDebugLoggingEnabled, 0)) AILogWithPrefix_impl(sig, fmt, ##args); } while(0) -#define AILogBacktrace() do { if(__builtin_expect(AIDebugLoggingEnabled, 0)) AILogBacktrace_impl(); } while(0) -#define AILogWithSignature(fmt, args...) AILogWithSignature_impl(__PRETTY_FUNCTION__, __LINE__, fmt, ##args); -void AIEnableDebugLogging(); -BOOL AIDebugLoggingIsEnabled(); -void AILogWithSignature_impl (const char *function, int line, NSString *format, ...) __attribute__((format(__NSString__, 3, 4))); -void AILogWithPrefix_impl (const char *signature, NSString *format, ...) __attribute__((format(__NSString__, 2, 3))); -void AILog_impl (NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); -void AILogBacktrace_impl(); diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESFileTransfer.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESFileTransfer.h deleted file mode 100644 index e3c668d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESFileTransfer.h +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -#define CONTENT_FILE_TRANSFER_TYPE @"File Transfer Type" - -@class AIAccount, AIListObject, ESFileTransfer, ESFileTransferRequestPromptController; - -@protocol FileTransferDelegate --(void)fileTransfer:(ESFileTransfer *)fileTransfer didSetType:(AIFileTransferType)type; --(void)fileTransfer:(ESFileTransfer *)fileTransfer didSetStatus:(AIFileTransferStatus)status; --(void)fileTransfer:(ESFileTransfer *)fileTransfer didSetSize:(unsigned long long)size; --(void)fileTransfer:(ESFileTransfer *)fileTransfer didSetLocalFilename:(NSString *)inLocalFilename; --(void)gotUpdateForFileTransfer:(ESFileTransfer *)fileTransfer; -@end - -@interface ESFileTransfer : AIContentMessage { - NSString *localFilename; - NSString *remoteFilename; - id accountData; - - CGFloat percentDone; - unsigned long long size; - unsigned long long bytesSent; - BOOL isDirectory; - AIFileTransferType type; - AIFileTransferStatus status; - - NSString *uniqueID; - id __unsafe_unretained delegate; - - ESFileTransferRequestPromptController *promptController; -} - -+ (id)fileTransferWithContact:(AIListContact *)inContact forAccount:(AIAccount *)inAccount type:(AIFileTransferType)t; -+ (ESFileTransfer *)existingFileTransferWithID:(NSString *)fileTransferID; - -@property (weak, readonly, nonatomic) AIListContact *contact; -@property (weak, readonly, nonatomic) AIAccount *account; - -@property (readwrite, nonatomic) NSString *remoteFilename; -@property (readwrite, nonatomic) NSString *localFilename; -@property (weak, readonly, nonatomic) NSString *displayFilename; - -@property (readwrite, nonatomic) unsigned long long size; -@property (readwrite, nonatomic) BOOL isDirectory; -@property (readwrite, nonatomic) AIFileTransferType fileTransferType; -@property (readwrite, nonatomic) AIFileTransferStatus status; - -- (void)setPercentDone:(NSNumber *)percent bytes:(NSNumber *)bytes; -- (void)setPercentDone:(CGFloat)inPercent bytesSent:(unsigned long long)inBytesSent; -@property (readonly, nonatomic) CGFloat percentDone; -@property (readonly, nonatomic) unsigned long long bytesSent; -- (void)setSizeWithNumber:(NSNumber *)newSize; -- (NSNumber *)sizeNumber; - -@property (readwrite, nonatomic) id accountData; - -@property (readwrite, nonatomic, unsafe_unretained) id delegate; - -@property (readonly, nonatomic) BOOL isStopped; - -- (void)cancel; -- (void)reveal; -- (void)openFile; - -@property (unsafe_unretained, readonly, nonatomic) NSImage *iconImage; - -@property (weak, readonly, nonatomic) NSString *uniqueID; - -@property (readwrite, nonatomic) ESFileTransferRequestPromptController *fileTransferRequestPromptController; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESFileWrapperExtension.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESFileWrapperExtension.h deleted file mode 100644 index 59dc9ca..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESFileWrapperExtension.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -@interface ESFileWrapperExtension : NSFileWrapper { - NSString *originalPath; -} - -- (NSString *)originalPath; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESObjectWithProperties.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESObjectWithProperties.h deleted file mode 100644 index 7743fb3..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESObjectWithProperties.h +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIMutableOwnerArray; - -typedef enum { - NotifyNever = -9999, - NotifyLater = NO, /* 0 */ - NotifyNow = YES /* 1 */ -} NotifyTiming; - -#define KEY_KEY @"Key" -#define KEY_VALUE @"Value" - -@interface ESObjectWithProperties : NSObject { - NSMutableDictionary *propertiesDictionary; - NSMutableSet *changedProperties; //Properties that have changed since the last notification - - NSMutableDictionary *displayDictionary; //A dictionary of values affecting this object's display - - NSMutableSet *proxyObjects; -} - -//Setting properties -- (void)setValue:(id)value forProperty:(NSString *)key notify:(NotifyTiming)notify; -- (void)setValue:(id)value forProperty:(NSString *)key afterDelay:(NSTimeInterval)delay; -- (void)notifyOfChangedPropertiesSilently:(BOOL)silent; - -//Getting properties -@property (readonly, nonatomic) NSDictionary *properties; -- (id)valueForProperty:(NSString *)key; -- (NSInteger)integerValueForProperty:(NSString *)key; -- (int)intValueForProperty:(NSString *)key; -- (BOOL)boolValueForProperty:(NSString *)key; -- (NSNumber *)numberValueForProperty:(NSString *)key; - -//Properties: Specifically for subclasses -- (void)object:(id)inObject didChangeValueForProperty:(NSString *)key notify:(NotifyTiming)notify; -- (void)didModifyProperties:(NSSet *)keys silent:(BOOL)silent; -- (void)didNotifyOfChangedPropertiesSilently:(BOOL)silent; - -//Display array -- (AIMutableOwnerArray *)displayArrayForKey:(NSString *)inKey; -- (AIMutableOwnerArray *)displayArrayForKey:(NSString *)inKey create:(BOOL)create; -- (id)displayArrayObjectForKey:(NSString *)inKey; - -//Name -@property (readonly, nonatomic, retain) NSString *displayName; - -@property (readonly, nonatomic) NSString *internalObjectID; - -//Mutable owner array delegate method -- (void)mutableOwnerArray:(AIMutableOwnerArray *)inArray didSetObject:(id)anObject withOwner:(id)inOwner priorityLevel:(float)priority; - -- (NSSet *)proxyObjects; -- (void)noteProxyObject:(id)proxyObject; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetManagementController.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetManagementController.h deleted file mode 100644 index 4d2c4c8..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetManagementController.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@interface ESPresetManagementController : AIWindowController { - IBOutlet NSTableView *tableView_presets; - - IBOutlet NSTextField *label_editPresets; - IBOutlet AILocalizationButton *button_duplicate; - IBOutlet AILocalizationButton *button_delete; - IBOutlet AILocalizationButton *button_rename; - IBOutlet AILocalizationButton *button_done; - - NSArray *presets; - NSString *nameKey; - - id delegate; - - NSDictionary *tempDragPreset; -} - -- (id)initWithPresets:(NSArray *)inPresets namedByKey:(NSString *)inNameKey withDelegate:(id)inDelegate; - -- (IBAction)duplicatePreset:(id)sender; -- (IBAction)deletePreset:(id)sender; -- (IBAction)renamePreset:(id)sender; - -@end - -@interface NSObject (ESPresetManagementControllerDelegate) -- (NSArray *)renamePreset:(NSDictionary *)preset toName:(NSString *)newName inPresets:(NSArray *)presets renamedPreset:(id *)renamedPreset; -- (NSArray *)duplicatePreset:(NSDictionary *)preset inPresets:(NSArray *)presets createdDuplicate:(id *)duplicatePreset; -- (NSArray *)deletePreset:(NSDictionary *)preset inPresets:(NSArray *)presets; -@end - -@interface NSObject (ESPresetManagementControllerDelegate_Optional) -- (NSArray *)movePreset:(NSDictionary *)preset - toIndex:(NSUInteger)index - inPresets:(NSArray *)presets - presetAfterMove:(id *)presetAfterMove; -- (BOOL)allowDeleteOfPreset:(NSDictionary *)preset; -- (BOOL)allowRenameOfPreset:(NSDictionary *)preset; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetNameSheetController.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetNameSheetController.h deleted file mode 100644 index 72f3f7c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESPresetNameSheetController.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -typedef enum { - ESPresetNameSheetOkayReturn = 1, - ESPresetNameSheetCancelReturn = 0 -} ESPresetNameSheetReturnCode; - -@interface ESPresetNameSheetController : AIWindowController { - IBOutlet NSTextField *textField_name; - IBOutlet NSTextField *label_name; - IBOutlet NSButton *button_ok; - IBOutlet NSButton *button_cancel; - - IBOutlet NSTextView *textView_explanatoryText; - IBOutlet NSScrollView *scrollView_explanatoryText; - - NSString *defaultName; - NSString *explanatoryText; - id target; - id userInfo; -} -- (id)initWithDefaultName:(NSString *)inDefaultName explanatoryText:(NSString *)inExplanatoryText notifyingTarget:(id)inTarget userInfo:(id)inUserInfo; -- (IBAction)okay:(id)sender; -- (IBAction)cancel:(id)sender; - -@end - -@interface NSObject (ESPresetNameSheetControllerTarget) -//Required -- (void)presetNameSheetControllerDidEnd:(ESPresetNameSheetController *)controller - returnCode:(ESPresetNameSheetReturnCode)returnCode - newName:(NSString *)newName - userInfo:(id)userInfo; - -//Optional -- (BOOL)presetNameSheetController:(ESPresetNameSheetController *)controller - shouldAcceptNewName:(NSString *)newName - userInfo:(id)userInfo; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/ESTextAndButtonsWindowController.h b/telegram-adium/Adium.framework/Versions/A/Headers/ESTextAndButtonsWindowController.h deleted file mode 100644 index 2a138cb..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/ESTextAndButtonsWindowController.h +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -@interface ESTextAndButtonsWindowController : AIWindowController { - IBOutlet NSTextView *textView_messageHeader; - IBOutlet NSScrollView *scrollView_messageHeader; - - IBOutlet NSTextView *textView_message; - IBOutlet NSScrollView *scrollView_message; - IBOutlet NSButton *button_default; - IBOutlet NSButton *button_alternate; - IBOutlet NSButton *button_other; - IBOutlet NSButton *checkbox_suppression; - - IBOutlet NSImageView *imageView; - - NSString *title; - NSString *defaultButton; - NSString *alternateButton; - NSString *otherButton; - NSString *suppression; - NSString *messageHeader; - NSAttributedString *message; - NSImage *image; - id target; - id userInfo; - - BOOL userClickedButton; //Did the user click a button to begin closing the window? - BOOL allowsCloseWithoutResponse; //Is it okay to close without clicking a button? -} - -- (id)initWithTitle:(NSString *)inTitle - defaultButton:(NSString *)inDefaultButton - alternateButton:(NSString *)inAlternateButton - otherButton:(NSString *)inOtherButton - suppression:(NSString *)inSuppression - withMessageHeader:(NSString *)inMessageHeader - andMessage:(NSAttributedString *)inMessage - image:(NSImage *)inImage - target:(id)inTarget - userInfo:(id)inUserInfo; - -- (id)initWithTitle:(NSString *)inTitle - defaultButton:(NSString *)inDefaultButton - alternateButton:(NSString *)inAlternateButton - otherButton:(NSString *)inOtherButton - withMessageHeader:(NSString *)inMessageHeader - andMessage:(NSAttributedString *)inMessage - target:(id)inTarget - userInfo:(id)inUserInfo; - -- (void)changeWindowToTitle:(NSString *)inTitle - defaultButton:(NSString *)inDefaultButton - alternateButton:(NSString *)inAlternateButton - otherButton:(NSString *)inOtherButton - suppression:(NSString *)inSuppression - withMessageHeader:(NSString *)inMessageHeader - andMessage:(NSAttributedString *)inMessage - image:(NSImage *)inImage - target:(id)inTarget - userInfo:(id)inUserInfo; - -- (IBAction)pressedButton:(id)sender; - -- (void)show; -- (void)setAllowsCloseWithoutResponse:(BOOL)inAllowsCloseWithoutResponse; -- (void)setImage:(NSImage *)image; -- (void)setKeyEquivalent:(NSString *)keyEquivalent modifierMask:(unsigned int)mask forButton:(AITextAndButtonsWindowButton)windowButton; - -@end - -@interface NSObject (ESTextAndButtonsTarget) -//Return YES to let the window close; NO not to let it close -- (BOOL)textAndButtonsWindowDidEnd:(NSWindow *)window returnCode:(AITextAndButtonsReturnCode)returnCode suppression:(BOOL)suppression userInfo:(id)userInfo; -@end - diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/JVFontPreviewField.h b/telegram-adium/Adium.framework/Versions/A/Headers/JVFontPreviewField.h deleted file mode 100644 index a1e12c2..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/JVFontPreviewField.h +++ /dev/null @@ -1,39 +0,0 @@ -// From Colloquy (http://colloquy.info/) -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class NSFont; - - -@interface JVFontPreviewField : NSTextField { - NSFont *_actualFont; - BOOL _showPointSize; - BOOL _showFontFace; - - BOOL shouldDrawFocusRing; - NSResponder *lastResp; -} -- (IBAction)chooseFontWithFontPanel:(id)sender; -- (void)setShowPointSize:(BOOL)show; -- (void)setShowFontFace:(BOOL)show; -@end - -@protocol JVFontPreviewFieldDelegate -- (BOOL)fontPreviewField:(JVFontPreviewField *)field shouldChangeToFont:(NSFont *)font; -- (void)fontPreviewField:(JVFontPreviewField *)field didChangeToFont:(NSFont *)font; -@end diff --git a/telegram-adium/Adium.framework/Versions/A/Headers/SS_PreferencePaneProtocol.h b/telegram-adium/Adium.framework/Versions/A/Headers/SS_PreferencePaneProtocol.h deleted file mode 100644 index a385b08..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Headers/SS_PreferencePaneProtocol.h +++ /dev/null @@ -1,49 +0,0 @@ - -@protocol SS_PreferencePaneProtocol - - - // preferencePanes is called whenever the calling application wants to instantiate preference panes. - // This method returns an array of preference pane instances. This array is autoreleased, - // so the calling application needs to retain whatever it wants to keep. - // If no instances were generated, this returns nil. - -+ (NSArray *)preferencePanes; - - - // paneView returns a preference pane's view. This must not be nil. - -- (NSView *)paneView; - - - // paneName returns the name associated with a preference pane's view. - // This is used as the label of the pane's toolbar item in the Preferences window, - // and as the title of the Preferences window when the pane is selected. - // This must not be nil or an empty string. - -- (NSString *)paneName; - -- (NSString *)paneIdentifier; - - // paneIcon returns a preference pane's icon as an NSImage. - // The icon will be scaled to the default size for a toolbar icon (if necessary), - // and shown in the toolbar in the Preferences window. - -- (NSImage *)paneIcon; - - - // paneToolTip returns the ToolTip to be used for a preference pane's icon in the - // Preferences window's toolbar. You can return nil or an empty string to disable - // the ToolTip for this preference pane. - -- (NSString *)paneToolTip; - - - // allowsHorizontalResizing and allowsVerticalResizing determine whether the Preferences window - // will be resizable in the respective directions when the receiver is the visible preference - // pane. The initial size of the receiver's view will be used as the minimum size of the - // Preferences window. - -- (BOOL)allowsHorizontalResizing; -- (BOOL)allowsVerticalResizing; - -@end diff --git a/telegram-adium/Adium.framework/Versions/A/PrivateHeaders/AIListOutlineView+Drawing.h b/telegram-adium/Adium.framework/Versions/A/PrivateHeaders/AIListOutlineView+Drawing.h deleted file mode 100644 index f30db23..0000000 --- a/telegram-adium/Adium.framework/Versions/A/PrivateHeaders/AIListOutlineView+Drawing.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AB Display Format Defaults.plist b/telegram-adium/Adium.framework/Versions/A/Resources/AB Display Format Defaults.plist deleted file mode 100644 index 05f9579..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AB Display Format Defaults.plist and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/designable.nib deleted file mode 100644 index 909fbcf..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/designable.nib +++ /dev/null @@ -1,545 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSImageCell - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIAuthorizationRequestsWindowController - - - FirstResponder - - - NSApplication - - - 4111 - 2 - {{747, 489}, {422, 234}} - 805306368 - Authorization Requests - NSWindow - - - {400, 185} - - - 274 - - - - 274 - - - - 2304 - - - - 274 - {423, 235} - - YES - NO - YES - - - -2147483392 - {{-26, 0}, {16, 17}} - - - - icon - 52 - 40 - 1000 - - 75497536 - 2048 - - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - 3 - MAA - - - - - 134217728 - 33685504 - 0 - 0 - 0 - NO - - - - - request - 365 - 40 - 1000 - - 75497536 - 2048 - - - - - - - 337641536 - 2048 - Text Cell - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - 1 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 42 - 1052770304 - - - 2 - 4 - 15 - 0 - YES - 0 - 1 - - - {423, 235} - - - - - 6 - - - - -2147483376 - {{408, 0}, {15, 220}} - - NO - - _doScroller: - 0.99588480000000001 - - - - 258 - {{-100, -100}, {467, 15}} - - NO - 1 - - _doScroller: - 0.85063750000000005 - - - {{-1, 0}, {423, 235}} - - - 133648 - - - - QSAAAECgAABCMAAAQjAAAA - 0.25 - 4 - 1 - - - {422, 234} - - {{0, 0}, {1400, 1050}} - {400, 207} - {10000000000000, 10000000000000} - authorizations - YES - - - - - - - tableView - - - - 46 - - - - window - - - - 58 - - - - delegate - - - - 57 - - - - delegate - - - - 47 - - - - dataSource - - - - 48 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - Authorization Requests - - - 2 - - - - - - - - 3 - - - - - - - - - - 4 - - - - - 5 - - - - - 6 - - - - - - - - - 9 - - - - - - - - 10 - - - - - 8 - - - - - - - - 26 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{689, 857}, {422, 234}} - - AIImageTextCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAlternatingRowTableView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 58 - - - - - AIAuthorizationRequestsWindowController - AIWindowController - - tableView - NSTableView - - - tableView - - tableView - NSTableView - - - - IBProjectSource - ./Classes/AIAuthorizationRequestsWindowController.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/keyedobjects.nib deleted file mode 100644 index 7d735e3..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AIAuthorizationRequestsWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/designable.nib deleted file mode 100644 index c289970..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/designable.nib +++ /dev/null @@ -1,604 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSScrollView - NSScroller - NSSplitView - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIConsoleController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{410, 362}, {480, 493}} - 1886912512 - Console - - NSWindow - - - View - - - {213, 107} - - - 256 - - - - 274 - - - - 274 - - - - 2322 - - - - 2322 - {478, 270} - - - - - - - - - - - - - - 38 - - - - 478 - 1 - - - 117582693 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {478, 10000000} - - - - {{1, 1}, {478, 270}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 270}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {480, 272} - - - YES - 133650 - - - - 0.25 - 4 - 1 - - - - 274 - - - - 2322 - - - - 2322 - {478, 151} - - - - - - - - - - - - - - 38 - - - - 478 - 1 - - - 117582691 - 0 - - - - - - - - - - - - - - 1 - - 6 - {487, 10000000} - - - - {{1, 1}, {478, 151}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 151}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, 281}, {480, 153}} - - - YES - 133650 - - - - 0.25 - 4 - 1 - - - {{0, 60}, {480, 434}} - - - - - - 289 - {{365, 12}, {101, 32}} - - YES - - 67108864 - 134217728 - Send - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 1 - - - - 200 - 25 - - NO - - - - 292 - {{14, 12}, {100, 32}} - - - YES - - 67108864 - 134217728 - Clear Log - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {480, 493} - - - {{0, 0}, {1920, 1058}} - {213, 129} - {10000000000000, 10000000000000} - consolewindow - YES - - - - NO - - - - send: - - - - 30 - - - - clearLog: - - - - 31 - - - - consoleWindow - - - - 32 - - - - logView - - - - 34 - - - - injectView - - - - 33 - - - - delegate - - - - 14 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 5 - - - - - - Window - - - 6 - - - - - - - - - - 11 - - - - - - - - - 7 - - - - - - - - - - 9 - - - - - - - - - - 12 - - - - - - - - 13 - - - - - - - - 24 - - - - - 25 - - - - - 26 - - - - - 27 - - - - - 28 - - - - - 29 - - - - - -3 - - - Application - - - 8 - - - - - 10 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - - 0 - IBCocoaFramework - YES - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/keyedobjects.nib deleted file mode 100644 index 6138d0d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AIConsole.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountDefaults.plist b/telegram-adium/Adium.framework/Versions/A/Resources/AccountDefaults.plist deleted file mode 100644 index 9ca59b3..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AccountDefaults.plist and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/designable.nib deleted file mode 100644 index 869fee9..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/designable.nib +++ /dev/null @@ -1,363 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 40}, {170, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{172, 38}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 11}, {170, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{172, 9}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {457, 60} - - NSView - - NSResponder - - - - - - - view_options - - - - 37 - - - - textField_connectHost - - - - 38 - - - - textField_connectPort - - - - 39 - - - - changedPreference: - - - - 40 - - - - changedPreference: - - - - 41 - - - - label_server - - - - 42 - - - - label_port - - - - 43 - - - - view_anchorToRightSide - - - - 44 - - - - view_anchorToRightSide - - - - 45 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 34 - - - - - - - - - Options - - - 32 - - - - - - - - 33 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 50 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/keyedobjects.nib deleted file mode 100644 index f300c48..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AccountOptions.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/designable.nib deleted file mode 100644 index 96c4253..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/designable.nib +++ /dev/null @@ -1,435 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{139, -1}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{61, 0}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{61, 29}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{138, 23}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {500, 48} - - NSView - - NSResponder - - - - - - - checkBox_sendTyping - - - - 54 - - - - view_privacy - - - - 42 - - - - popUp_encryption - - - - 65 - - - - changedPreference: - - - - 53 - - - - label_encryption - - - - 68 - - - - changedPreference: - - - - 66 - - - - label_typing - - - - 69 - - - - view_anchorToLeftSide - - - - 70 - - - - view_anchorToRightSide - - - - 71 - - - - view_anchorToRightSide - - - - 72 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 34 - - - - - - - - - Privacy - - - 43 - - - - - - - - 44 - - - - - - - - 46 - - - - - - - - 62 - - - - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - - - - 59 - - - - - - - - 64 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 77 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/keyedobjects.nib deleted file mode 100644 index a7c79f8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AccountPrivacy.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/designable.nib deleted file mode 100644 index be00cb4..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/designable.nib +++ /dev/null @@ -1,265 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 3}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{54, 0}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - {340, 22} - - NSView - - NSResponder - - - - - - - view_profile - - - - 29 - - - - label_alias - - - - 43 - - - - changedPreference: - - - - 30 - - - - textField_alias - - - - 31 - - - - view_anchorToRightSide - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 20 - - - - - - - Profile - - - 27 - - - - - - - - 28 - - - - - - - - 45 - - - - - 46 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 46 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/keyedobjects.nib deleted file mode 100644 index 8df4c48..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AccountProfile.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/designable.nib deleted file mode 100644 index 9459ebd..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/designable.nib +++ /dev/null @@ -1,651 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIAccountViewController - - - FirstResponder - - - NSApplication - - - - 274 - - - - 268 - {{139, 21}, {183, 32}} - - YES - - 67108864 - 134217728 - Sign up for an account - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 264 - {{142, 99}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 102}, {140, 17}} - - - YES - - 67108864 - 71303168 - User Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 72}, {140, 17}} - - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{142, 69}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 121} - - - NSView - - NSResponder - - - - - - - view_setup - - - - 13 - - - - textField_accountUIDLabel - - - - 15 - - - - textField_accountUID - - - - 16 - - - - textField_password - - - - 17 - - - - changedPreference: - - - - 18 - - - - changedPreference: - - - - 19 - - - - label_password - - - - 45 - - - - button_SignUp - - - - 54 - - - - signUpAccount: - - - - 55 - - - - view_anchorToRightSide - - - - 43 - - - - view_anchorToRightSide - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 5 - - - - - - - - - - Setup - - - 9 - - - - - - - - 10 - - - - - - - - 11 - - - - - - - - 12 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - -3 - - - Application - - - 51 - - - - - - - - 52 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AIAccountViewController - NSObject - - id - id - - - - changedPreference: - id - - - signUpAccount: - id - - - - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - button_SignUp - NSButton - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/keyedobjects.nib deleted file mode 100644 index 71ff658..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AccountSetup.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_AIM.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_AIM.scpt deleted file mode 100644 index bcaa6f0..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_AIM.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_ICQ.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_ICQ.scpt deleted file mode 100644 index 468e2c1..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_ICQ.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Jabber.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Jabber.scpt deleted file mode 100644 index d3e76c2..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Jabber.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_MSN.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_MSN.scpt deleted file mode 100644 index 28b9ea6..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_MSN.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_SMS.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_SMS.scpt deleted file mode 100644 index ba6c785..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_SMS.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Yahoo.scpt b/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Yahoo.scpt deleted file mode 100644 index da95d55..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/AdiumAddressBookAction_Yahoo.scpt and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/Authorize.tiff b/telegram-adium/Adium.framework/Versions/A/Resources/Authorize.tiff deleted file mode 100644 index a3272e6..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/Authorize.tiff and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/DefaultBlockedStatusIcon.png b/telegram-adium/Adium.framework/Versions/A/Resources/DefaultBlockedStatusIcon.png deleted file mode 100644 index 39e203f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/DefaultBlockedStatusIcon.png and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/Deny.tiff b/telegram-adium/Adium.framework/Versions/A/Resources/Deny.tiff deleted file mode 100644 index 711846b..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/Deny.tiff and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/Ignore.tiff b/telegram-adium/Adium.framework/Versions/A/Resources/Ignore.tiff deleted file mode 100644 index 6a243f8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/Ignore.tiff and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/Info.plist b/telegram-adium/Adium.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index ac5c650..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/Info.plist and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/designable.nib deleted file mode 100644 index 62bf627..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/designable.nib +++ /dev/null @@ -1,521 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCJoinChatWindowController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{231, 441}, {337, 246}} - 1886912512 - - NSWindow - - View - - - {213, 107} - - - 256 - - - - 274 - {{20, 60}, {297, 125}} - - - NSView - - NSResponder - - - - 289 - {{248, 12}, {75, 32}} - - YES - - 67108864 - 134217728 - Join - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 289 - {{166, 12}, {82, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 267 - {{79, 201}, {241, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 268 - {{17, 207}, {60, 17}} - - YES - - 67108864 - 71303168 - Account: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {337, 246} - - {{0, 0}, {1400, 1050}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - button_cancel - - - - 61 - - - - button_joinChat - - - - 62 - - - - view_customView - - - - 63 - - - - popUp_service - - - - 64 - - - - joinChat: - - - - 66 - - - - closeWindow: - - - - 67 - - - - label_account - - - - 69 - - - - window - - - - 70 - - - - window_anchorOnRightSide - - - - 53 - - - - view_anchorToLeftSide - - - - 54 - - - - delegate - - - - 68 - - - - initialFirstResponder - - - - 71 - - - - nextKeyView - - - - 49 - - - - window_anchorOnLeftSide - - - - 52 - - - - view_anchorToRightSide - - - - 55 - - - - window_anchorOnRightSide - - - - 56 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 32 - - - - - - Join Chat - - - 27 - - - - - - - - - - - - 31 - - - - - - - - 34 - - - - - - - - 35 - - - - - 36 - - - - - - - - 37 - - - - - - - - 73 - - - - - 74 - - - - - - - - 75 - - - - - 76 - - - - - 30 - - - - - - - - 29 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 76 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/keyedobjects.nib deleted file mode 100644 index 20d024f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/JoinChatWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/designable.nib deleted file mode 100644 index 156f52b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/designable.nib +++ /dev/null @@ -1,713 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - CSNewContactAlertWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{23, 299}, {550, 351}} - 1886912512 - - NSPanel - - View - - - {213, 107} - - - 256 - - - - 264 - {{0, 305}, {550, 30}} - - AIImageTextCellView - NSView - - - - 266 - {{159, 262}, {270, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 266 - {{159, 230}, {270, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 257 - {{458, 12}, {78, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 1 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{376, 12}, {82, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - 268 - {{17, 236}, {140, 17}} - - YES - - 67108864 - 71303168 - Action: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{17, 268}, {140, 17}} - - YES - - 67108864 - 71303168 - Event: - - - - - - NO - 1 - - - - 272 - {{0, 60}, {550, 162}} - - NSView - NSResponder - - - - 256 - {{18, 21}, {207, 18}} - - YES - - 67108864 - 0 - Delete after event occurs - - - 1211912448 - 2 - - NSSwitch - - - - 200 - 25 - - NO - - - {{1, 1}, {550, 351}} - - {{0, 0}, {1400, 1050}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 7 - - - - popUp_event - - - - 33 - - - - popUp_action - - - - 34 - - - - cancel: - - - - 37 - - - - save: - - - - 40 - - - - view_auxiliary - - - - 42 - - - - checkbox_oneTime - - - - 62 - - - - headerView - - - - 84 - - - - button_OK - - - - 93 - - - - button_cancel - - - - 94 - - - - label_Action - - - - 95 - - - - label_Event - - - - 96 - - - - delegate - - - - 8 - - - - view_anchorToLeftSide - - - - 85 - - - - window_anchorOnRightSide - - - - 86 - - - - view_anchorToRightSide - - - - 97 - - - - view_anchorToRightSide - - - - 88 - - - - view_anchorToRightSide - - - - 87 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 6 - - - - - - New Alert - - - 5 - - - - - - - - - - - - - - - - 14 - - - - - - - - 19 - - - - - - - - 24 - - - - - - - - 25 - - - - - - - - 28 - - - - - - - - 39 - - - - - - - - 41 - - - - - 61 - - - - - - - - 83 - - - - - 99 - - - - - - - - 100 - - - - - - - - 101 - - - - - 102 - - - - - 103 - - - - - 104 - - - - - 105 - - - - - 17 - - - - - - - - 16 - - - - - 20 - - - - - - - - 21 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 105 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/keyedobjects.nib deleted file mode 100644 index bee621f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlert.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/designable.nib deleted file mode 100644 index 0f1a35b..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/designable.nib +++ /dev/null @@ -1,576 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - CSNewContactAlertWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{144, 371}, {550, 319}} - 1886912512 - - NSPanel - - View - - - {213, 107} - - - 256 - - - - 264 - {{0, 273}, {550, 30}} - - AIImageTextCellView - NSView - - - - 266 - {{159, 230}, {270, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 257 - {{458, 12}, {78, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 1 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{376, 12}, {82, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - 268 - {{17, 236}, {140, 17}} - - YES - - 67108864 - 71303168 - Action: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 272 - {{0, 60}, {550, 162}} - - NSView - NSResponder - - - - 256 - {{18, 21}, {207, 18}} - - YES - - 67108864 - 0 - Delete after event occurs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - {{1, 1}, {550, 319}} - - {{0, 0}, {1400, 1050}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 7 - - - - popUp_action - - - - 34 - - - - cancel: - - - - 37 - - - - save: - - - - 40 - - - - view_auxiliary - - - - 42 - - - - checkbox_oneTime - - - - 62 - - - - headerView - - - - 84 - - - - button_cancel - - - - 93 - - - - button_OK - - - - 94 - - - - label_Action - - - - 95 - - - - delegate - - - - 8 - - - - view_anchorToLeftSide - - - - 85 - - - - window_anchorOnRightSide - - - - 86 - - - - view_anchorToRightSide - - - - 97 - - - - view_anchorToRightSide - - - - 88 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 6 - - - - - - New Alert - - - 5 - - - - - - - - - - - - - - 19 - - - - - - - - 24 - - - - - - - - 25 - - - - - - - - 28 - - - - - - - - 41 - - - - - 61 - - - - - - - - 83 - - - - - 99 - - - - - - - - 100 - - - - - 101 - - - - - 102 - - - - - 103 - - - - - 20 - - - - - - - - 21 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 103 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/keyedobjects.nib deleted file mode 100644 index f8ed05b..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/NewAlertNoEvents.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/designable.nib deleted file mode 100644 index ec7674d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/designable.nib +++ /dev/null @@ -1,733 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPresetManagementController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{209, 341}, {345, 210}} - 1886912512 - - NSPanel - - View - - - {300, 107} - - - 256 - - - - 260 - - - - 2304 - - - - 256 - {197, 154} - - YES - NO - YES - - - 256 - {{121, 0}, {16, 17}} - - - - 194 - 40 - 1000 - - 75497536 - 2048 - - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - 3 - MAA - - - - - 338690112 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - - 3 - MQA - - - 6 - System - controlTextColor - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 306184192 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {197, 154}} - - - - - 6 - System - controlBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - 4 - - - - -2147483392 - {{183, 1}, {15, 154}} - - NO - - _doScroller: - 0.81052631139755249 - - - - -2147483392 - {{-100, -100}, {182, 15}} - - NO - 1 - - _doScroller: - 0.92385786771774292 - - - {{20, 20}, {199, 156}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 256 - {{231, 148}, {100, 32}} - - YES - - 67108864 - 134217728 - Duplicate - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - d - 200 - 25 - - NO - - - - 256 - {{231, 116}, {100, 32}} - - YES - - 67108864 - 134217728 - Rename - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 256 - {{231, 84}, {100, 32}} - - YES - - 67108864 - 134217728 - Delete - - - -2038284288 - 1 - - -  - 200 - 25 - - NO - - - - 256 - {{231, 12}, {100, 32}} - - YES - - 67108864 - 134217728 - Done - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 258 - {{17, 184}, {311, 17}} - - YES - - 67108864 - 4194304 - Edit presets: - - - - 6 - System - controlColor - - - - - NO - 1 - - - {345, 210} - - {{0, 0}, {1400, 1050}} - {300, 129} - {10000000000000, 10000000000000} - YES - - - - - - - button_rename - - - - 105 - - - - duplicatePreset: - - - - 111 - - - - window - - - - 42 - - - - closeWindow: - - - - 108 - - - - deletePreset: - - - - 109 - - - - button_done - - - - 107 - - - - button_delete - - - - 106 - - - - tableView_presets - - - - 103 - - - - renamePreset: - - - - 110 - - - - label_editPresets - - - - 124 - - - - button_duplicate - - - - 104 - - - - initialFirstResponder - - - - 114 - - - - delegate - - - - 84 - - - - nextKeyView - - - - 115 - - - - dataSource - - - - 113 - - - - delegate - - - - 112 - - - - nextKeyView - - - - 116 - - - - window_anchorOnRightSide - - - - 120 - - - - window_anchorOnRightSide - - - - 121 - - - - nextKeyView - - - - 117 - - - - nextKeyView - - - - 118 - - - - window_anchorOnRightSide - - - - 122 - - - - nextKeyView - - - - 119 - - - - window_anchorOnRightSide - - - - 123 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - 95 - - - - - - - - - - 94 - - - - - - - - 96 - - - - - - - - 98 - - - - - - - - 99 - - - - - - - - 100 - - - - - - - - 101 - - - - - - - - 102 - - - - - - - - 126 - - - - - 127 - - - - - 128 - - - - - 129 - - - - - 130 - - - - - 131 - - - - - 132 - - - - - 133 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 133 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/keyedobjects.nib deleted file mode 100644 index 50b0616..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/PresetManagement.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/designable.nib deleted file mode 100644 index da22fcf..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/designable.nib +++ /dev/null @@ -1,671 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPresetNameSheetController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{285, 440}, {368, 129}} - 1886912512 - - NSPanel - - View - - - {300, 107} - - - 256 - - - - 256 - {{17, 62}, {46, 18}} - - YES - - 67108864 - 71303168 - Title: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {328, 19} - - - - - - Your information here - - - - 6 - System - textColor - - - - - 4 - - - 28 - - - 56 - - - 84 - - - 112 - - - 140 - - - 168 - - - 196 - - - 224 - - - 252 - - - 280 - - - 308 - - - 336 - - - - - - - - - - 38 - - - - 328 - 1 - - - 117574628 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {350, 10000000} - - - - {328, 19} - - - - - - {1, -1} - 0 - - 4 - - - - -2147483392 - {{-100, -100}, {15, 56}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{20, 90}, {328, 19}} - - - 133120 - - - - 0.25 - 4 - 1 - - - - 256 - {{188, 12}, {82, 32}} - - YES - - 67108864 - 137887744 - Cancel - - - -2038284288 - 1 - - Helvetica - 13 - 16 - - - Gw - 200 - 25 - - NO - - - - 256 - {{68, 60}, {280, 22}} - - YES - - -1804599231 - 1024 - - - - YES - - 6 - System - textBackgroundColor - - - - - NO - 1 - - - - 256 - {{270, 12}, {84, 32}} - - YES - - 67108864 - 137887744 - OK - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - {368, 129} - - {{0, 0}, {1400, 1050}} - {300, 129} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 42 - - - - scrollView_explanatoryText - - - - 126 - - - - textView_explanatoryText - - - - 127 - - - - textField_name - - - - 128 - - - - cancel: - - - - 129 - - - - okay: - - - - 130 - - - - button_cancel - - - - 137 - - - - button_ok - - - - 138 - - - - label_name - - - - 139 - - - - delegate - - - - 84 - - - - initialFirstResponder - - - - 131 - - - - window_anchorOnLeftSide - - - - 135 - - - - nextKeyView - - - - 134 - - - - view_anchorToRightSide - - - - 140 - - - - nextKeyView - - - - 132 - - - - nextKeyView - - - - 133 - - - - view_anchorToLeftSide - - - - 136 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - 120 - - - - - - - - 121 - - - - - - - - - - 124 - - - - - 122 - - - - - - - - 123 - - - - - - - - 125 - - - - - - - - 142 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 146 - - - - - 147 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 147 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/keyedobjects.nib deleted file mode 100644 index 2aee4d8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/PresetNameSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/designable.nib deleted file mode 100644 index 9e79bf9..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/designable.nib +++ /dev/null @@ -1,586 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AICustomSocialNetworkingStatusWindowController - - - FirstResponder - - - NSApplication - - - 7 - 2 - {{196, 345}, {409, 165}} - 536870912 - Social Networking Custom Status - NSWindow - - - - - 256 - - - - 256 - {{17, 128}, {164, 17}} - - YES - - 67108864 - 4194304 - Social Networking Status: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {355, 58} - - - - - - TGluZSBvZiB0ZXh0CkFub3RoZXIgbGluZSBvZiB0ZXh0CkFub3RoZXIgbGluZSBvZiB0ZXh0CkFub3Ro -ZXIgbGluZSBvZiB0ZXh0A - - - - Helvetica - 12 - 16 - - - 4 - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {368, 10000000} - - - - {{1, 1}, {355, 58}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - 256 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{32, 60}, {357, 60}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 289 - {{311, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{227, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - {409, 165} - - {{0, 0}, {1400, 1050}} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 27 - - - - cancel: - - - - 19 - - - - textview_message - - - - 16 - - - - button_okay - - - - 14 - - - - label_socialNetworkingStatus - - - - 17 - - - - okay: - - - - 18 - - - - button_cancel - - - - 15 - - - - initialFirstResponder - - - - 21 - - - - delegate - - - - 20 - - - - delegate - - - - 23 - - - - nextKeyView - - - - 24 - - - - nextKeyView - - - - 25 - - - - nextKeyView - - - - 26 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - Window (Social Networking Custom Status) - - - 2 - - - - - - - - - - - 3 - - - - - - - - 5 - - - - - - - - - - 6 - - - - - 9 - - - - - - - - 10 - - - - - - - - 38 - - - - - 39 - - - - - 40 - - - - - 41 - - - - - 42 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 42 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/keyedobjects.nib deleted file mode 100644 index 28116c8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/SocialNetworkingCustomStatus.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/designable.nib deleted file mode 100644 index 0af0612..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/designable.nib +++ /dev/null @@ -1,1121 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSImageCell - NSImageView - NSScrollView - NSScroller - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESTextAndButtonsWindowController - - - FirstResponder - - - NSApplication - - - 7 - 2 - {{855, 483}, {420, 131}} - 1618477056 - - NSWindow - - View - - - {94, 7} - - - 256 - - - - 289 - {{224, 12}, {90, 32}} - - - YES - - 67108864 - 134217728 - Cancel - - .LucidaGrandeUI - 13 - 1558 - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 292 - {{98, 12}, {90, 32}} - - - YES - - 67108864 - 134217728 - No - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - 289 - {{312, 12}, {90, 32}} - - YES - - 67108864 - 134217728 - Yes - - - -2035924992 - 1 - - - - DQ - - 200 - 25 - - NO - - - - 268 - - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - - NSFilenamesPboardType - - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - NeXT filename pasteboard type - - - {{24, 51}, {64, 64}} - - - YES - - 134217728 - 33554432 - - NSImage - NSApplicationIcon - - 0 - 0 - 0 - NO - - NO - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {296, 15} - - - - - - - awefweff - - - - 1 - MCAwIDAAA - - - LucidaGrande - 12 - 16 - - - - - - - - - - - 38 - - - - 296 - 1 - - - 117574625 - 0 - - - 1 - MSAxIDEAA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {304, 10000000} - - - - {296, 15} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{104, 76}, {296, 15}} - - - 133120 - - - - 0.25 - 4 - 1 - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {296, 16} - - - - - - - awefweff - - - - - LucidaGrande-Bold - 12 - 16 - - - 2 - - - - - - - - - 38 - - - - 296 - 1 - - - 117574624 - 0 - - - - - - - - - - - - - - - 0 - - 6 - {296, 10000000} - - - - {296, 16} - - - - - - {1, -1} - 0 - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{104, 99}, {296, 16}} - - - 133120 - - - - 0.25 - 4 - 1 - - - - 266 - {{107, 52}, {295, 18}} - - - YES - - -2080374784 - 0 - awefweff - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - {420, 131} - - - {{0, 0}, {1920, 1058}} - {94, 29} - {10000000000000, 10000000000000} - YES - - - - - - - button_default - - - - 80 - - - - button_alternate - - - - 81 - - - - button_other - - - - 82 - - - - window - - - - 85 - - - - pressedButton: - - - - 86 - - - - pressedButton: - - - - 87 - - - - pressedButton: - - - - 88 - - - - textView_message - - - - 103 - - - - scrollView_message - - - - 104 - - - - textView_messageHeader - - - - 109 - - - - scrollView_messageHeader - - - - 110 - - - - imageView - - - - 111 - - - - checkbox_suppression - - - - 181 - - - - nextKeyView - - - - 74 - - - - view_anchorToRightSide - - - - 101 - - - - window_anchorOnLeftSide - - - - 102 - - - - nextKeyView - - - - 77 - - - - view_anchorToRightSide - - - - 99 - - - - view_anchorToLeftSide - - - - 100 - - - - delegate - - - - 106 - - - - initialFirstResponder - - - - 182 - - - - window_anchorOnRightSide - - - - 97 - - - - view_anchorToLeftSide - - - - 98 - - - - nextKeyView - - - - 169 - - - - delegate - - - - 114 - - - - nextKeyView - - - - 168 - - - - delegate - - - - 115 - - - - nextKeyView - - - - 112 - - - - nextKeyView - - - - 166 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 72 - - - - - - Panel1 - - - 67 - - - - - - - - - - - - - - 65 - - - - - - - - 66 - - - - - - - - 71 - - - - - - - - 73 - - - - - - - - 93 - - - - - - - - - - 92 - - - - - 108 - - - - - - - - - - 107 - - - - - 135 - - - - - - - - 185 - - - - - 186 - - - - - 187 - - - - - 188 - - - - - 189 - - - - - 190 - - - - - 191 - - - - - 192 - - - - - 193 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - {{198, 749}, {420, 131}} - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 193 - - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - ESTextAndButtonsWindowController - AIWindowController - - pressedButton: - id - - - pressedButton: - - pressedButton: - id - - - - NSButton - NSButton - NSButton - NSButton - NSImageView - NSScrollView - NSScrollView - NSTextView - NSTextView - - - - button_alternate - NSButton - - - button_default - NSButton - - - button_other - NSButton - - - checkbox_suppression - NSButton - - - imageView - NSImageView - - - scrollView_message - NSScrollView - - - scrollView_messageHeader - NSScrollView - - - textView_message - NSTextView - - - textView_messageHeader - NSTextView - - - - IBProjectSource - ./Classes/ESTextAndButtonsWindowController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {128, 128} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/keyedobjects.nib deleted file mode 100644 index 0843f60..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/TextAndButtonsWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index f4acf9d..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1959 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{447, 335}, {403, 521}} - 1886912512 - Estat personalitzat - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - D'acord - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - - YES - - 67108864 - 134217728 - Cancel·la - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {372, 18}} - - - YES - - 67108864 - 0 - Mostra'm inactiu immediatament - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - - YES - - 67108864 - 0 - Resposta automàtica - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - - YES - - 67108864 - 0 - Amb un missatge personalitzat: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 79691776 - - - - - - file://localhost/Users/wixardy/Desktop/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - - YES - - 67108864 - 4194304 - Minuts - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - - YES - - 67108864 - 4194304 - Hores - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 104}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Títol - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {121, 17}} - - - YES - - 67108864 - 4194304 - Missatge d'estat: - - - - - - NO - 1 - - - {390, 119} - - - - - {{11, 309}, {390, 119}} - - - {0, 0} - - 67108864 - 0 - Títol - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {181, 18}} - - - YES - - 67108864 - 0 - Desa l'estat personalitzat - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - - YES - - 67108864 - 4194304 - Títol: - - - - - - NO - 1 - - - {395, 30} - - - - - {{-2, 480}, {395, 30}} - - - {0, 0} - - 67108864 - 0 - Títol - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - - YES - - 67108864 - 71303168 - RXN0YXQ6Cg - - - - - - NO - 1 - - - {401, 27} - - - - - {{-2, 433}, {401, 27}} - - - {0, 0} - - 67108864 - 0 - Títol - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {103, 18}} - - - YES - - 67108864 - 0 - Silencia sons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 46}, {110, 18}} - - - YES - - 67108864 - 0 - Silencia Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{399, 176}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index a9b4dbb..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EmoticonNames.strings deleted file mode 100644 index a7d6de3..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/Localizable.strings deleted file mode 100644 index 6bb5957..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ca.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 0c6792a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{297, 228}, {403, 496}} - 1886912512 - Vlastní stav - NSWindow - - View - - - {403, 496} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Budiž - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Zrušit - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 107}, {347, 18}} - - YES - - 67108864 - 0 - Přejít do stavu nepřítomen ihned - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 252}, {373, 18}} - - YES - - 67108864 - 0 - Automatická odpověď - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 230}, {350, 18}} - - YES - - 67108864 - 0 - S vlastní automatickou odpovědí: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {{0, 77}, {344, 91}} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 131}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minut - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Hodin - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 79}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Titul - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {{0, 77}, {355, 91}} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{-2, 103}, {322, 17}} - - YES - - 67108864 - 4194304 - Stavová zpráva: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 284}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Titul - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 443}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 256 - {{12, 27}, {169, 18}} - - YES - - 67108864 - 0 - Uložit vlastní stav - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{57, 3}, {325, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{7, 5}, {45, 17}} - - YES - - 67108864 - 4194304 - Titul: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 455}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Titul - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{55, 0}, {331, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, 7}, {42, 16}} - - YES - - 67108864 - 71303168 - U3RhdjoKA - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 408}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Titul - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 47}, {104, 18}} - - YES - - 67108864 - 0 - Ztlumit zvuky - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 22}, {107, 18}} - - YES - - 67108864 - 0 - Tichý Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 496} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 518} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 3142a63..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EmoticonNames.strings deleted file mode 100644 index 01f9b0f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/Localizable.strings deleted file mode 100644 index 6a9727d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/cs.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index e7b71e7..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1964 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Speciel status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - - YES - - 67108864 - 134217728 - Anuller - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - - YES - - 67108864 - 0 - Fremstå som inaktiv med det samme - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - - YES - - 67108864 - 0 - Autosvar - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - - YES - - 67108864 - 0 - Med en speciel autosvarbesked: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{108, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{84, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{129, 3}, {94, 17}} - - - YES - - 67108864 - 4194304 - minutter - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - - YES - - 67108864 - 4194304 - timer - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 104}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - - YES - - 67108864 - 4194304 - Statusbesked: - - - - - - NO - 1 - - - {390, 119} - - - - - {{11, 309}, {390, 119}} - - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - - YES - - 67108864 - 0 - Arkiver speciel status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - - YES - - 67108864 - 4194304 - Titel: - - - - - - NO - 1 - - - {395, 30} - - - - - {{-2, 480}, {395, 30}} - - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{65, 0}, {321, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{4, -11}, {65, 34}} - - - YES - - 67108864 - 71303168 - Tilstand: - - - - - - NO - 1 - - - {401, 27} - - - - - {{-2, 433}, {401, 27}} - - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - - YES - - 67108864 - 0 - Slå lyde fra - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - - YES - - 67108864 - 0 - Slå Growl fra - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index d68f58c..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EmoticonNames.strings deleted file mode 100644 index a760f02..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/Localizable.strings deleted file mode 100644 index 40574a7..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/da.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 942e6e2..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2333 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{203, 117}, {403, 521}} - 1886912512 - Eigener Status - NSWindow - - View - - - {403, 521} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{197, 12}, {108, 32}} - - - YES - - 67108864 - 134217728 - Abbrechen - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 132}, {205, 18}} - - - YES - - 67108864 - 0 - Sofort inaktiv erscheinen für: - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 277}, {350, 18}} - - - YES - - 67108864 - 0 - Automatisch auf eingehende Nachrichten antworten - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 255}, {268, 18}} - - - YES - - 67108864 - 0 - Mit einer eigenen Nachricht antworten: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 156}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - - YES - - 67108864 - 4194304 - Minuten - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {52, 17}} - - - YES - - 67108864 - 4194304 - Stunden - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 104}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{2, 103}, {322, 17}} - - - YES - - 67108864 - 4194304 - Statusnachricht: - - - - - - NO - 1 - - - {390, 119} - - - - - {{9, 309}, {390, 119}} - - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {171, 18}} - - - YES - - 67108864 - 0 - Als Status speichern - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{54, 3}, {328, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 5}, {36, 17}} - - - YES - - 67108864 - 71303168 - Titel: - - - - - - NO - 1 - - - {395, 30} - - - - - {{-2, 480}, {395, 30}} - - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{77, 1}, {311, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 12 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -9}, {62, 32}} - - - YES - - 67108864 - 71303168 - U3RhdHVzdHlwOgo - - - - - - NO - 1 - - - {401, 27} - - - - - {{-2, 433}, {401, 27}} - - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {73, 18}} - - - YES - - 67108864 - 0 - Ton aus - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {159, 18}} - - - YES - - 67108864 - 0 - Growl stummschalten - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - - {{0, 0}, {1400, 1050}} - {403, 499} - {403, 543} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 27 - - - - - - - - 142 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{442, 115}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - id - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - target - id - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - id - id - id - - - - pasteAsRichText: - id - - - scrollPageDown: - id - - - scrollPageUp: - id - - - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - NSTextView - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - target - id - - - target - - target - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 11ba9a2..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EmoticonNames.strings deleted file mode 100644 index 04dbe72..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/Localizable.strings deleted file mode 100644 index 5fb1453..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/de.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index cbbed2a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1925 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{646, 267}, {403, 527}} - 1886912512 - Custom Status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 0}, {84, 32}} - - YES - - 67108864 - 134217728 - ΟΚ - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 0}, {84, 32}} - - YES - - 67108864 - 134217728 - Άκυρο - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 146}, {347, 18}} - - YES - - 67108864 - 0 - Άμεση αδράνεια - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 289}, {373, 18}} - - YES - - 67108864 - 0 - Αυτόματη απάντηση - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - {{35, 269}, {350, 18}} - - YES - - 67108864 - 0 - Προσαρμοσμένη αυτόματη απάντηση - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 170}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Λεπτά - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Ώρες - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 114}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 86}, {147, 34}} - - YES - - 67108864 - 4194304 - Μήνυμα κατάστασης: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 315}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 474}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 34}, {315, 18}} - - YES - - 67108864 - 0 - Αποθήκευση προσαρμοσμένης κατάστασης - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{75, 3}, {307, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, -11}, {56, 34}} - - YES - - 67108864 - 4194304 - Τίτλος: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 486}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{102, 0}, {284, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -45}, {87, 68}} - - YES - - 67108864 - 71303168 - zprOsc+EzqzPg8+EzrHPg863Ogo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 439}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 82}, {106, 18}} - - YES - - 67108864 - 0 - Σίγαση ήχων - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 58}, {109, 18}} - - YES - - 67108864 - 0 - Σίγαση Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 527} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - {{42, 272}, {403, 527}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 1633656..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EmoticonNames.strings deleted file mode 100644 index 2c22303..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings deleted file mode 100644 index ac1a600..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index e599a2c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1927 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Custom Status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Appear Idle Immediately - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Auto-reply - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - With a custom auto-reply message: - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Hours - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Status Message: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Save Custom Status - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Title: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - U3RhdGU6Cg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - Mute Sounds - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - YES - - 67108864 - 0 - Silence Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index af75fcb..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EmoticonNames.strings deleted file mode 100644 index 508f786..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/Localizable.strings deleted file mode 100644 index a246298..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 07d9b20..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1930 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Custom Status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Appear Idle Immediately - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Auto-reply - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - With a custom auto-reply message: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Hours - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Status Message: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Save Custom Status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Title: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - U3RhdGU6Cg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - Mute Sounds - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - YES - - 67108864 - 0 - Silence Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 5b8a6e4..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EmoticonNames.strings deleted file mode 100644 index 270279a..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings deleted file mode 100644 index d0fe1b6..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index e816002..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1926 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{446, 511}, {403, 517}} - 1886912512 - Custom Status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 136}, {347, 18}} - - YES - - 67108864 - 0 - Appear Idle Immediately - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 279}, {373, 18}} - - YES - - 67108864 - 0 - Auto-reply - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 259}, {350, 18}} - - YES - - 67108864 - 0 - With a custom auto-reply message: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 160}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Hours - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 100}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Status Message: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 305}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 464}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 14}, {169, 18}} - - YES - - 67108864 - 0 - Save Custom Status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Title: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 476}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - U3RhdGU6Cg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 429}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 68}, {104, 18}} - - YES - - 67108864 - 0 - Mute Sounds - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 40}, {107, 18}} - - YES - - 67108864 - 0 - Silence Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 517} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{63, 255}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 326eb1d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EmoticonNames.strings deleted file mode 100644 index 508f786..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings deleted file mode 100644 index ec8fd1d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 724dfaa..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2258 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{447, 150}, {422, 496}} - 1886912512 - Estado Personalizado - NSWindow - - View - - - {422, 496} - {403, 477} - - - 256 - - - - 289 - {{324, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Aceptar - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{229, 12}, {95, 32}} - - - YES - - 67108864 - 134217728 - Cancelar - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 116}, {368, 18}} - - - YES - - 67108864 - 0 - Aparecer inactivo inmediatamente - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 258}, {130, 18}} - - - YES - - 67108864 - 0 - Auto-responder - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 238}, {316, 18}} - - - YES - - 67108864 - 0 - Con una respuesta automática personalizada: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {363, 91} - - - - - - - - - - - - - - 38 - - - - 363 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {363, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 139}, {365, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{114, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{90, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{135, 3}, {116, 17}} - - - YES - - 67108864 - 4194304 - Minutos - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - - YES - - 67108864 - 4194304 - Horas - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 87}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {356, 91} - - - - - - - - - - - - - - 38 - - - - 356 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {356, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 4}, {358, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 105}, {126, 17}} - - - YES - - 67108864 - 4194304 - Mensaje de estado: - - - - - - NO - 1 - - - {391, 119} - - - - - {{11, 284}, {391, 119}} - - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 443}, {371, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 256 - {{13, 19}, {216, 18}} - - - YES - - 67108864 - 0 - Guardar estado personalizado - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{47, 3}, {324, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 6}, {45, 17}} - - - YES - - 67108864 - 4194304 - Título: - - - - - - NO - 1 - - - {387, 30} - - - - - {{15, 455}, {387, 30}} - - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{49, 0}, {325, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{-3, -11}, {50, 34}} - - - YES - - 67108864 - 71303168 - RXN0YWRvOgo - - - - - - NO - 1 - - - {387, 27} - - - - - {{15, 408}, {387, 27}} - - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 61}, {129, 18}} - - - YES - - 67108864 - 0 - Silenciar - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 40}, {118, 18}} - - - YES - - 67108864 - 0 - Silenciar Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {422, 496} - - - {{0, 0}, {1440, 878}} - {403, 499} - {422, 518} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {422, 496}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 021c9ee..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EmoticonNames.strings deleted file mode 100644 index 0d031d7..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/Localizable.strings deleted file mode 100644 index a2b6cbb..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/es.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 1b432e4..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2231 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{258, 233}, {403, 527}} - 1886912512 - Mukautettu tila - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Peruuta - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 146}, {347, 18}} - - YES - - 67108864 - 0 - Appear Idle Immediately - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 289}, {373, 18}} - - YES - - 67108864 - 0 - Auto-reply - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 269}, {350, 18}} - - YES - - 67108864 - 0 - With a custom auto-reply message: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 79691776 - - - - - - file://localhost/Users/wixardy/Desktop/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 170}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minuutit - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {50, 17}} - - YES - - 67108864 - 4194304 - Tunnnit - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 110}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Otsikko - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Tilaviesti: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 315}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Otsikko - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 474}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Laatikko - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 264 - {{12, 18}, {187, 18}} - - YES - - 67108864 - 0 - Tallenna mukautettu tila - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{79, 3}, {303, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {65, 17}} - - YES - - 67108864 - 4194304 - Otsikko: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 486}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Otsikko - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Kohta1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - Muut Näkymät - - - - - Kohta2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Kohta3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - U3RhdGU6Cg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 439}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Otsikko - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 78}, {128, 18}} - - YES - - 67108864 - 0 - Mykistä äänet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 49}, {115, 18}} - - YES - - 67108864 - 0 - Hiljennä Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 527} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{84, 226}, {403, 527}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 8381e72..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EmoticonNames.strings deleted file mode 100644 index c2b69ce..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/Localizable.strings deleted file mode 100644 index c43980f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fi.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index f33cd72..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2226 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{180, 182}, {403, 521}} - 1886912512 - Statuts personnalisés - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Annuler - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {347, 18}} - - YES - - 67108864 - 0 - Apparaître en veille immédiatement - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Réponse automatique - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Avec réponse automatique personnalisée : - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {55, 17}} - - YES - - 67108864 - 4194304 - Heures - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {133, 17}} - - YES - - 67108864 - 4194304 - Message de statut : - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {204, 18}} - - YES - - 67108864 - 0 - Sauver le statut personnalisé - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{63, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{22, 6}, {44, 17}} - - YES - - 67108864 - 4194304 - Titre : - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{66, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {51, 34}} - - YES - - 67108864 - 71303168 - U3RhdHV0wqA6CsKgOg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {104, 18}} - - YES - - 67108864 - 0 - Aucun son - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {175, 18}} - - YES - - 67108864 - 0 - Rendre Growl silencieux - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{209, 193}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 1f9937c..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EmoticonNames.strings deleted file mode 100644 index 257fd1d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/Localizable.strings deleted file mode 100644 index 843eb6e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 71b4c5c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{446, 335}, {403, 521}} - 1886912512 - États personnalisés - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Annuler - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Devenir immédiatement sans activité - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Répondre automatiquement - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Avec une réponse automatique personnalisée : - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 2}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 2}, {55, 17}} - - YES - - 67108864 - 4194304 - Heures - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Message d'état : - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {218, 18}} - - YES - - 67108864 - 0 - Enregistrer l'état personnalisé - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{60, 3}, {322, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 6}, {42, 17}} - - YES - - 67108864 - 4194304 - Titre : - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - w4l0YXTCoDoKA - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {218, 18}} - - YES - - 67108864 - 0 - Désactiver les sons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {218, 18}} - - YES - - 67108864 - 0 - Ne plus notifier avec Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index bfaeabb..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EmoticonNames.strings deleted file mode 100644 index 93b5ce8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings deleted file mode 100644 index d69738e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 84143b0..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1926 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{549, 438}, {403, 521}} - 1886912512 - Egyéni állapot - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Mégse - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Legyek azonnal tétlen - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Automatikus válasz - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Egyéni üzenettel: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {344, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Perc - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Óra - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {355, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Állapot üzenet: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Egyéni állapot mentése - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Cím: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{69, 0}, {317, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {54, 34}} - - YES - - 67108864 - 71303168 - Állapot: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {132, 18}} - - YES - - 67108864 - 0 - Hangok némítása - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {143, 18}} - - YES - - 67108864 - 0 - Growl kikapcsolása - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{525, 38}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index af82f45..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EmoticonNames.strings deleted file mode 100644 index 0a36d66..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/Localizable.strings deleted file mode 100644 index dabd18e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/hu.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 2d59894..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{581, 228}, {403, 496}} - 1886912512 - Sérsniðin staða - NSWindow - - View - - - {403, 496} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{209, 12}, {96, 32}} - - YES - - 67108864 - 134217728 - Hætta við - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 107}, {347, 18}} - - YES - - 67108864 - 0 - Leggjast í dvala strax - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 252}, {373, 18}} - - YES - - 67108864 - 0 - Svara sjálfvirkt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 230}, {350, 18}} - - YES - - 67108864 - 0 - Með þessum texta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 131}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - mín - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - klst - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 79}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{-2, 103}, {322, 17}} - - YES - - 67108864 - 4194304 - Stöðuskilaboð: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 284}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 443}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 264 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Vista sérniðna stöðu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{57, 3}, {325, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{16, 5}, {36, 17}} - - YES - - 67108864 - 4194304 - Titill: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 455}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{55, 0}, {331, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, 7}, {42, 17}} - - YES - - 67108864 - 71303168 - U3Rhw7BhOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 408}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 47}, {169, 18}} - - YES - - 67108864 - 0 - Slökkva á hljóðum - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{213, 47}, {172, 18}} - - YES - - 67108864 - 0 - Slökkva á Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 496} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 518} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{575, 337}, {403, 496}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 9af7559..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EmoticonNames.strings deleted file mode 100644 index 7c0c529..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/Localizable.strings deleted file mode 100644 index 8f34d75..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/is.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 9216ee8..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{305, 272}, {403, 527}} - 1886912512 - Stato personalizzato - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Annulla - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 146}, {347, 18}} - - YES - - 67108864 - 0 - Appari inattivo immediatamente - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 289}, {373, 18}} - - YES - - 67108864 - 0 - Risposta automatica - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 269}, {361, 18}} - - YES - - 67108864 - 0 - con un messaggio personalizzato: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 170}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minuti - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Ore - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 110}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Titolo - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {132, 17}} - - YES - - 67108864 - 4194304 - Messaggio di stato: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 315}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Titolo - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 474}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {187, 18}} - - YES - - 67108864 - 0 - Salva stato personalizzato - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{71, 3}, {311, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 7}, {52, 17}} - - YES - - 67108864 - 4194304 - Titolo: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 486}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Titolo - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{68, 0}, {318, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, 3}, {53, 20}} - - YES - - 67108864 - 4194304 - Stato: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 439}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Titolo - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 78}, {187, 18}} - - YES - - 67108864 - 0 - Disattiva suoni - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 50}, {187, 18}} - - YES - - 67108864 - 0 - Disattiva notifiche Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 527} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index f1c1847..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EmoticonNames.strings deleted file mode 100644 index 45254dc..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/Localizable.strings deleted file mode 100644 index bbf16dc..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/it.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 73d3fe5..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1926 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{961, 62}, {403, 527}} - 1886912512 - カスタム状態 - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{205, 12}, {105, 32}} - - YES - - 67108864 - 134217728 - キャンセル - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 138}, {152, 18}} - - YES - - 67108864 - 0 - 一時退席の時間を指定 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{13, 281}, {74, 18}} - - YES - - 67108864 - 0 - 自動返信 - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - {{35, 261}, {217, 18}} - - YES - - 67108864 - 0 - カスタムメッセージで自動返信: - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {344, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 79691776 - - - - - - file://localhost/Users/wixardy/Desktop/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 162}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{105, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{81, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{126, 3}, {16, 16}} - - YES - - 67108864 - 4194304 - - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 4}, {28, 16}} - - YES - - 67108864 - 4194304 - 時間 - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - タイトル - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {355, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{4, 103}, {322, 17}} - - YES - - 67108864 - 4194304 - 状態メッセージ: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 315}, {390, 119}} - - {0, 0} - - 67108864 - 0 - タイトル - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 474}, {369, 5}} - - {0, 0} - - 67108864 - 0 - ボックス - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 264 - {{13, 21}, {139, 18}} - - YES - - 67108864 - 0 - カスタム状態を保存 - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{89, 3}, {290, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 6}, {64, 16}} - - YES - - 67108864 - 71303168 - タイトル: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 486}, {395, 30}} - - {0, 0} - - 67108864 - 0 - タイトル - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{87, 0}, {299, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 12 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, -9}, {71, 32}} - - YES - - 67108864 - 71303168 - 状態: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 439}, {401, 27}} - - {0, 0} - - 67108864 - 0 - タイトル - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {48, 18}} - - YES - - 67108864 - 0 - 消音 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - YES - - 67108864 - 0 - Growl を停止 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 527} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{386, 325}, {403, 527}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 64596ff..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EmoticonNames.strings deleted file mode 100644 index befd937..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/Localizable.strings deleted file mode 100644 index 981289b..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ja.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 7ad8376..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2330 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{446, 235}, {403, 521}} - 1886912512 - Egendefinert status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Avbryt - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {170, 18}} - - YES - - 67108864 - 0 - Bli inaktiv med en gang - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {78, 18}} - - YES - - 67108864 - 0 - Autosvar - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {273, 18}} - - YES - - 67108864 - 0 - Med en egendefinert autosvar-melding: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 79691776 - - - - - - file://localhost/Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{145, 13}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{121, 16}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{166, 19}, {59, 17}} - - YES - - 67108864 - 4194304 - minutter - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{40, 13}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{61, 19}, {38, 17}} - - YES - - 67108864 - 4194304 - timer - - - - - - NO - 1 - - - - 268 - {{16, 16}, {25, 22}} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {238, 55} - - - - {{21, 88}, {238, 55}} - - {0, 0} - - 67108864 - 0 - Tittel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {98, 17}} - - YES - - 67108864 - 4194304 - Statusmelding: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Tittel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {155, 18}} - - YES - - 67108864 - 0 - Husk denne statusen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {41, 17}} - - YES - - 67108864 - 4194304 - Tittel: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Tittel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {47, 34}} - - YES - - 67108864 - 71303168 - U3RhdHVzOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Tittel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {94, 18}} - - YES - - 67108864 - 0 - Slå av lyder - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {170, 18}} - - YES - - 67108864 - 0 - Ingen Growl-meldinger - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1280, 778}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{0, 324}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - id - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - target - id - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - id - id - id - - - - pasteAsRichText: - id - - - scrollPageDown: - id - - - scrollPageUp: - id - - - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - NSTextView - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - target - id - - - target - - target - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 5b27774..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EmoticonNames.strings deleted file mode 100644 index f70b6be..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/Localizable.strings deleted file mode 100644 index 28837f8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nb.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 1ab2201..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2222 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Aangepaste status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{210, 12}, {95, 32}} - - YES - - 67108864 - 134217728 - Annuleer - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {347, 18}} - - YES - - 67108864 - 0 - Verschijn onmiddellijk als inactief - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Automatisch antwoord - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - met aangepast automatisch antwoord: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minuten - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Uren - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{2, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Status bericht: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {197, 18}} - - YES - - 67108864 - 0 - Bewaar aangepaste status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Titel: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{64, 0}, {324, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - Andere weergaven - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -10}, {49, 34}} - - YES - - 67108864 - 71303168 - U3RhdHVzOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {133, 18}} - - YES - - 67108864 - 0 - Demp geluiden - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {169, 18}} - - YES - - 67108864 - 0 - Leg Growl zwijgen op - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{0, 624}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 7f9b9d4..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EmoticonNames.strings deleted file mode 100644 index d7217f3..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/Localizable.strings deleted file mode 100644 index af76510..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/nl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 1b56bcb..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2226 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Własny status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Anuluj - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {347, 18}} - - YES - - 67108864 - 0 - Zmień natychmiast na Bezczynny - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Automatyczna odpowiedź - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Dołącz własną automatyczną odpowiedź: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minut - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Godzin - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Tytuł - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Opis: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Tytuł - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {169, 18}} - - YES - - 67108864 - 0 - Zapisz własny status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {42, 17}} - - YES - - 67108864 - 4194304 - Tytuł: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Tytuł - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{66, 0}, {320, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -10}, {51, 34}} - - YES - - 67108864 - 71303168 - U3RhdHVzOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Tytuł - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {129, 18}} - - YES - - 67108864 - 0 - Wycisz dźwięki - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {107, 18}} - - YES - - 67108864 - 0 - Wyłącz Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 336}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 6ff4f5f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EmoticonNames.strings deleted file mode 100644 index 0dcf41f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/Localizable.strings deleted file mode 100644 index 02758ab..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index ad3f83a..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1930 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Estado Personalizado - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancelar - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Aparecer Inativo Imediatamente - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Resposta Automática - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Com uma resposta automática: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutos - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Horas - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Mensagem do Estado: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Salvar Estado Customizado - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Título: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - RXN0YWRvOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Título - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - Sem Efeitos Sonoros - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - YES - - 67108864 - 0 - Silenciar o Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 0fcb1bc..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EmoticonNames.strings deleted file mode 100644 index 5248e7f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/Localizable.strings deleted file mode 100644 index bbd9fbc..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 022f172..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 119}, {403, 519}} - 1886912512 - Estado personalizado - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 10}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 10}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancelar - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 138}, {347, 18}} - - YES - - 67108864 - 0 - Mostrar como Inactivo - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 281}, {373, 18}} - - YES - - 67108864 - 0 - Responder automaticamente - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 261}, {350, 18}} - - YES - - 67108864 - 0 - Mensagem personalizada: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 162}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutos - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Horas - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 102}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {145, 17}} - - YES - - 67108864 - 4194304 - Mensagem de estado: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 307}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 466}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 19}, {169, 18}} - - YES - - 67108864 - 0 - Guardar estado - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{65, 3}, {317, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {46, 17}} - - YES - - 67108864 - 4194304 - Nome: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 478}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{68, 0}, {318, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {53, 34}} - - YES - - 67108864 - 71303168 - RXN0YWRvOgo - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 431}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 70}, {104, 18}} - - YES - - 67108864 - 0 - Tirar o som - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 45}, {127, 18}} - - YES - - 67108864 - 0 - Desligar o Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 519} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{309, 319}, {403, 519}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 692a121..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EmoticonNames.strings deleted file mode 100644 index 2bc7024..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings deleted file mode 100644 index 1630eba..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 6c76c04..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Параметры статуса - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{202, 12}, {103, 32}} - - YES - - 67108864 - 134217728 - Отменить - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {347, 18}} - - YES - - 67108864 - 0 - Переходить в бездействие - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Отвечать автоматически - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - С текстом сообщения - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{133, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{109, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{154, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - мин - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{73, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{94, 3}, {15, 17}} - - YES - - 67108864 - 4194304 - ч - - - - - - NO - 1 - - - - 268 - {{49, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{34, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Название - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{1, 103}, {374, 17}} - - YES - - 67108864 - 4194304 - Сообщение о статусе: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Название - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {169, 18}} - - YES - - 67108864 - 0 - Сохранить статус - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{83, 3}, {299, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 6}, {71, 17}} - - YES - - 67108864 - 4194304 - Название: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Название - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{66, 0}, {320, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {51, 34}} - - YES - - 67108864 - 71303168 - Статус: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Название - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {259, 18}} - - YES - - 67108864 - 0 - Отключить звук - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {306, 18}} - - YES - - 67108864 - 0 - Отключить Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index bcc2f5d..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EmoticonNames.strings deleted file mode 100644 index ef71752..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/Localizable.strings deleted file mode 100644 index 0163a9f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/ru.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index e599a2c..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1927 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Custom Status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Appear Idle Immediately - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Auto-reply - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - With a custom auto-reply message: - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - Minutes - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - Hours - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - Status Message: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Save Custom Status - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Title: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {42, 34}} - - YES - - 67108864 - 71303168 - U3RhdGU6Cg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - Mute Sounds - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - YES - - 67108864 - 0 - Silence Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index af75fcb..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EmoticonNames.strings deleted file mode 100644 index 946fa12..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/Localizable.strings deleted file mode 100644 index c7f915f..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sk.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 31332f1..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2260 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Status po meri - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - V redu - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - - YES - - 67108864 - 134217728 - Prekliči - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - - YES - - 67108864 - 0 - Takoj postani nedejaven - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - - YES - - 67108864 - 0 - Samodejni odgovor - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - - YES - - 67108864 - 0 - z naslednjim besedilom: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - - YES - - 67108864 - 4194304 - minut - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - - YES - - 67108864 - 4194304 - ur - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 104}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Naslov - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {122, 17}} - - - YES - - 67108864 - 4194304 - Sporočilo o stanju: - - - - - - NO - 1 - - - {390, 119} - - - - - {{11, 309}, {390, 119}} - - - {0, 0} - - 67108864 - 0 - Naslov - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - - YES - - 67108864 - 0 - Shrani stanje po meri - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{69, 3}, {313, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {50, 17}} - - - YES - - 67108864 - 4194304 - Naslov: - - - - - - NO - 1 - - - {395, 30} - - - - - {{-2, 480}, {395, 30}} - - - {0, 0} - - 67108864 - 0 - Naslov - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{64, 0}, {322, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {49, 34}} - - - YES - - 67108864 - 71303168 - U3RhbmplOgo - - - - - - NO - 1 - - - {401, 27} - - - - - {{-2, 433}, {401, 27}} - - - {0, 0} - - 67108864 - 0 - Naslov - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - - YES - - 67108864 - 0 - Utišaj zvok - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {107, 18}} - - - YES - - 67108864 - 0 - Utišaj Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - - {{0, 0}, {1280, 778}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 058acf6..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EmoticonNames.strings deleted file mode 100644 index f0a13f0..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/Localizable.strings deleted file mode 100644 index d273182..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/stackImage.tiff b/telegram-adium/Adium.framework/Versions/A/Resources/stackImage.tiff deleted file mode 100644 index 2c115db..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/stackImage.tiff and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index b7df3a2..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1930 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Anpassad status - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - OK - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Avbryt - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - Bli inaktiv genast - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Autosvar - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - Med ett anpassat autosvar: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - minuter - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {55, 17}} - - YES - - 67108864 - 4194304 - timmar - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {126.22265625, 17}} - - YES - - 67108864 - 4194304 - Statusmeddelande: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - Spara anpassad status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {36, 17}} - - YES - - 67108864 - 4194304 - Titel: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{64.00390625, 0}, {321.99609375, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, 6}, {49.00390625, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Titel - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - Inga ljud - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {183, 18}} - - YES - - 67108864 - 0 - Inga Growl-meddelanden - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1155, 460}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 6fa3c7e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EmoticonNames.strings deleted file mode 100644 index 450f468..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/Localizable.strings deleted file mode 100644 index 510fee6..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/sv.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 14354ee..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1962 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{202, 228}, {403, 496}} - 1886912512 - Özel Durum - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Tamam - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{219, 12}, {86, 32}} - - - YES - - 67108864 - 134217728 - Vazgeç - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 107}, {347, 18}} - - - YES - - 67108864 - 0 - Hemen "Hareketsiz" Duruma Geç - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{13, 252}, {373, 18}} - - - YES - - 67108864 - 0 - Otomatik cevap ver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 230}, {350, 18}} - - - YES - - 67108864 - 0 - Durum mesajından farklı bir mesaj ile - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 131}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - - YES - - 67108864 - 4194304 - Dakika - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {52, 17}} - - - YES - - 67108864 - 4194304 - Saat - - - - - - NO - 1 - - - - 268 - {25, 22} - - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - - {{37, 79}, {330, 22}} - - - {0, 0} - - 67108864 - 0 - Başlık - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{4, 103}, {322, 17}} - - - YES - - 67108864 - 4194304 - Durum Mesajı: - - - - - - NO - 1 - - - {390, 119} - - - - - {{11, 284}, {390, 119}} - - - {0, 0} - - 67108864 - 0 - Başlık - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 443}, {369, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 264 - {{13, 21}, {213, 18}} - - - YES - - 67108864 - 0 - Bu Özel Durum Ayarını Kaydet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{76, 3}, {306, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{12, 5}, {47, 17}} - - - YES - - 67108864 - 4194304 - Başlık: - - - - - - NO - 1 - - - {395, 30} - - - - - {{-2, 455}, {395, 30}} - - - {0, 0} - - 67108864 - 0 - Başlık - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{70, 0}, {316, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{15, -10}, {50, 32}} - - - YES - - 67108864 - 71303168 - RHVydW06Cg - - - - - - NO - 1 - - - {401, 27} - - - - - {{-2, 408}, {401, 27}} - - - {0, 0} - - 67108864 - 0 - Başlık - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 47}, {169, 18}} - - - YES - - 67108864 - 0 - Tüm Sesleri Kapat - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 1}, {189, 18}} - - - YES - - 67108864 - 0 - Growl Uyarısı Gösterme - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 496} - - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 326}, {403, 496}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 105e21e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EmoticonNames.strings deleted file mode 100644 index 6747d23..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/Localizable.strings deleted file mode 100644 index 4aafa8c..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/tr.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index c4cc6ab..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1928 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - Налаштування статусу - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - Гаразд - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{202, 12}, {103, 32}} - - YES - - 67108864 - 134217728 - Скасувати - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{13, 140}, {347, 18}} - - YES - - 67108864 - 0 - Почати байдикувати - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - Автовідповідач - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - З текстом автовідповідача - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{133, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{109, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{154, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - хв - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{73, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{94, 3}, {15, 17}} - - YES - - 67108864 - 4194304 - год - - - - - - NO - 1 - - - - 268 - {{49, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{34, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Назва - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{1, 103}, {374, 17}} - - YES - - 67108864 - 4194304 - Повідомлення про статус: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Назва - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{13, 21}, {169, 18}} - - YES - - 67108864 - 0 - Зберегти статус - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{83, 3}, {299, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 6}, {71, 17}} - - YES - - 67108864 - 4194304 - Назва: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Назва - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{66, 0}, {320, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{13, -11}, {51, 34}} - - YES - - 67108864 - 71303168 - Статус: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Назва - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{13, 72}, {259, 18}} - - YES - - 67108864 - 0 - Вимкнути звук - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{13, 47}, {306, 18}} - - YES - - 67108864 - 0 - Вимкнути Growl - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index d086935..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EmoticonNames.strings deleted file mode 100644 index 7899baa..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/Localizable.strings deleted file mode 100644 index 1959468..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/uk.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 0ee1dd9..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,1921 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{305, 278}, {403, 521}} - 1886912512 - 自定状态 - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - 取消 - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - 马上显示闲置 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - 自动回复 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - 使用自定的自动回复信息: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {344, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 79691776 - - - - - - file://localhost/Users/wixardy/Desktop/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Resources/DVTIbeamCursor.tiff - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - 分钟 - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - 小时 - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {355, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - 状态信息: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 18}, {169, 18}} - - YES - - 67108864 - 0 - 存储自定状态 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{55, 3}, {327, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{14, 6}, {44, 17}} - - YES - - 67108864 - 4194304 - 标题: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{9, -11}, {48, 34}} - - YES - - 67108864 - 71303168 - 54q25oCB77yaCg - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - Title - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - 静音 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 44}, {107, 18}} - - YES - - 67108864 - 0 - 静音通告 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1680, 1028}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{462, 107}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index c1643b2..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EmoticonNames.strings deleted file mode 100644 index 695289b..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings deleted file mode 100644 index b4f60e8..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/designable.nib b/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/designable.nib deleted file mode 100644 index 6fb5127..0000000 --- a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/designable.nib +++ /dev/null @@ -1,2226 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSStepper - NSStepperCell - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIEditStateWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{576, 117}, {403, 521}} - 1886912512 - 自定狀態 - NSWindow - - View - - - {403, 527} - {403, 477} - - - 256 - - - - 289 - {{305, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 268435457 - - Helvetica - 13 - 16 - - - DQ - 200 - 25 - - NO - - - - 289 - {{221, 12}, {84, 32}} - - YES - - 67108864 - 134217728 - 取消 - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 264 - {{12, 140}, {347, 18}} - - YES - - 67108864 - 0 - 立即顯示閒置 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{12, 283}, {373, 18}} - - YES - - 67108864 - 0 - 自動回覆 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 263}, {350, 18}} - - YES - - 67108864 - 0 - 以自定的訊息自動回覆: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 266 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {344, 91} - - - - - - - - - - - - - 38 - - - - 344 - 1 - - - 117600231 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {690, 10000000} - - - - {{1, 1}, {344, 91}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{37, 164}, {346, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 274 - - - - 268 - {{129, -3}, {19, 28}} - - YES - - 67895328 - 0 - - .LucidaGrandeUI - 12 - 4883 - - - 10 - 59 - 1 - YES - YES - - NO - - - - 268 - {{105, 0}, {25, 22}} - - YES - - -1804599231 - 4195328 - 10 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 268 - {{150, 3}, {94, 17}} - - YES - - 67108864 - 4194304 - 分鐘 - - - - 6 - System - controlColor - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 268 - {{24, -3}, {19, 28}} - - YES - - 67895328 - 0 - - - 59 - 1 - YES - YES - - NO - - - - 268 - {{45, 3}, {42, 17}} - - YES - - 67108864 - 4194304 - 小時 - - - - - - NO - 1 - - - - 268 - {25, 22} - - YES - - -1804599231 - 4195328 - 0 - - - YES - - - - NO - 1 - - - {330, 22} - - - - {{37, 104}, {330, 22}} - - {0, 0} - - 67108864 - 0 - 標題 - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 266 - - - - 274 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {355, 91} - - - - - - - - - - - - - 38 - - - - 355 - 1 - - - 117600231 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {712, 10000000} - - - - {{1, 1}, {355, 91}} - - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 91}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{17, 2}, {357, 93}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 256 - {{3, 103}, {106, 17}} - - YES - - 67108864 - 4194304 - 狀態訊息: - - - - - - NO - 1 - - - {390, 119} - - - - {{11, 309}, {390, 119}} - - {0, 0} - - 67108864 - 0 - 標題 - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - {{14, 468}, {369, 5}} - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxAA - - - 3 - 2 - 0 - NO - - - - 268 - {{12, 21}, {169, 18}} - - YES - - 67108864 - 0 - 儲存自定狀態 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - - - - 274 - - - - 256 - {{61, 3}, {321, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{13, 6}, {43, 17}} - - YES - - 67108864 - 4194304 - 標題: - - - - - - NO - 1 - - - {395, 30} - - - - {{-2, 480}, {395, 30}} - - {0, 0} - - 67108864 - 0 - 標題 - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 264 - - - - 274 - - - - 264 - {{57, 0}, {329, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{4, -11}, {51, 34}} - - YES - - 67108864 - 71303168 - 狀態: - - - - - - NO - 1 - - - {401, 27} - - - - {{-2, 433}, {401, 27}} - - {0, 0} - - 67108864 - 0 - 標題 - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 0 - 3 - 0 - NO - - - - 268 - {{12, 72}, {104, 18}} - - YES - - 67108864 - 0 - 靜音 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{12, 47}, {169, 18}} - - YES - - 67108864 - 0 - 將 Growl 設為靜音 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {403, 521} - - {{0, 0}, {1280, 778}} - {403, 499} - {403, 549} - YES - - - - 256 - {125, 1} - - - - - - - window - - - - 42 - - - - textField_title - - - - 43 - - - - label_title - - - - 45 - - - - label_state - - - - 46 - - - - label_statusMessage - - - - 47 - - - - popUp_state - - - - 48 - - - - statusControlChanged: - - - - 49 - - - - textView_statusMessage - - - - 51 - - - - textView_autoReply - - - - 52 - - - - statusControlChanged: - - - - 54 - - - - statusControlChanged: - - - - 55 - - - - checkbox_autoReply - - - - 56 - - - - checkbox_customAutoReply - - - - 57 - - - - checkbox_idle - - - - 59 - - - - checkBox_save - - - - 61 - - - - textField_idleHours - - - - 62 - - - - textField_idleMinutes - - - - 63 - - - - checkBox_cancel - - - - 64 - - - - checkBox_okay - - - - 65 - - - - okay: - - - - 66 - - - - cancel: - - - - 67 - - - - scrollView_autoReply - - - - 68 - - - - scrollView_statusMessage - - - - 69 - - - - box_statusMessage - - - - 70 - - - - box_idle - - - - 71 - - - - box_title - - - - 74 - - - - box_separatorLine - - - - 75 - - - - box_state - - - - 78 - - - - statusControlChanged: - - - - 79 - - - - stepper_idleHours - - - - 94 - - - - stepper_idleMinutes - - - - 95 - - - - checkBox_muteSounds - - - - 97 - - - - checkBox_silenceGrowl - - - - 124 - - - - statusControlChanged: - - - - 125 - - - - statusControlChanged: - - - - 126 - - - - initialFirstResponder - - - - 80 - - - - delegate - - - - 84 - - - - takeIntValueFrom: - - - - 41 - - - - nextKeyView - - - - 81 - - - - delegate - - - - 53 - - - - nextKeyView - - - - 87 - - - - delegate - - - - 50 - - - - delegate - - - - 44 - - - - nextKeyView - - - - 88 - - - - takeIntValueFrom: - - - - 38 - - - - nextKeyView - - - - 85 - - - - nextKeyView - - - - 90 - - - - takeIntValueFrom: - - - - 39 - - - - nextKeyView - - - - 86 - - - - nextKeyView - - - - 89 - - - - nextKeyView - - - - 93 - - - - takeIntValueFrom: - - - - 40 - - - - nextKeyView - - - - 92 - - - - nextKeyView - - - - 91 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 9 - - - - - - Window - - - 6 - - - - - - - - - - - - - - - - - - - - - 8 - - - - - - - - 12 - - - - - - - - 14 - - - - - - - - 18 - - - - - - - - - - - - - 23 - - - - - - 24 - - - - - - - - - 30 - - - - - - - - 32 - - - - - - - - - - 13 - - - - - 35 - - - - - - - - 37 - - - - - - - - 72 - - - - - - - - - 76 - - - - - - - - - 96 - - - - - - - - 122 - - - - - - - - 133 - - - - - 134 - - - - - 135 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 150 - - - - - 151 - - - - - 154 - - - - - 155 - - - - - 33 - - - - - - - - 140 - - - - - 29 - - - - - - - - 139 - - - - - 17 - - - - - - - - 137 - - - - - 10 - - - - - - - - 136 - - - - - 36 - - - - - - - - 141 - - - - - 21 - - - - - - - - 138 - - - - - 11 - - - - - - - - - - 153 - - - - - 152 - - - - - 15 - - - - - 27 - - - - - - - - 142 - - - - - 16 - - - - - - - - 146 - - - - - 25 - - - - - - - - 147 - - - - - 31 - - - - - - - - 149 - - - - - - - - 34 - - - - - - - - - - 22 - - - - - 26 - - - - - 28 - - - - - 5 - - - - - - - - 148 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{138, 326}, {403, 521}} - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 155 - - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIEditStateWindowController - AIWindowController - - id - id - id - - - - cancel: - id - - - okay: - id - - - statusControlChanged: - id - - - - NSBox - NSBox - NSBox - NSBox - NSBox - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSPopUpButton - AIAutoScrollView - AIAutoScrollView - NSStepper - NSStepper - NSTextField - NSTextField - NSTextField - AISendingTextView - AISendingTextView - - - - box_idle - NSBox - - - box_separatorLine - NSBox - - - box_state - NSBox - - - box_statusMessage - NSBox - - - box_title - NSBox - - - checkBox_cancel - NSButton - - - checkBox_muteSounds - NSButton - - - checkBox_okay - NSButton - - - checkBox_save - NSButton - - - checkBox_silenceGrowl - NSButton - - - checkbox_autoReply - NSButton - - - checkbox_customAutoReply - NSButton - - - checkbox_idle - NSButton - - - label_state - NSTextField - - - label_statusMessage - NSTextField - - - label_title - NSTextField - - - popUp_state - NSPopUpButton - - - scrollView_autoReply - AIAutoScrollView - - - scrollView_statusMessage - AIAutoScrollView - - - stepper_idleHours - NSStepper - - - stepper_idleMinutes - NSStepper - - - textField_idleHours - NSTextField - - - textField_idleMinutes - NSTextField - - - textField_title - NSTextField - - - textView_autoReply - AISendingTextView - - - textView_statusMessage - AISendingTextView - - - - IBProjectSource - ./Classes/AIEditStateWindowController.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/keyedobjects.nib b/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/keyedobjects.nib deleted file mode 100644 index 258c991..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EditStateSheet.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EmoticonNames.strings b/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EmoticonNames.strings deleted file mode 100644 index bb5a97e..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/EmoticonNames.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings b/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings deleted file mode 100644 index f8a4fd3..0000000 Binary files a/telegram-adium/Adium.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/Adium.framework/Versions/Current b/telegram-adium/Adium.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/telegram-adium/Adium.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/telegram-adium/AdiumLibpurple.framework/AdiumLibpurple b/telegram-adium/AdiumLibpurple.framework/AdiumLibpurple deleted file mode 120000 index 7e15782..0000000 --- a/telegram-adium/AdiumLibpurple.framework/AdiumLibpurple +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/AdiumLibpurple \ No newline at end of file diff --git a/telegram-adium/AdiumLibpurple.framework/Headers b/telegram-adium/AdiumLibpurple.framework/Headers deleted file mode 120000 index a177d2a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/telegram-adium/AdiumLibpurple.framework/Resources b/telegram-adium/AdiumLibpurple.framework/Resources deleted file mode 120000 index 953ee36..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/AdiumLibpurple b/telegram-adium/AdiumLibpurple.framework/Versions/A/AdiumLibpurple deleted file mode 100755 index 4537011..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/AdiumLibpurple and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIGTalkService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIGTalkService.h deleted file mode 100644 index 2901ee9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIGTalkService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESJabberService.h" - -@interface AIGTalkService : ESJabberService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AILibpurplePlugin.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AILibpurplePlugin.h deleted file mode 100644 index d583017..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AILibpurplePlugin.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ -@protocol AILibpurplePlugin -/*! - * @brief Perform early libpurple-specific installation of the plugin. - * - * There is no guarantee what else is loaded at this point besides core functionality. - * See loadLibpurplePlugin to connct to other components' signals and such. - */ -- (void)installLibpurplePlugin; - -/*! - * @brief Once libpurple itself is ready, load the plugin - */ -- (void)loadLibpurplePlugin; -@end - -/*! - * @brief Notification that libpurple did initialize. - * - * Posted on NSNotificationCenter's defaultCenter. - * - * All plugins which are going to be loaded will be loaded before this is posted. - */ -#define AILibpurpleDidInitialize @"AILibpurpleDidInitialize" diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccount.h deleted file mode 100644 index 9bb00e4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccount.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESPurpleJabberAccount.h" - -@interface AIPurpleGTalkAccount : ESPurpleJabberAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccountViewController.h deleted file mode 100644 index 2cc8d42..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/AIPurpleGTalkAccountViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESPurpleJabberAccountViewController.h" - -@interface AIPurpleGTalkAccountViewController : ESPurpleJabberAccountViewController { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/CBPurpleAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/CBPurpleAccount.h deleted file mode 100644 index 359a092..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/CBPurpleAccount.h +++ /dev/null @@ -1,217 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import - -#define KEY_DISPLAY_CUSTOM_EMOTICONS @"Display Custom Emoticons" -#define KEY_BROADCAST_MUSIC_INFO @"Broadcast Music Information" - -#define KEY_KEY @"Key" -#define KEY_VALUE @"Value" -#define KEY_TYPE @"Type" - -@class SLPurpleCocoaAdapter, ESFileTransfer, AIService, AIContentMessage, AIStatus, AIWindowController; -@protocol AIAccountControllerRemoveConfirmationDialog; - -@interface CBPurpleAccount : AIAccount -{ - PurpleAccount *account; - - NSMutableArray *permittedContactsArray; - NSMutableArray *deniedContactsArray; - - NSDictionary *tuneinfo; - - BOOL unregisterAfterConnecting; - BOOL deletePurpleAccountAfterDisconnecting; - BOOL finishedConnectProcess; - BOOL openPsychicChats; - BOOL shouldIncludeNowPlayingInformationInAllStatuses; - - PurpleConnectionError lastDisconnectionReason; -} - -- (const char*)protocolPlugin; -@property (assign, readwrite) PurpleAccount *purpleAccount; -- (PurplePluginProtocolInfo *)protocolInfo; -- (const char *)purpleAccountName; - -- (void)createNewPurpleAccount; - -- (void)dealloc; -- (NSDictionary *)defaultProperties; -- (NSString *)unknownGroupName; -- (AIService *)_serviceForUID:(NSString *)contactUID; -- (void)unregisteredAccount:(BOOL)success; - -#pragma mark Subclass-reuse but not declared - //Instructs the account to accept a file transfer request -- (void)acceptFileTransferRequest:(ESFileTransfer *)fileTransfer; - //Instructs the account to reject a file receive request -- (void)rejectFileReceiveRequest:(ESFileTransfer *)fileTransfer; - //Instructs the account to cancel a file transfer in progress -- (void)cancelFileTransfer:(ESFileTransfer *)fileTransfer; - -#pragma mark - - - //Private (for subclasses only) file transfer methods -- (PurpleXfer *)newOutgoingXferForFileTransfer:(ESFileTransfer *)fileTransfer; -- (void)_beginSendOfFileTransfer:(ESFileTransfer *)fileTransfer; - - //AIAccount_Privacy --(BOOL)addListObject:(AIListObject *)inObject toPrivacyList:(AIPrivacyType)type; --(BOOL)removeListObject:(AIListObject *)inObject fromPrivacyList:(AIPrivacyType)type; --(NSArray *)listObjectsOnPrivacyList:(AIPrivacyType)type; - - //Connectivity -- (void)connect; -- (void)configureAccountProxyNotifyingTarget:(id)target selector:(SEL)selector; -- (void)disconnect; -- (PurpleConnectionError)lastDisconnectionReason; -- (NSString *)connectionStringForStep:(NSInteger)step; -- (void)configurePurpleAccount; -- (PurpleSslConnection *)secureConnection; - -//Account status -- (NSSet *)supportedPropertyKeys; -- (void)updateStatusForKey:(NSString *)key; -- (void)setAccountIdleSinceTo:(NSDate *)idleSince; - -- (void)setStatusState:(AIStatus *)statusState statusID:(const char *)statusID isActive:(NSNumber *)isActive arguments:(NSMutableDictionary *)arguments; -- (const char *)purpleStatusIDForStatus:(AIStatus *)statusState - arguments:(NSMutableDictionary *)arguments; - -- (void)setAccountProfileTo:(NSAttributedString *)profile; - -- (BOOL)shouldSetAliasesServerside; - -- (SLPurpleCocoaAdapter *)purpleAdapter; - -#pragma mark Purple callback handling methods -- (void)accountConnectionConnected; -- (void)accountConnectionReportDisconnect:(NSString *)text withReason:(PurpleConnectionError)reason; -- (void)accountConnectionNotice:(NSString *)text; -- (void)accountConnectionDisconnected; -- (void)accountConnectionProgressStep:(NSNumber *)step percentDone:(NSNumber *)connectionProgressPrecent; - -- (void)newContact:(AIListContact *)theContact withName:(NSString *)inName; -- (void)addContact:(AIListContact *)theContact - toGroupName:(NSString *)groupName - contactName:(NSString *)contactName; -- (void)removeContact:(AIListContact *)theContact fromGroupName:(NSString *)groupName; -- (void)updateContact:(AIListContact *)theContact toAlias:(NSString *)purpleAlias; -- (void)updateContact:(AIListContact *)theContact forEvent:(NSNumber *)event; -- (void)updateSignon:(AIListContact *)theContact withData:(void *)data; -- (void)updateSignoff:(AIListContact *)theContact withData:(void *)data; -- (void)updateSignonTime:(AIListContact *)theContact withData:(NSDate *)signonDate; -- (void)updateStatusForContact:(AIListContact *)theContact - toStatusType:(NSNumber *)statusTypeNumber - statusName:(NSString *)statusName - statusMessage:(NSAttributedString *)statusMessage - isMobile:(BOOL)isMobile; -- (NSString *)statusNameForPurpleBuddy:(PurpleBuddy *)b; -- (NSAttributedString *)statusMessageForPurpleBuddy:(PurpleBuddy *)b; -- (void)updateEvil:(AIListContact *)theContact withData:(NSNumber *)evilNumber; -- (void)updateIcon:(AIListContact *)theContact withData:(NSData *)userIconData; - -- (void)removeContact:(AIListContact *)theContact; - -- (NSWindowController *)authorizationRequestWithDict:(NSDictionary*)dict __attribute__((ns_returns_retained)); - -- (void)addChat:(AIChat *)chat; -- (void)typingUpdateForIMChat:(AIChat *)chat typing:(NSNumber *)typing; -- (AIChat *)chatWithContact:(AIListContact *)contact identifier:(id)identifier; -- (void)chatWasDestroyed:(AIChat *)chat; -- (void)chatJoinDidFail:(AIChat *)chat; - -- (void)receivedEventForChat:(AIChat *)chat - message:(NSString *)message - date:(NSDate *)date - flags:(NSNumber *)flagsNumber; -- (void)receivedIMChatMessage:(NSDictionary *)messageDict inChat:(AIChat *)chat; -- (void)receivedMultiChatMessage:(NSDictionary *)messageDict inChat:(AIChat *)chat; -- (void)leftChat:(AIChat *)chat; - -- (void)requestReceiveOfFileTransfer:(ESFileTransfer *)fileTransfer; -- (void)updateProgressForFileTransfer:(ESFileTransfer *)fileTransfer - percent:(NSNumber *)percent - bytesSent:(NSNumber *)bytesSent; -- (void)fileTransferCancelledRemotely:(ESFileTransfer *)fileTransfer; -- (void)fileTransferCancelledLocally:(ESFileTransfer *)fileTransfer; -- (void)destroyFileTransfer:(ESFileTransfer *)fileTransfer; -- (ESFileTransfer *)newFileTransferObjectWith:(NSString *)destinationUID - size:(unsigned long long)inSize - remoteFilename:(NSString *)remoteFilename __attribute__((objc_method_family(none))); - -- (BOOL)allowFileTransferWithListObject:(AIListObject *)inListObject; -- (BOOL)canSendFolders; - -- (AIGroupChat *)chatWithName:(NSString *)name identifier:(id)identifier; -- (void)requestAddContactWithUID:(NSString *)contactUID; - -- (void)gotGroupForContact:(AIListContact *)contact; - -- (NSString *)encodedAttributedString:(NSAttributedString *)inAttributedString - forStatusState:(AIStatus *)statusState; -- (BOOL)inviteContact:(AIListContact *)contact toChat:(AIChat *)chat withMessage:(NSString *)inviteMessage; - -- (NSString *)titleForContactMenuLabel:(const char *)label forContact:(AIListContact *)inContact; -- (NSString *)titleForAccountActionMenuLabel:(const char *)label; - -- (NSString *)_UIDForAddingObject:(AIListContact *)object; - -#pragma mark Contacts -- (void)setAttribute:(NSString *)name value:(NSString *)value forContact:(AIListContact *)contact; -- (void)renameContact:(AIListContact *)theContact toUID:(NSString *)newUID; -- (void)updateWentIdle:(AIListContact *)theContact withData:(NSDate *)idleSinceDate; -- (void)updateIdleReturn:(AIListContact *)theContact withData:(void *)data; -- (NSMutableArray *)arrayOfDictionariesFromPurpleNotifyUserInfo:(PurpleNotifyUserInfo *)user_info forContact:(AIListContact *)contact; -- (void)updateUserInfo:(AIListContact *)theContact withData:(PurpleNotifyUserInfo *)user_info; -- (void)openInspectorForContactInfo:(AIListContact *)theContact; - -#pragma mark Chats -- (void)errorForChat:(AIChat *)chat type:(NSNumber *)type; -- (void)removeUsersArray:(NSArray *)usersArray fromChat:(AIGroupChat *)chat; -- (void)updateTopic:(NSString *)inTopic forChat:(AIGroupChat *)chat withSource:(NSString *)source; -- (void)updateTitle:(NSString *)inTitle forChat:(AIGroupChat *)chat; -- (void)convUpdateForChat:(AIGroupChat *)chat type:(NSNumber *)type; -- (void)renameParticipant:(NSString *)oldName newNick:(NSString *)newName newUID:(NSString *)newUID flags:(PurpleConvChatBuddyFlags)flags inChat:(AIGroupChat *)chat; -- (void)removeUser:(NSString *)contactName fromChat:(AIGroupChat *)chat; -- (void)updateUserListForChat:(AIGroupChat *)chat users:(NSArray *)users newlyAdded:(BOOL)newlyAdded; -- (void)updateUser:(NSString *)user forChat:(AIGroupChat *)chat flags:(PurpleConvChatBuddyFlags)flags newAlias:(NSString *)alias attributes:(NSDictionary *)attributes; -- (NSDictionary *)willJoinChatUsingDictionary:(NSDictionary *)chatCreationDictionary; -- (BOOL)chatCreationDictionary:(NSDictionary *)chatCreationDict isEqualToDictionary:(NSDictionary *)baseDict; -- (NSDictionary *)extractChatCreationDictionaryFromConversation:(PurpleConversation *)conv; - -#pragma mark Privacy -- (void)privacyPermitListAdded:(NSString *)sourceUID; -- (void)privacyDenyListAdded:(NSString *)sourceUID; -- (void)privacyPermitListRemoved:(NSString *)sourceUID; -- (void)privacyDenyListRemoved:(NSString *)sourceUID; - -#pragma mark Emoticons -- (void)chat:(AIChat *)inChat isWaitingOnCustomEmoticon:(NSString *)isWaiting; -- (void)chat:(AIChat *)inChat setCustomEmoticon:(NSString *)emoticonEquivalent withImageData:(NSData *)inImageData; -- (void)chat:(AIChat *)inChat closedCustomEmoticon:(NSString *)inEmoticon; - -@end - -@interface CBPurpleAccount (ForSubclasses) -- (void)continueConnectWithConfiguredPurpleAccount; -- (void)continueConnectWithConfiguredProxy; -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleGaduGaduJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleGaduGaduJoinChatViewController.h deleted file mode 100644 index 9b451b0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleGaduGaduJoinChatViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface DCPurpleGaduGaduJoinChatViewController : DCJoinChatViewController { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleJabberJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleJabberJoinChatViewController.h deleted file mode 100644 index 2e25144..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleJabberJoinChatViewController.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccount, AICompletingTextField; - -#define KEY_DEFAULT_CONFERENCE_SERVER @"DefaultConferenceServer" - -@interface DCPurpleJabberJoinChatViewController : DCJoinChatViewController { - IBOutlet NSTextField *textField_roomName; - IBOutlet NSTextField *textField_server; - IBOutlet NSTextField *textField_handle; - IBOutlet NSTextField *textField_password; - - IBOutlet NSTextField *textField_inviteMessage; - IBOutlet AICompletingTextField *textField_inviteUsers; -} - -- (void)setRoomName:(NSString*)roomName; -- (void)setServer:(NSString*)server; - -@end - -@interface DCPurpleJabberJoinChatViewController (PRIVATE_ForSubclasses) -- (void)validateEnteredText; -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMSNJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMSNJoinChatViewController.h deleted file mode 100644 index 17e3dc2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMSNJoinChatViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface DCPurpleMSNJoinChatViewController : DCJoinChatViewController { - IBOutlet NSTextField *textField_roomName; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMeanwhileJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMeanwhileJoinChatViewController.h deleted file mode 100644 index c39dffe..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleMeanwhileJoinChatViewController.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccount, AICompletingTextField; - -@interface DCPurpleMeanwhileJoinChatViewController : DCJoinChatViewController { - IBOutlet NSTextField *textField_topic; - IBOutlet AICompletingTextField *textField_inviteUsers; -} - -- (NSDragOperation)draggingEntered:(id )sender; -- (BOOL)prepareForDragOperation:(id )sender; -- (BOOL)performDragOperation:(id )sender; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleNovellJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleNovellJoinChatViewController.h deleted file mode 100644 index 2009cde..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleNovellJoinChatViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface DCPurpleNovellJoinChatViewController : DCJoinChatViewController { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleYahooJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleYahooJoinChatViewController.h deleted file mode 100644 index 9923fea..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleYahooJoinChatViewController.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@class AIAccount, AICompletingTextField; - -@interface DCPurpleYahooJoinChatViewController : DCJoinChatViewController { - IBOutlet NSTextField *textField_roomName; - - IBOutlet NSTextField *textField_inviteMessage; - IBOutlet AICompletingTextField *textField_inviteUsers; -} - -- (NSDragOperation)draggingEntered:(id )sender; -- (BOOL)prepareForDragOperation:(id )sender; -- (BOOL)performDragOperation:(id )sender; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleZephyrJoinChatViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleZephyrJoinChatViewController.h deleted file mode 100644 index f4838b9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/DCPurpleZephyrJoinChatViewController.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface DCPurpleZephyrJoinChatViewController : DCJoinChatViewController { - IBOutlet NSTextField *textField_class; - IBOutlet NSTextField *textField_instance; - IBOutlet NSTextField *textField_recipient; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESGaduGaduService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESGaduGaduService.h deleted file mode 100644 index eb51d47..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESGaduGaduService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESGaduGaduService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESJabberService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESJabberService.h deleted file mode 100644 index 6ac530b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESJabberService.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@class AMPurpleJabberMoodTooltip; - -@interface ESJabberService : PurpleService { - AMPurpleJabberMoodTooltip *moodTooltip; - NSCharacterSet *charactersInNode; - NSCharacterSet *charactersInDomain; - NSCharacterSet *charactersInResource; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMSNService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMSNService.h deleted file mode 100644 index b8c889c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMSNService.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESMSNService : PurpleService { - -} -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMeanwhileService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMeanwhileService.h deleted file mode 100644 index 17fd248..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESMeanwhileService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESMeanwhileService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESNovellService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESNovellService.h deleted file mode 100644 index 75e79bf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESNovellService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESNovellService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleFileReceiveRequestController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleFileReceiveRequestController.h deleted file mode 100644 index 4e34b1b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleFileReceiveRequestController.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - - -@class AIWindowController; - -@interface ESPurpleFileReceiveRequestController : NSObject { -} - -+ (ESPurpleFileReceiveRequestController *)showFileReceiveWindowWithDict:(NSDictionary *)inDict __attribute__((objc_method_family(new))); - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccount.h deleted file mode 100644 index d9fef1e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccount.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -@interface ESPurpleGaduGaduAccount : CBPurpleAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccountViewController.h deleted file mode 100644 index ff0ca3c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleGaduGaduAccountViewController.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleGaduGaduAccountViewController : PurpleAccountViewController { - -} - -- (IBAction)registerNewAccount:(id)sender; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccount.h deleted file mode 100644 index 139dcb5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccount.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -#define KEY_JABBER_CONNECT_SERVER @"Jabber:Connect Server" -#define KEY_JABBER_BOSH_SERVER @"Jabber:BOSH Server" -#define KEY_JABBER_PRIORITY_AVAILABLE @"Jabber:Priority when Available" -#define KEY_JABBER_PRIORITY_AWAY @"Jabber:Priority when Away" -#define KEY_JABBER_RESOURCE @"Jabber:Resource" -#define KEY_JABBER_USE_TLS @"Jabber:Use TLS" -#define KEY_JABBER_FORCE_OLD_SSL @"Jabber:Force Old SSL" -#define KEY_JABBER_REQUIRE_TLS @"Jabber:Require TLS" -#define KEY_JABBER_TLS @"Jabber:TLS" -#define KEY_JABBER_ALLOW_PLAINTEXT @"Jabber:Allow Plaintext Authentication" -#define KEY_JABBER_SUBSCRIPTION_BEHAVIOR @"Jabber:Subscription Behavior" -#define KEY_JABBER_REGISTER_ON_CONNECT @"Jabber:Register on Connect" -#define KEY_JABBER_SUBSCRIPTION_GROUP @"Jabber:Default Subscription Group" -#define KEY_JABBER_VERIFY_CERTS @"Jabber:Verify Certificates" -#define KEY_JABBER_FT_PROXIES @"Jabber:File Transfer Proxies" - -#define PURPLE_SSL_CDSA_BUGGY_TLS_WORKAROUND "ssl_cdsa_buggy_tls_workaround" - -typedef enum : short { - AIJabberTLSAllowed = 1, - AIJabberTLSRequired, - AIJabberTLSForwardSecrecRequired -} AIJabberTLSSetting; - -@class AIJabberConsoleController, AMPurpleJabberServiceDiscoveryBrowsing, AMPurpleJabberAdHocServer; - -@interface ESPurpleJabberAccount : CBPurpleAccount { - AIJabberConsoleController *xmlConsoleController; - AMPurpleJabberServiceDiscoveryBrowsing *discoveryBrowserController; - - AMPurpleJabberAdHocServer *adhocServer; - - NSMutableArray *gateways; -} - -- (NSString *)serverSuffix; -- (NSString *)resourceName; -- (AMPurpleJabberAdHocServer*)adhocServer; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccountViewController.h deleted file mode 100644 index e5b2da4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleJabberAccountViewController.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" -#import "ESPurpleJabberAccount.h" - -@interface ESPurpleJabberAccountViewController : PurpleAccountViewController { - IBOutlet NSTextField *textField_connectServer; - IBOutlet NSTextField *textField_BOSHserver; - IBOutlet NSTextField *textField_resource; - IBOutlet NSTextField *textField_priorityAvailable; - IBOutlet NSTextField *textField_priorityAway; - IBOutlet NSTextField *textField_ftProxies; - IBOutlet NSButton *checkBox_forceOldSSL; - IBOutlet NSPopUpButton *popup_TLS; - IBOutlet NSButton *checkBox_allowPlaintext; - IBOutlet NSPopUpButton *popup_subscriptionBehavior; - IBOutlet NSTextField *textField_subscriptionModeLabel; - IBOutlet NSComboBox *comboBox_subscriptionGroup; - - IBOutlet NSButton *checkBox_register; - - IBOutlet NSPanel *window_registerServer; - IBOutlet NSTableView *tableview_servers; - IBOutlet NSTextView *textView_serverDescription; - IBOutlet NSButton *button_serverHomepage; - - NSArray *servers; -} - -- (IBAction)findServer:(id)sender; -- (IBAction)findServerCancel:(id)sender; -- (IBAction)findServerAccept:(id)sender; - -- (IBAction)subscriptionModeDidChange:(id)sender; - -- (IBAction)visitServerHomepage:(id)sender; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccount.h deleted file mode 100644 index 0ffccf0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccount.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" -#import "ESMSNService.h" - -#define KEY_MSN_HTTP_CONNECT_METHOD @"MSN:HTTP Connect Method" -#define KEY_MSN_DISPLAY_NAMED_CHANGED @"MSN:Display Name Changed" -#define KEY_MSN_BLOCK_DIRECT_CONNECTIONS @"MSN:Block Direct Connections" - -@interface ESPurpleMSNAccount : CBPurpleAccount { - NSDate *lastFriendlyNameChange; - NSString *queuedFriendlyName; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccountViewController.h deleted file mode 100644 index a0fb155..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMSNAccountViewController.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleMSNAccountViewController : PurpleAccountViewController { - IBOutlet NSTextField *textField_friendlyName; - - IBOutlet NSButton *checkBox_HTTPConnectMethod; - IBOutlet NSButton *checkbox_allowDirectConnections; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccount.h deleted file mode 100644 index 4bbb440..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccount.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -#define KEY_MEANWHILE_CONTACTLIST @"Meanwhile:ContactList" -#define KEY_MEANWHILE_FORCE_LOGIN @"Meanwhile:ForceLogin" -#define KEY_MEANWHILE_FAKE_CLIENT_ID @"Meanwhile:FakeClientID" - -#define MW_PRPL_OPT_BLIST_ACTION "/plugins/prpl/meanwhile/blist_action" - -enum Meanwhile_CL_Choice { - Meanwhile_CL_None = 1, - Meanwhile_CL_Load = 2, - Meanwhile_CL_Load_And_Save = 3 -}; - -/** the purple plugin data. -available as gc->proto_data and mwSession_getClientData */ -struct mwPurplePluginData { - struct mwSession *session; - - struct mwServiceAware *srvc_aware; - struct mwServiceConference *srvc_conf; - struct mwServiceDirectory *srvc_dir; - struct mwServiceFileTransfer *srvc_ft; - struct mwServiceIm *srvc_im; - struct mwServiceResolve *srvc_resolve; - struct mwServiceStorage *srvc_store; - - /** map of PurpleGroup:mwAwareList and mwAwareList:PurpleGroup */ - GHashTable *group_list_map; - - /** event id for the buddy list save callback */ - guint save_event; - - /** socket fd */ - NSInteger socket; - - PurpleConnection *gc; -}; - -/* 8.3.8.2 Awareness Presence Types */ - -/* @todo move mwAwareType, mwAwareIdBlock and mwAwareSnapshot into the -aware service and out of common */ - -/** type codes for mwAwareIdBlock */ -enum mwAwareType { - mwAware_USER = 0x0002, /**< a single user */ - mwAware_GROUP = 0x0003, /**< a group */ - mwAware_SERVER = 0x0008, /**< a server */ -}; - -/* 8.4.2 Awareness Messages */ -/* 8.4.2.1 Awareness ID Block */ - -struct mwAwareIdBlock { - guint16 type; /**< @see mwAwareType */ - char *user; /**< user id */ - char *community; /**< community id (NULL for same community) */ -}; - -@interface ESPurpleMeanwhileAccount : CBPurpleAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccountViewController.h deleted file mode 100644 index 04d2b14..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleMeanwhileAccountViewController.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleMeanwhileAccountViewController : PurpleAccountViewController { - IBOutlet NSButton *checkBox_fakeClientId; - IBOutlet NSButton *checkBox_forceLogin; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNotifyEmailController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNotifyEmailController.h deleted file mode 100644 index e652b1d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNotifyEmailController.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleServicePlugin.h" - -@class AIAccount; - -@interface ESPurpleNotifyEmailController : NSObject { - -} - -+ (void *)handleNotifyEmailsForAccount:(AIAccount *)account count:(size_t)count detailed:(BOOL)detailed subjects:(const char **)subjects froms:(const char **)froms tos:(const char **)tos urls:(const char **)urls; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccount.h deleted file mode 100644 index b2b3a81..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccount.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -@interface ESPurpleNovellAccount : CBPurpleAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccountViewController.h deleted file mode 100644 index 3c6e520..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleNovellAccountViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleNovellAccountViewController : PurpleAccountViewController { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestAbstractWindowController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestAbstractWindowController.h deleted file mode 100644 index 0b18d82..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestAbstractWindowController.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface ESPurpleRequestAbstractWindowController : AIWindowController { - BOOL windowIsClosing; -} - -- (void)purpleRequestClose; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestActionController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestActionController.h deleted file mode 100644 index 6413727..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestActionController.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleServicePlugin.h" - -@class ESTextAndButtonsWindowController; - -@interface ESPurpleRequestActionController : NSObject { - ESTextAndButtonsWindowController *requestController; - - NSDictionary *theInfoDict; -} - -+ (ESPurpleRequestActionController *)showActionWindowWithDict:(NSDictionary *)infoDict __attribute__((objc_method_family(new))); - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestWindowController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestWindowController.h deleted file mode 100644 index 1b05f73..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleRequestWindowController.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESPurpleRequestAbstractWindowController.h" - -@interface ESPurpleRequestWindowController : ESPurpleRequestAbstractWindowController { - IBOutlet NSTextView *textView_primary; - - IBOutlet NSTextView *textView_secondary; - IBOutlet NSScrollView *scrollView_secondary; - - IBOutlet NSTextField *textField_input; - IBOutlet NSButton *button_okay; - IBOutlet NSButton *button_cancel; - - NSValue *okayCallbackValue; - NSValue *cancelCallbackValue; - NSValue *userDataValue; -} - -+ (ESPurpleRequestWindowController *)showInputWindowWithDict:(NSDictionary *)infoDict __attribute__((objc_method_family(new))); -- (id)initWithWindowNibName:(NSString *)windowNibName withDict:(NSDictionary *)infoDict multiline:(BOOL)multiline; -- (IBAction)pressedButton:(id)sender; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccount.h deleted file mode 100644 index 9d9b8d6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccount.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -#define KEY_SIMPLE_PUBLISH_STATUS @"Simple:Publish Status" -#define KEY_SIMPLE_USE_UDP @"Simple:Use UDP" - -#define KEY_SIMPLE_USE_SIP_PROXY @"Simple:Use SIP Proxy" -#define KEY_SIMPLE_SIP_PROXY @"Simple:SIP Proxy" -#define KEY_SIMPLE_AUTH_USER @"Simple:Auth User" -#define KEY_SIMPLE_AUTH_DOMAIN @"Simple:Auth Domain" - -@interface ESPurpleSimpleAccount : CBPurpleAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccountViewController.h deleted file mode 100644 index 48081d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleSimpleAccountViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleSimpleAccountViewController : PurpleAccountViewController { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccount.h deleted file mode 100644 index a2f4588..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccount.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -#define KEY_YAHOO_ROOM_LIST_LOCALE @"Room List Locale" - -@interface ESPurpleYahooAccount : CBPurpleAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccountViewController.h deleted file mode 100644 index ead25f6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooAccountViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleYahooAccountViewController : PurpleAccountViewController { - IBOutlet NSPopUpButton *popUp_chatServer; -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooJapanAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooJapanAccount.h deleted file mode 100644 index 9d08675..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleYahooJapanAccount.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESPurpleYahooAccount.h" - -@interface ESPurpleYahooJapanAccount : ESPurpleYahooAccount { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccount.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccount.h deleted file mode 100644 index e224c51..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccount.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "CBPurpleAccount.h" - -#define KEY_ZEPHYR_EXPORT_ANYONE @"Zephyr:Export .anyone" -#define KEY_ZEPHYR_EXPORT_SUBS @"Zephyr:Export .zephyr.subs" -#define KEY_ZEPHYR_EXPOSURE @"Zephyr:Exposure" -#define KEY_ZEPHYR_ENCODING @"Zephyr:Encoding" -#define KEY_ZEPHYR_LAUNCH_ZHM @"Zephyr:Launch zhm" -#define KEY_ZEPHYR_SERVERS @"Zephyr:Servers" - -@interface ESPurpleZephyrAccount : CBPurpleAccount { - -} - - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccountViewController.h deleted file mode 100644 index d112638..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESPurpleZephyrAccountViewController.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleAccountViewController.h" - -@interface ESPurpleZephyrAccountViewController : PurpleAccountViewController { - IBOutlet NSButton *checkBox_exportAnyone; - IBOutlet NSButton *checkBox_exportSubs; - IBOutlet NSButton *checkBox_launchZhm; - IBOutlet NSTextField *textField_exposure; - IBOutlet NSTextField *textField_encoding; - IBOutlet NSTableView *tableView_servers; - IBOutlet NSSegmentedControl *button_addOrRemoveServer; -} - -- (IBAction)addOrRemoveRowToServerList:(id)sender; -- (void)addRowToServerList; -- (void)removeSelectedRowFromServerList; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESSimpleService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESSimpleService.h deleted file mode 100644 index 9c8b604..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESSimpleService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESSimpleService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooJapanService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooJapanService.h deleted file mode 100644 index 8d53050..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooJapanService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "ESYahooService.h" - -@interface ESYahooJapanService : ESYahooService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooService.h deleted file mode 100644 index 3003756..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESYahooService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESYahooService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESZephyrService.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESZephyrService.h deleted file mode 100644 index bc591bb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/ESZephyrService.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import "PurpleService.h" - -@interface ESZephyrService : PurpleService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleAccountViewController.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleAccountViewController.h deleted file mode 100644 index 857d984..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleAccountViewController.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -@interface PurpleAccountViewController : AIAccountViewController { - IBOutlet NSButton *checkBox_broadcastMusic; - IBOutlet NSButton *checkBox_displayCustomEmoticons; -} - -- (NSMenu *)encodingMenu; - -@end - \ No newline at end of file diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleCommon.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleCommon.h deleted file mode 100644 index 1e61bf2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/PurpleCommon.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -//#define MEANWHILE_NOT_AVAILABLE - -//Purple includes -#import - -#define PACKAGE "pidgin" - -#ifdef ENABLE_NLS -# include -# include -# define _(String) ((const char *)dgettext(PACKAGE, String)) -# ifdef gettext_noop -# define N_(String) gettext_noop (String) -# else -# define N_(String) (String) -# endif -#else -# include -# define N_(String) (String) -# ifndef _ -# define _(String) ((const char *)String) -# endif -# define ngettext(Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural)) -# define dngettext(Domain, Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural)) -#endif - -#define PURPLE_ORPHANS_GROUP_NAME "__AdiumOrphansUE9FHUE7I" //A group name no sane user would have - -//Events we care about explicitly via signals -typedef enum -{ - PURPLE_BUDDY_NONE = 0x00, /**< No events. */ - PURPLE_BUDDY_SIGNON = 0x01, /**< The buddy signed on. */ - PURPLE_BUDDY_SIGNOFF = 0x02, /**< The buddy signed off. */ - PURPLE_BUDDY_INFO_UPDATED = 0x10, /**< The buddy's information (profile) changed. */ - PURPLE_BUDDY_ICON = 0x40, /**< The buddy's icon changed. */ - PURPLE_BUDDY_MISCELLANEOUS = 0x80, /**< The buddy's service-specific miscalleneous info changed. */ - PURPLE_BUDDY_SIGNON_TIME = 0x11, /**< The buddy's signon time changed. */ - PURPLE_BUDDY_EVIL = 0x12, /**< The buddy's warning level changed. */ - PURPLE_BUDDY_DIRECTIM_CONNECTED = 0x14, /**< Connected to the buddy via DirectIM. */ - PURPLE_BUDDY_DIRECTIM_DISCONNECTED = 0x18, /**< Disconnected from the buddy via DirectIM. */ - PURPLE_BUDDY_NAME = 0x20 /** - -@interface PurpleService : AIService { - -} - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/SLPurpleCocoaAdapter.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/SLPurpleCocoaAdapter.h deleted file mode 100644 index 9b34149..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/SLPurpleCocoaAdapter.h +++ /dev/null @@ -1,126 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import -#import -#import -#import -#import - -@class AIChat, AIListContact, CBPurpleAccount; - -/*! - * @class SLPurpleCocoaAdapter - * Singleton to run libpurple from a Cocoa event loop. - **/ -@interface SLPurpleCocoaAdapter : NSObject { - -} - -+ (SLPurpleCocoaAdapter *)sharedInstance; -+ (void)pluginDidLoad; -+ (NSArray *)libpurplePluginArray; - -- (void)addAdiumAccount:(CBPurpleAccount *)adiumAccount; -- (void)removeAdiumAccount:(CBPurpleAccount *)adiumAccount; - -- (void)sendNotificationOfType:(AINotificationType)type - fromAccount:(id)sourceAccount - inChat:(AIChat *)chat; -- (void)sendEncodedMessage:(NSString *)encodedMessage - fromAccount:(id)sourceAccount - inChat:(AIChat *)chat - withFlags:(PurpleMessageFlags)flags; -- (BOOL)attemptPurpleCommandOnMessage:(NSString *)originalMessage - fromAccount:(AIAccount *)sourceAccount - inChat:(AIChat *)chat; - -- (void)sendTyping:(AITypingState)typingState inChat:(AIChat *)chat; - -- (void)addUID:(NSString *)objectUID onAccount:(id)adiumAccount toGroup:(NSString *)groupName withAlias:(NSString *)alias; -- (void)removeUID:(NSString *)objectUID onAccount:(id)adiumAccount fromGroup:(NSString *)groupName; -- (void)moveUID:(NSString *)objectUID onAccount:(id)adiumAccount fromGroups:(NSSet *)groupNames toGroups:(NSSet *)groupNames withAlias:(NSString *)alias; -- (void)renameGroup:(NSString *)oldGroupName onAccount:(id)adiumAccount to:(NSString *)newGroupName; -- (void)deleteGroup:(NSString *)groupName onAccount:(id)adiumAccount; - -- (void)setAlias:(NSString *)alias forUID:(NSString *)UID onAccount:(id)adiumAccount; - -- (void)openChat:(AIChat *)chat onAccount:(id)adiumAccount; -- (void)inviteContact:(AIListContact *)contact toChat:(AIChat *)chat withMessage:(NSString *)inviteMessage; -- (BOOL)contact:(AIListContact *)inContact isIgnoredInChat:(AIChat *)inChat; -- (void)setContact:(AIListContact *)inContact ignored:(BOOL)inIgnored inChat:(AIChat *)inChat; - -- (void)closeChat:(AIChat *)chat; -- (void)disconnectAccount:(id)adiumAccount; -- (void)registerAccount:(id)adiumAccount; -- (void)unregisterAccount:(id)adiumAccount; -- (void)xferRequest:(PurpleXfer *)xfer; -- (void)xferRequestAccepted:(PurpleXfer *)xfer withFileName:(NSString *)xferFileName; -- (void)xferRequestRejected:(PurpleXfer *)xfer; -- (void)xferCancel:(PurpleXfer *)xfer; -- (void)getInfoFor:(NSString *)inUID onAccount:(id)adiumAccount; - -- (void)setStatusID:(const char *)statusID isActive:(NSNumber *)isActive arguments:(NSMutableDictionary *)arguments onAccount:(id)adiumAccount; -- (void)setSongInformation:(NSDictionary *)arguments onAccount:(id)adiumAccount; -- (void)setInfo:(NSString *)profileHTML onAccount:(id)adiumAccount; -- (void)setBuddyIcon:(NSData *)buddyImageData onAccount:(id)adiumAccount; -- (void)setIdleSinceTo:(NSDate *)idleSince onAccount:(id)adiumAccount; - -- (void)setCheckMail:(NSNumber *)checkMail forAccount:(id)adiumAccount; -- (void)setDefaultPermitDenyForAccount:(id)adiumAccount; - -- (void)OSCAREditComment:(NSString *)comment forUID:(NSString *)inUID onAccount:(id)adiumAccount; -- (void)OSCARSetFormatTo:(NSString *)inFormattedUID onAccount:(id)adiumAccount; - -- (void)displayFileSendError; -- (void *)handleNotifyMessageOfType:(PurpleNotifyMsgType)type withTitle:(const char *)title primary:(const char *)primary secondary:(const char *)secondary; -- (void *)handleNotifyFormattedWithTitle:(const char *)title primary:(const char *)primary secondary:(const char *)secondary text:(const char *)text; - -- (void)performContactMenuActionFromDict:(NSDictionary *)dict forAccount:(id)adiumAccount; -- (void)performAccountMenuActionFromDict:(NSDictionary *)dict forAccount:(id)adiumAccount; - -- (void)doAuthRequestCbValue:(NSValue *)inCallBackValue withUserDataValue:(NSValue *)inUserDataValue; -- (void)closeAuthRequestWithHandle:(id)authRequestHandle; -- (BOOL)doCommand:(NSString *)originalMessage fromAccount:(id)sourceAccount inChat:(AIChat *)chat; - -#ifdef HAVE_CDSA -- (CFArrayRef)copyServerCertificates:(PurpleSslConnection*)gsc; -- (NSDictionary *)getCipherDetails:(PurpleSslConnection*)gsc; -#endif -@end - -//Lookup functions -void *adium_purple_get_handle(void); -PurpleConversation *existingConvLookupFromChat(AIChat *chat); -PurpleConversation *convLookupFromChat(AIChat *chat, id adiumAccount); -AIChat *imChatLookupFromConv(PurpleConversation *conv); -AIGroupChat *groupChatLookupFromConv(PurpleConversation *conv); -AIChat *existingChatLookupFromConv(PurpleConversation *conv); -AIChat *chatLookupFromConv(PurpleConversation *conv); -AIListContact *contactLookupFromIMConv(PurpleConversation *conv); -AIListContact *contactLookupFromBuddy(PurpleBuddy *buddy); -PurpleAccount *accountLookupFromAdiumAccount(CBPurpleAccount *adiumAccount); -CBPurpleAccount *accountLookup(PurpleAccount *acct); - -//Images -NSString* processPurpleImages(NSString* inString, AIAccount* adiumAccount); - -@interface NSObject (SLPurpleCocoaAdapterOptionalAccountMethods) - -- (void)purpleAccountRegistered:(BOOL)success; - -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleBlist.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleBlist.h deleted file mode 100644 index 70fd47d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleBlist.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleBlistUiOps *adium_purple_blist_get_ui_ops(void); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConnection.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConnection.h deleted file mode 100644 index 2a5a7eb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConnection.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleConnectionUiOps *adium_purple_connection_get_ui_ops(void); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConversation.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConversation.h deleted file mode 100644 index 7e665c4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleConversation.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleConversationUiOps *adium_purple_conversation_get_ui_ops(void); -void adiumPurpleConversation_init(void); -NSString *get_real_name_for_account_conv_buddy(PurpleAccount *account, PurpleConversation *conv, char *who); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleCore.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleCore.h deleted file mode 100644 index b30392c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleCore.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleCoreUiOps *adium_purple_core_get_ops(void); - -void configurePurpleDebugLogging(); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleEventloop.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleEventloop.h deleted file mode 100644 index 052bee0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleEventloop.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleEventLoopUiOps *adium_purple_eventloop_get_ui_ops(void); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleFt.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleFt.h deleted file mode 100644 index 94cc302..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleFt.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleXferUiOps *adium_purple_xfers_get_ui_ops(); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleNotify.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleNotify.h deleted file mode 100644 index 9d8009c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleNotify.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleNotifyUiOps *adium_purple_notify_get_ui_ops(void); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurplePrivacy.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurplePrivacy.h deleted file mode 100644 index 72b61ec..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurplePrivacy.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurplePrivacyUiOps *adium_purple_privacy_get_ui_ops(); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRequest.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRequest.h deleted file mode 100644 index 6c9dda9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRequest.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import -#import - -PurpleRequestUiOps *adium_purple_request_get_ui_ops(); - -@protocol PurpleRequestController -- (void)purpleRequestClose; -- (void)mainPerformSelector:(SEL)aSelector;//this is declared in AIObjectAdditions.h, but for some reason it wasn't being noticed, so this fixes a warning. -@end; - -@interface ESPurpleRequestAdapter : NSObject { - -} -+ (void)requestCloseWithHandle:(id)handle; -+ (void)returnedPassword:(NSString *)password returnCode:(AIPasswordPromptReturn)returnCode context:(id)context; -@end diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRoomlist.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRoomlist.h deleted file mode 100644 index f1cdf7b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleRoomlist.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -PurpleRoomlistUiOps *adium_purple_roomlist_get_ui_ops(); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleSignals.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleSignals.h deleted file mode 100644 index 0877c42..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleSignals.h +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -void configureAdiumPurpleSignals(void); diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleWebcam.h b/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleWebcam.h deleted file mode 100644 index f181016..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Headers/adiumPurpleWebcam.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Adium is the legal property of its developers, whose names are listed in the copyright file included - * with this source distribution. - * - * This program is free software; you can redistribute it and/or modify it under the terms of the GNU - * General Public License as published by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even - * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program; if not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#import - -struct purple_webcam_ui_ops *adium_purple_webcam_get_ui_ops(void); -void initPurpleWebcamSupport(void); - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/designable.nib deleted file mode 100644 index fd052a1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/designable.nib +++ /dev/null @@ -1,313 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - 5056 - 5056 - - - NSCustomObject - NSProgressIndicator - NSView - NSWindowTemplate - WebView - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.WebKitIBPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPOAuthWebViewWindowController - - - FirstResponder - - - NSApplication - - - 7 - 2 - {{196, 130}, {640, 380}} - 544735232 - Facebook Account Setup - NSWindow - - - {640, 380} - - - 256 - - - - 274 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple URL pasteboard type - Apple Web Archive pasteboard type - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - WebURLsWithTitlesPboardType - public.png - public.url - public.url-name - - {640, 380} - - - - - - - - - - - - - - YES - YES - - - - 1292 - {{304, 174}, {32, 32}} - - 28682 - 100 - - - {640, 380} - - - {{0, 0}, {1680, 1028}} - {640, 402} - FBXMPPOAUTH - YES - - - - NO - - - - webView - - - - 4 - - - - window - - - - 6 - - - - spinner - - - - 8 - - - - delegate - - - - 10 - - - - resourceLoadDelegate - - - - 5 - - - - frameLoadDelegate - - - - 9 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - 2 - - - - - - - - - 3 - - - - - 7 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - {{305, 397}, {640, 380}} - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.WebKitIBPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - - - - AIFacebookXMPPOAuthWebViewWindowController - AIWindowController - - NSProgressIndicator - WebView - - - - spinner - NSProgressIndicator - - - webView - WebView - - - - IBProjectSource - ./Classes/AIFacebookXMPPOAuthWebViewWindowController.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - WebView - - reloadFromOrigin: - id - - - reloadFromOrigin: - - reloadFromOrigin: - id - - - - IBProjectSource - ./Classes/WebView.h - - - - - 0 - IBCocoaFramework - YES - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/keyedobjects.nib deleted file mode 100644 index f00a88c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AIFacebookXMPPOauthWebViewWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/designable.nib deleted file mode 100644 index 4c26922..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/designable.nib +++ /dev/null @@ -1,831 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSOutlineView - NSScrollView - NSScroller - NSTableColumn - NSTableHeaderView - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleJabberServiceDiscoveryBrowserController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{246, 425}, {488, 391}} - 1886912512 - Service Discovery Browsing - - NSWindow - - - View - - - {213, 107} - - - 256 - - - - 266 - {{83, 349}, {385, 22}} - - YES - - -1804599231 - 268436480 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{25, 351}, {53, 17}} - - YES - - 67108864 - 71303168 - Service: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {486, 286} - - YES - NO - YES - - - 256 - {486, 17} - - - - - - 256 - {{472, 0}, {16, 17}} - - - - name - 148 - 16 - 1000 - - 75497536 - 2048 - Name - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - jid - 156 - 16 - 1000 - - 75497536 - 2048 - JID - - - 3 - MC4zMzMzMzI5OQA - - - - - 337641536 - 2048 - - - - - - 3 - YES - - - - category - 172.7919921875 - 55.7919921875 - 1000 - - 75497536 - 2048 - Category - - - - - - 337641536 - 2048 - - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - -767557632 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 17}, {486, 286}} - - - - - 4 - - - - 256 - {{472, 17}, {15, 280}} - - NO - - _doScroller: - 0.99624061584472656 - - - - 256 - {{1, 288}, {480, 15}} - - NO - 1 - - _doScroller: - 0.96714580059051514 - - - - 2304 - - - - {{1, 0}, {486, 17}} - - - - - 4 - - - {488, 304} - - - 133170 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 266 - {{83, 321}, {385, 22}} - - YES - - -1804599231 - 268436480 - - - - YES - - - - NO - 1 - - - - 268 - {{36, 323}, {42, 17}} - - YES - - 67108864 - 71303168 - Node: - - - - - - NO - 1 - - - {488, 391} - - {{0, 0}, {1400, 1050}} - {213, 129} - {10000000000000, 10000000000000} - SmackXMPPServiceDiscoveryBrowsing - YES - - - - - - - changeServiceName: - - - - 28 - - - - window - - - - 29 - - - - servicename - - - - 17 - - - - changeServiceName: - - - - 21 - - - - nodename - - - - 27 - - - - outlineview - - - - 16 - - - - label_service - - - - 32 - - - - label_node - - - - 33 - - - - delegate - - - - 18 - - - - window_anchorOnLeftSide - - - - 30 - - - - delegate - - - - 23 - - - - dataSource - - - - 22 - - - - window_anchorOnLeftSide - - - - 31 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 5 - - - - - - Window - - - 6 - - - - - - - - - - - - 7 - - - - - - - - 8 - - - - - - - - 9 - - - - - - - - - - - 10 - - - - - - - - - - 11 - - - - - - - - 12 - - - - - - - - 24 - - - - - - - - 25 - - - - - - - - 26 - - - - - - - - 35 - - - - - 36 - - - - - 37 - - - - - 38 - - - - - 39 - - - - - 40 - - - - - 41 - - - - - 42 - - - - - 43 - - - - - 44 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIOutlineView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 44 - - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIOutlineView - NSOutlineView - - IBProjectSource - ./Classes/AIOutlineView.h - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - AMPurpleJabberServiceDiscoveryBrowserController - AIWindowController - - id - id - - - - changeServiceName: - id - - - openService: - id - - - - NSTextField - NSTextField - NSTextField - NSOutlineView - NSTextField - - - - label_node - NSTextField - - - label_service - NSTextField - - - nodename - NSTextField - - - outlineview - NSOutlineView - - - servicename - NSTextField - - - - IBProjectSource - ./Classes/AMPurpleJabberServiceDiscoveryBrowserController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/keyedobjects.nib deleted file mode 100644 index b1a324b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleJabberDiscoveryBrowser.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/designable.nib deleted file mode 100644 index fc01aa5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/designable.nib +++ /dev/null @@ -1,575 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldsController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{213, 400}, {632, 431}} - 1886912512 - Form - - NSWindow - - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 394}, {598, 17}} - - - YES - - 68157504 - 272630784 - Primary Label - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{17, 369}, {598, 17}} - - - YES - - 68157504 - 272630784 - Secondary Label - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 266 - {590, 298} - - - - - {{1, 1}, {590, 298}} - - - _NS:11 - - - 4 - - - - -2147483392 - {{576, 1}, {15, 298}} - - - NO - - _doScroller: - 1 - 0.99665551839464883 - - - - -2147483392 - {{1, 301}, {590, 15}} - - - NO - 1 - - _doScroller: - 1 - - - {{20, 61}, {592, 300}} - - - 133682 - - - - 0.25 - 4 - 1 - - - - 289 - {{559, 13}, {59, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 129 - - DQ - 200 - 25 - - NO - - - - 289 - {{477, 13}, {82, 32}} - - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 129 - - Gw - 200 - 25 - - NO - - - {632, 431} - - - {{0, 0}, {1920, 1080}} - {213, 129} - {10000000000000, 10000000000000} - SmackXMPPFormWindow - YES - - - - - - - window - - - - 8 - - - - primaryTextField - - - - 21 - - - - secondaryTextField - - - - 22 - - - - contentView - - - - 45 - - - - submit: - - - - 36 - - - - okButton - - - - 38 - - - - cancelButton - - - - 37 - - - - cancel: - - - - 35 - - - - delegate - - - - 10 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 5 - - - - - - Window - - - 6 - - - - - - - - - - - - -3 - - - Application - - - 17 - - - - - - - - 18 - - - - - 19 - - - - - - - - 20 - - - - - 41 - - - - - - - - - - 42 - - - - - 43 - - - - - 44 - - - - - 31 - - - - - - - - 32 - - - - - 33 - - - - - - - - 34 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 45 - - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - AMPurpleRequestFieldsController - ESPurpleRequestAbstractWindowController - - id - id - - - - cancel: - id - - - submit: - id - - - - NSButton - NSView - NSButton - NSTextField - NSTextField - - - - cancelButton - NSButton - - - contentView - NSView - - - okButton - NSButton - - - primaryTextField - NSTextField - - - secondaryTextField - NSTextField - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldsController.h - - - - ESPurpleRequestAbstractWindowController - AIWindowController - - IBProjectSource - ./Classes/ESPurpleRequestAbstractWindowController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/keyedobjects.nib deleted file mode 100644 index f9543de..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleRequestFieldsWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/designable.nib deleted file mode 100644 index a2ade7a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/designable.nib +++ /dev/null @@ -1,603 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableHeaderView - NSTableView - NSTextField - NSTextFieldCell - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleSearchResultsController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{90, 362}, {581, 536}} - 1886912512 - <title> - - NSWindow - - - View - - - {213, 107} - - - 256 - - - - 266 - {{17, 499}, {547, 17}} - - YES - - 67108864 - 272629760 - <primary> - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 266 - {{17, 477}, {547, 14}} - - YES - - 67108864 - 272629760 - <secondary> - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {524, 354} - - YES - NO - YES - - - 256 - {524, 17} - - - - - - 256 - {{525, 0}, {16, 17}} - - - - - 521 - 40 - 1000 - - 75497536 - 2048 - - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - 3 - YES - YES - - - - 3 - 2 - - 3 - MQA - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - -767557632 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 17}, {524, 354}} - - - - - 4 - - - - 256 - {{525, 17}, {15, 354}} - - NO - - _doScroller: - 0.85789471864700317 - - - - 256 - {{1, 371}, {524, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - - 2304 - - - - {{1, 0}, {524, 17}} - - - - - 4 - - - - {{20, 70}, {541, 387}} - - - 133170 - - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 290 - {{0, 20}, {581, 40}} - - - NSView - - NSResponder - - - {581, 536} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - purplesearchresultswindow - YES - - - - - - - window - - - - 15 - - - - textfield_primary - - - - 17 - - - - textfield_secondary - - - - 18 - - - - buttonview - - - - 19 - - - - tableview - - - - 20 - - - - delegate - - - - 24 - - - - dataSource - - - - 21 - - - - delegate - - - - 22 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 5 - - - - - - Window - - - 6 - - - - - - - - - - - 7 - - - - - - - - 8 - - - - - - - - 9 - - - - - - - - - - - 10 - - - - - - - - 12 - - - - - - - - 13 - - - - - 26 - - - - - 27 - - - - - 28 - - - - - 29 - - - - - 30 - - - - - 31 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 31 - - - - - AIWindowController - NSWindowController - - closeWindow: - id - - - closeWindow: - - closeWindow: - id - - - - IBProjectSource - ./Classes/AIWindowController.h - - - - AMPurpleSearchResultsController - ESPurpleRequestAbstractWindowController - - invokeAction: - id - - - invokeAction: - - invokeAction: - id - - - - NSView - NSTableView - NSTextField - NSTextField - - - - buttonview - NSView - - - tableview - NSTableView - - - textfield_primary - NSTextField - - - textfield_secondary - NSTextField - - - - IBProjectSource - ./Classes/AMPurpleSearchResultsController.h - - - - ESPurpleRequestAbstractWindowController - AIWindowController - - IBProjectSource - ./Classes/ESPurpleRequestAbstractWindowController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/keyedobjects.nib deleted file mode 100644 index f9e7f34..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/AMPurpleSearchResultsWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/designable.nib deleted file mode 100644 index cbfa0c8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/designable.nib +++ /dev/null @@ -1,120 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCPurpleGaduGaduJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - {393, 40} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - View - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 33 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 8f310a1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleGaduGaduJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/designable.nib deleted file mode 100644 index a021829..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/designable.nib +++ /dev/null @@ -1,173 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMSNJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{12, 7}, {367, 28}} - - YES - - 67108864 - 4194304 - Creating MSN Group Chats is not supported at this time. You may, however, join chats which others create if they invite you. - - .LucidaGrandeUI - 11 - 3100 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 1 - MCAwIDAAA - - - NO - 1 - - - {396, 35} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - View - - - 32 - - - - - - - - 36 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 36 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index aab17b9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleMSNJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/designable.nib deleted file mode 100644 index f7d5d6e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/designable.nib +++ /dev/null @@ -1,120 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimNovellJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - {393, 29} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - View - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 34 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 30529d0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/DCPurpleNovellJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/designable.nib deleted file mode 100644 index 16cc6ab..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/designable.nib +++ /dev/null @@ -1,335 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-8, 32}, {75, 17}} - - - YES - - 67108864 - 71303168 - Channel: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{72, 30}, {266, 22}} - - - YES - - -1804599231 - 4195328 - - - #adium - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-8, 2}, {75, 17}} - - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{72, 0}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {338, 52} - - - NSView - - NSResponder - - - - NO - - - - textField_password - - - - 61 - - - - textField_channel - - - - 60 - - - - view - - - - 31 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 63 - - - - - 64 - - - - - 65 - - - - - 66 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - - 0 - IBCocoaFramework - YES - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0756eb4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ESIRCJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/Info.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index d07d9e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/Info.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-large.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-large.png deleted file mode 100644 index 111556f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-large.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-small.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-small.png deleted file mode 100644 index bc240e9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MobileMe-small.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-large.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-large.png deleted file mode 100644 index 78655e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-large.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-small.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-small.png deleted file mode 100644 index 1e377a5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/MySpace-small.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsAIM.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsAIM.plist deleted file mode 100644 index 9ecdd82..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsAIM.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGTalk.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGTalk.plist deleted file mode 100644 index efec1c5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGTalk.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGadu-Gadu.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGadu-Gadu.plist deleted file mode 100644 index 6f0d02b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGadu-Gadu.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGroupWise.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGroupWise.plist deleted file mode 100644 index d25181b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsGroupWise.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsICQ.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsICQ.plist deleted file mode 100644 index b8db07d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsICQ.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsIRC.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsIRC.plist deleted file mode 100644 index a78ce75..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsIRC.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsJabber.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsJabber.plist deleted file mode 100644 index 074b8f0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsJabber.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsLiveJournal.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsLiveJournal.plist deleted file mode 100644 index 5855671..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsLiveJournal.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMSN.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMSN.plist deleted file mode 100644 index 99956be..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMSN.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMac.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMac.plist deleted file mode 100644 index cd0b157..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMac.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMobileMe.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMobileMe.plist deleted file mode 100644 index cd0b157..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMobileMe.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMySpace.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMySpace.plist deleted file mode 100644 index e108715..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsMySpace.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSametime.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSametime.plist deleted file mode 100644 index ba06126..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSametime.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSimple.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSimple.plist deleted file mode 100644 index 66c627c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsSimple.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo! Japan.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo! Japan.plist deleted file mode 100644 index 97d64fe..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo! Japan.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo!.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo!.plist deleted file mode 100644 index 6e0429d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsYahoo!.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsZephyr.plist b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsZephyr.plist deleted file mode 100644 index 3a156cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleDefaultsZephyr.plist and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/designable.nib deleted file mode 100644 index adc58db..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/designable.nib +++ /dev/null @@ -1,807 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSImageCell - NSImageView - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimRequestWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{58, 341}, {420, 242}} - 807927808 - - NSPanel - - View - - - {94, 7} - - - 256 - - - - 289 - {{226, 13}, {90, 32}} - - YES - - 67108864 - 134217728 - - - .LucidaGrandeUI - 12 - 4883 - - - -2038284288 - 1 - - Helvetica - 12 - 16 - - - - - - 200 - 25 - - NO - - - - 289 - {{316, 13}, {90, 32}} - - YES - - 67108864 - 134217728 - - - - -2035924992 - 1 - - LucidaGrande - 12 - 16 - - - - DQ - - 200 - 25 - - NO - - - - 268 - - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - - NSFilenamesPboardType - - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - NeXT filename pasteboard type - - - {{24, 162}, {64, 64}} - - YES - - 134217728 - 33554432 - - NSImage - NSApplicationIcon - - 0 - 1 - 0 - NO - - NO - NO - - - - 291 - {{107, 60}, {293, 105}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 275 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {293, 30} - - - - - - YmxhaApibGFoA - - - - 1 - MCAwIDAAA - - - - - - - - - - - - 38 - - - - 293 - 1 - - - 117574625 - 0 - - - 1 - MSAxIDEAA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {296, 10000000} - {293, 29} - - - - {293, 29} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - YES - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{107, 173}, {293, 29}} - - - 133184 - - - - 0.25 - 4 - 1 - - - - 267 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {290, 16} - - - - - - awefweff - - - - - LucidaGrande-Bold - 12 - 16 - - - - - - - - - - - 38 - - - - 290 - 1 - - - 117574625 - 0 - - - - - - - - - - - - - - - 0 - - 6 - {296, 10000000} - - - - {290, 16} - - - - - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{107, 210}, {290, 16}} - - - 133120 - - - - 0.25 - 4 - 1 - - - {420, 242} - - {{0, 0}, {1400, 1050}} - {94, 29} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 50 - - - - button_cancel - - - - 51 - - - - button_okay - - - - 52 - - - - textField_input - - - - 53 - - - - pressedButton: - - - - 56 - - - - pressedButton: - - - - 57 - - - - textView_secondary - - - - 64 - - - - scrollView_secondary - - - - 65 - - - - textView_primary - - - - 68 - - - - nextKeyView - - - - 42 - - - - view_anchorToRightSide - - - - 69 - - - - delegate - - - - 23 - - - - initialFirstResponder - - - - 39 - - - - view_anchorToLeftSide - - - - 70 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 10 - - - - - - Panel1 - - - 7 - - - - - - - - - - - - - 2 - - - - - - - - 12 - - - - - - - - 29 - - - - - - - - 49 - - - - - - - - 62 - - - - - - - - - - 63 - - - - - 66 - - - - - - - - - - 67 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 79 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSApplicationIcon - {128, 128} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/keyedobjects.nib deleted file mode 100644 index c7c2d6b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleMultilineRequestWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/designable.nib deleted file mode 100644 index 52d284c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/designable.nib +++ /dev/null @@ -1,821 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSImageCell - NSImageView - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimRequestWindowController - - - FirstResponder - - - NSApplication - - - 3 - 2 - {{324, 388}, {411, 159}} - 807927808 - - NSPanel - - View - - - {94, 7} - - - 256 - - - - 289 - {{217, 13}, {90, 32}} - - YES - - 67108864 - 134217728 - - - .LucidaGrandeUI - 12 - 4883 - - - -2038284288 - 1 - - Helvetica - 12 - 16 - - - - - - 200 - 25 - - NO - - - - 289 - {{307, 13}, {90, 32}} - - YES - - 67108864 - 134217728 - - - - -2035924992 - 1 - - - - DQ - - 200 - 25 - - NO - - - - 268 - - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - - NSFilenamesPboardType - - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - NeXT filename pasteboard type - - - {{24, 79}, {64, 64}} - - YES - - 134217728 - 33554432 - - NSImage - NSApplicationIcon - - 0 - 1 - 0 - NO - - NO - NO - - - - 288 - {{107, 60}, {284, 22}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 272 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {290, 29} - - - - - - awefweff - - - - 1 - MCAwIDAAA - - - LucidaGrande - 12 - 16 - - - - - - - - - - - 38 - - - - 290 - 1 - - - 117574625 - 0 - - - 1 - MSAxIDEAA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {296, 10000000} - - - - {290, 29} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{101, 90}, {290, 29}} - - - 133120 - - - - 0.25 - 4 - 1 - - - - 264 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - - {290, 16} - - - - - - awefweff - - - - - LucidaGrande-Bold - 12 - 16 - - - - - - - - - - - 38 - - - - 290 - 1 - - - 117574625 - 0 - - - - - - - - - - - - - - - 0 - - 6 - {296, 10000000} - - - - {290, 16} - - - - - - 4 - - - - -2147483392 - {{-100, -100}, {15, 40}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{101, 127}, {290, 16}} - - - 133120 - - - - 0.25 - 4 - 1 - - - {411, 159} - - {{0, 0}, {1400, 1050}} - {94, 29} - {10000000000000, 10000000000000} - YES - - - - - - - window - - - - 50 - - - - button_cancel - - - - 51 - - - - button_okay - - - - 52 - - - - textField_input - - - - 53 - - - - pressedButton: - - - - 56 - - - - pressedButton: - - - - 57 - - - - textView_secondary - - - - 64 - - - - scrollView_secondary - - - - 65 - - - - textView_primary - - - - 68 - - - - nextKeyView - - - - 42 - - - - view_anchorToRightSide - - - - 59 - - - - window_anchorOnLeftSide - - - - 61 - - - - delegate - - - - 23 - - - - initialFirstResponder - - - - 39 - - - - view_anchorToLeftSide - - - - 58 - - - - window_anchorOnRightSide - - - - 60 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 10 - - - - - - Panel1 - - - 7 - - - - - - - - - - - - - 2 - - - - - - - - 12 - - - - - - - - 29 - - - - - - - - 49 - - - - - - - - 62 - - - - - - - - - - 63 - - - - - 66 - - - - - - - - - - 67 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 77 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSApplicationIcon - {128, 128} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/keyedobjects.nib deleted file mode 100644 index 9c8ba45..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/PurpleSinglelineRequestWindow.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/designable.nib deleted file mode 100644 index 2a5d87b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/designable.nib +++ /dev/null @@ -1,413 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldBoolean - - - FirstResponder - - - NSApplication - - - - 266 - - - - 279 - - - - 2304 - - - - 2322 - {252, 14} - - - - - - - - - - - - - - 38 - - - - 252 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {252, 14} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{288, 3}, {252, 14}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 271 - {{273, 0}, {129, 18}} - - - YES - - -2080374784 - 0 - - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - {560, 20} - - NSView - - - - - - - view - - - - 2 - - - - checkBox - - - - 18 - - - - label - - - - 29 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 13 - - - - - - - - 14 - - - - - 25 - - - - - - - - Scroll View - Text View - - - 26 - - - - - 27 - - - - - 28 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 29 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldBoolean - AMPurpleRequestField - - checkBox - NSButton - - - checkBox - - checkBox - NSButton - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldBoolean.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/keyedobjects.nib deleted file mode 100644 index 7a04a6b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldBoolean.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/designable.nib deleted file mode 100644 index 9397917..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/designable.nib +++ /dev/null @@ -1,490 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldChoice - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {268, 21} - - - - - - - - - - - - - - 38 - - - - 268 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {268, 21} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, -2}, {268, 21}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{273, -3}, {270, 26}} - - YES - - -2076180416 - 2048 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 129 - - - 400 - 75 - - - Item 1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - OtherViews - - - - - Item 2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item 3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - - 1 - YES - YES - 2 - - NO - - - {560, 24} - - NSView - - - - - - - view - - - - 2 - - - - popUp - - - - 22 - - - - label - - - - 35 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 16 - - - - - - - - 17 - - - - - - - - 18 - - - - - - - - - - 19 - - - - - 20 - - - - - 21 - - - - - 24 - - - - - - - - Scroll View - Text View - - - 25 - - - - - 26 - - - - - 27 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 35 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldChoice - AMPurpleRequestField - - popUp - NSPopUpButton - - - popUp - - popUp - NSPopUpButton - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldChoice.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/keyedobjects.nib deleted file mode 100644 index d53b1ba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldChoice.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/designable.nib deleted file mode 100644 index c68584a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/designable.nib +++ /dev/null @@ -1,445 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSNumberFormatter - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldInteger - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 22} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 22} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, -2}, {267, 22}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{275, 2}, {265, 22}} - - YES - - -1804599231 - -1874852864 - - - .LucidaGrandeUI - 13 - 1044 - - - - - - -∞ - - - +∞ - - #,##0.### - #,##0.### - - - - - - - - NaN - - - - 0 - 0 - YES - NO - 1 - AAAAAAAAAAAAAAAAAAAAAA - - - - 3 - YES - YES - YES - - . - , - YES - YES - YES - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - {560, 26} - - NSView - - - - - - - view - - - - 2 - - - - textField - - - - 12 - - - - label - - - - 22 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 10 - - - - - - - - 11 - - - - - - - - 17 - - - - - - - - Scroll View - Text View - - - 18 - - - - - 19 - - - - - 20 - - - - - 23 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 23 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldInteger - AMPurpleRequestField - - textField - NSTextField - - - textField - - textField - NSTextField - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldInteger.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/keyedobjects.nib deleted file mode 100644 index b63a63c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldInteger.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/designable.nib deleted file mode 100644 index 149ed3b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/designable.nib +++ /dev/null @@ -1,491 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldList - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 21} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 21} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, -2}, {267, 21}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{273, -3}, {270, 26}} - - YES - - -2076180416 - 2048 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 129 - - - 400 - 75 - - - Item 1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - OtherViews - - - - - Item 2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item 3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - - -1 - 1 - YES - YES - 2 - - NO - - - {560, 24} - - NSView - - - - - - - view - - - - 2 - - - - popUp - - - - 69 - - - - label - - - - 124 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 63 - - - - - - - - 64 - - - - - - - - 65 - - - - - - - - - - 66 - - - - - 67 - - - - - 68 - - - - - 118 - - - - - - - - Scroll View - Text View - - - 119 - - - - - 120 - - - - - 121 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 124 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldList - AMPurpleRequestField - - popUp - NSPopUpButton - - - popUp - - popUp - NSPopUpButton - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldList.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/keyedobjects.nib deleted file mode 100644 index 506d3b0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldList.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/designable.nib deleted file mode 100644 index 29de3c6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/designable.nib +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldMultiList - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 21} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 21} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, -2}, {267, 21}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{273, -2}, {271, 26}} - - YES - - -2080374720 - 2048 - - .LucidaGrandeUI - 13 - 1044 - - - -2035138560 - 129 - - - - 400 - 75 - - - YES - Item 1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - OtherViews - - - - - Item 2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item 3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - - YES - 1 - YES - YES - 2 - - NO - - - {560, 25} - - NSView - - - - - - - view - - - - 2 - - - - label - - - - 124 - - - - popDown - - - - 125 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 99 - - - - - - - - 100 - - - - - - - - 101 - - - - - - - - - - 102 - - - - - 103 - - - - - 104 - - - - - 118 - - - - - - - - Scroll View - Text View - - - 119 - - - - - 120 - - - - - 121 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 126 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/keyedobjects.nib deleted file mode 100644 index 4d6c25a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultiList.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/designable.nib deleted file mode 100644 index 8c38991..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/designable.nib +++ /dev/null @@ -1,532 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldMultilineString - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 22} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 22} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, 78}, {267, 22}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 275 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {263, 87} - - - - - - - - - - - - - - 166 - - - - 263 - 1 - - - 117583847 - 0 - - - - - - - - - - - - - - - 1 - - 6 - {463, 10000000} - {248, 87} - - - - {{1, 1}, {248, 87}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{249, 1}, {15, 87}} - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{275, 9}, {265, 89}} - - - 133266 - - - - 0.25 - 4 - 1 - - - {560, 109} - - NSView - - - - - - - textView - - - - 9 - - - - label - - - - 26 - - - - view - - - - 27 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 5 - - - - - - - - - - 6 - - - - - 7 - - - - - 8 - - - - - 21 - - - - - - - - Scroll View - Text View - - - 22 - - - - - 23 - - - - - 24 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 27 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldMultilineString - AMPurpleRequestField - - textView - NSTextView - - - textView - - textView - NSTextView - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldMultilineString.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/keyedobjects.nib deleted file mode 100644 index 6595b42..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldMultilineString.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/designable.nib deleted file mode 100644 index 755090e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/designable.nib +++ /dev/null @@ -1,410 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldSecureString - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 22} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 22} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, 1}, {267, 22}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{275, 5}, {265, 22}} - - YES - - -1804599231 - 272630784 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - {560, 32} - - NSView - - - - - - - maskedField - - - - 20 - - - - label - - - - 26 - - - - view - - - - 27 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 18 - - - - - - - - 19 - - - - - 21 - - - - - - - - Scroll View - Text View - - - 22 - - - - - 23 - - - - - 24 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 27 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldSecureString - AMPurpleRequestField - - maskedField - NSSecureTextField - - - maskedField - - maskedField - NSSecureTextField - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldSecureString.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/keyedobjects.nib deleted file mode 100644 index bb423ab..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldSecureString.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/designable.nib deleted file mode 100644 index 1a8e175..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/designable.nib +++ /dev/null @@ -1,417 +0,0 @@ - - - - 1070 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AMPurpleRequestFieldString - - - FirstResponder - - - NSApplication - - - - 266 - - - - 278 - - - - 2304 - - - - 2322 - {267, 22} - - - - - - - - - - - - - - 38 - - - - 267 - 1 - - - 117574660 - 0 - - - 3 - MQA - - - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - selectedTextColor - - 3 - MAA - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 0 - - 6 - {560, 10000000} - - - - {267, 22} - - - - - - {1, -1} - 0 - - 2 - - - - -2147483392 - {{-100, -100}, {15, 15}} - - - NO - - _doScroller: - 1 - 0.85256409645080566 - - - - -2147483392 - {{-100, -100}, {543, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{0, 1}, {267, 22}} - - - 153600 - - - - 0.25 - 4 - 1 - - - - 259 - {{275, 5}, {265, 22}} - - YES - - -1804599231 - 272630784 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - {560, 32} - - NSView - - - - - - - textField - - - - 13 - - - - label - - - - 26 - - - - view - - - - 27 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 1 - - - - - - - - - 11 - - - - - - - - 12 - - - - - 21 - - - - - - - - Scroll View - Text View - - - 22 - - - - - 23 - - - - - 24 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 27 - - - - - AMPurpleRequestField - NSObject - - NSTextView - NSView - - - - label - NSTextView - - - view - NSView - - - - IBProjectSource - ./Classes/AMPurpleRequestField.h - - - - AMPurpleRequestFieldString - AMPurpleRequestField - - NSSecureTextField - NSTextField - NSTextView - - - - maskedField - NSSecureTextField - - - textField - NSTextField - - - textView - NSTextView - - - - IBProjectSource - ./Classes/AMPurpleRequestFieldString.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/keyedobjects.nib deleted file mode 100644 index cb0a3e4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/RequestFieldString.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index a2cd94a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom del xat: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Sobrenom: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {256, 14}} - - YES - - 67108864 - 4194304 - Separeu els noms dels contactes amb comes. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contactes: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Amb el missatge: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0021a31..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index ca60d7d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Tòpic: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {246, 14}} - - YES - - 67108864 - 4194304 - Separeu els noms dels contactes amb comes. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contactes: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 77d579b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index f065b76..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 182}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom del xat: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 180}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 60}, {120, 17}} - - YES - - 67108864 - 71303168 - Amb el missatge: - - - - - - NO - 1 - - - - 256 - {{-3, 150}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contactes: - - - - - - NO - 1 - - - - 256 - {{122, 110}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 88}, {249, 14}} - - YES - - 67108864 - 4194304 - Separeu els noms dels contactes amb comes. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {408, 222} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 8e40bdc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 52a5131..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 182}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom del xat: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 180}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 60}, {120, 17}} - - YES - - 67108864 - 71303168 - Amb el missatge: - - - - - - NO - 1 - - - - 256 - {{120, 88}, {257, 14}} - - YES - - 67108864 - 4194304 - Separeu els nom dels contactes amb comes. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 110}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 150}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contactes: - - - - - - NO - 1 - - - {409, 222} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 16c10c6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 37d05b5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 37}, {120, 17}} - - YES - - 67108864 - 71303168 - Instància: - - - - - - NO - 1 - - - - 256 - {{122, 35}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 5}, {120, 17}} - - YES - - 67108864 - 71303168 - Destinatari: - - - - - - NO - 1 - - - - 256 - {{122, 3}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c78f57c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 58f9bcc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-32, 3}, {140, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-32, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Sobrenom: - - - - - - NO - 1 - - - - 264 - {{113, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - sobrenom - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{113, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (opcional) - - YES - - - - NO - 1 - - - - 264 - {{113, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-64, 30}, {172, 17}} - - YES - - 67108864 - 71303168 - Nom d'amfitrió: - - - - - - NO - 1 - - - {363, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encripta la connexió amb SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{10, 155}, {418, 17}} - - YES - - 68157504 - 272761856 - Un per línia, la / és opcional. Es substituirà $me amb el teu sobrenom actual. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Executa les ordres següents quan s'hagi connectat: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificació: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{156, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{49, 35}, {102, 17}} - - YES - - 68157504 - 272630784 - Nom de veritat: - - - - - - NO - 1 - - - - 268 - {{156, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {137, 17}} - - YES - - 68157504 - 272630784 - Nom d'usuari (ídem): - - - - - - NO - 1 - - - {381, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9163d34..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 64429c8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1440 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - - YES - - 67108864 - 71303168 - Àlies: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - - YES - - 67108864 - 71303168 - Perfil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{160, 72}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No utilitzis l'enciptació - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Fes servir l'encriptació quan sigui possible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Fes servir l'encriptació obligatòriament - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{160, 48}, {306, 18}} - - YES - - 67108864 - 0 - Permetre connexions múltiples - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{17, 49}, {140, 17}} - - YES - - 67108864 - 71303168 - Connexions múltiples: - - - - - - NO - 1 - - - - 264 - {{160, 179}, {306, 18}} - - YES - - 67108864 - 0 - Busca correus nous - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 136}, {326, 36}} - - YES - - 67108864 - 0 - VXRpbGl0emEgc2VtcHJlIGVsIHByb3h5IHBlciBsZXMgdHJhbnNmZXLDqG5jaWVzCmkgZWwgRGlyZWN0 -IElNA - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 208}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de connexió: - - - - - - NO - 1 - - - - 264 - {{162, 205}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{406, 205}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{367, 207}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{17, 180}, {140, 17}} - - YES - - 67108864 - 71303168 - Correu electrònic: - - - - - - NO - 1 - - - - 264 - {{17, 146}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor proxy AOL: - - - - - - NO - 1 - - - - 264 - {{17, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Seguretat: - - - - - - NO - 1 - - - {484, 247} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 6dd4ceb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index fc68c59..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Encriptació: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom d'usuari: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{191, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registra el nou compte - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 41aa0f8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 753c43e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1476 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{140, 20}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Sense encriptar - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Fes servir l'encriptació quan sigui possible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Fes servir l'encriptació sempre - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-3, 60}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encriptació: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 113}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encriptació: - - - - - - NO - 1 - - - - 264 - {{139, 107}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{347, 141}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{142, 139}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{386, 139}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 141}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor de connexió: - - - - - - NO - 1 - - - - 264 - {{141, 84}, {323, 18}} - - - YES - - 67108864 - 0 - Utilitza sempre un proxy per les transferències - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 85}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor proxy AOL: - - - - - - NO - 1 - - - {482, 178} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{100, 43}, {256, 18}} - - YES - - 67108864 - 0 - Mostra als altres que estic escrivint - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{22, 44}, {75, 17}} - - YES - - 67108864 - 71303168 - Teclejant: - - - - - - NO - 1 - - - - 264 - {{100, 18}, {312, 18}} - - YES - - 67108864 - 0 - Deixa que es vegi el meu estat des d'Internet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-26, 19}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{22, 73}, {75, 17}} - - YES - - 67108864 - 71303168 - Encriptació: - - - - - - NO - 1 - - - - 264 - {{99, 67}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {423, 92} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index e67806c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 660258b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3743 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{18, 65}, {103, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {104, 17}} - - YES - - 67108864 - 71303168 - Nom d'usuari: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nomdusuari@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{177, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrar el compte nou - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {111, 14}} - - YES - - 67108864 - 272629760 - S'està registrant... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{201, 131}, {270, 18}} - - YES - - 67108864 - 0 - Permetre l'autenticació de text simple - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{201, 111}, {163, 18}} - - YES - - 67108864 - 0 - Força l'SSL a la antiga - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{201, 178}, {284, 18}} - - YES - - 67108864 - 0 - Mostra notificacions de correu per llegir - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{203, 330}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{58, 332}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor BOSH: - - - - - - NO - 1 - - - - 264 - {{203, 358}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{34, 360}, {164, 17}} - - YES - - 67108864 - 71303168 - Servidor de connexió: - - - - - - NO - 1 - - - - 264 - {{203, 300}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{32, 302}, {166, 17}} - - YES - - 67108864 - 71303168 - Proxies de tranferències: - - - - - - NO - 1 - - - - 264 - {{370, 270}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{327, 272}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{203, 270}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{58, 272}, {140, 17}} - - YES - - 67108864 - 71303168 - Recurs: - - - - - - NO - 1 - - - - 264 - {{58, 179}, {140, 17}} - - YES - - 67108864 - 71303168 - Correu: - - - - - - NO - 1 - - - - 264 - {{58, 132}, {140, 17}} - - YES - - 67108864 - 71303168 - Seguretat: - - - - - - NO - 1 - - - - 256 - {{0, 239}, {198, 17}} - - YES - - 67108864 - 71303168 - Prioritat quan disponible: - - - - - - NO - 1 - - - - 256 - {{203, 236}, {73, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{44, 208}, {154, 17}} - - YES - - 67108864 - 71303168 - Prioritat quan absent: - - - - - - NO - 1 - - - - 256 - {{203, 204}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{200, 41}, {225, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Pregunta què fer - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accepta - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accepta i afegueix a la llista - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Denega - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 256 - {{14, 47}, {184, 17}} - - YES - - 67108864 - 71303168 - Subscripcions de presència: - - - - - - NO - 1 - - - - 268 - {{50, 20}, {201, 17}} - - YES - - 67108864 - 71303168 - ...afegueix a la llista del grup: - - - - - - NO - 1 - - - - 266 - {{256, 15}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{201, 91}, {143, 18}} - - YES - - 67108864 - 0 - Requereix SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{201, 71}, {262, 18}} - - YES - - 67108864 - 0 - Fes verificacions de certificat estrictes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{117, 156}, {81, 17}} - - YES - - 68157504 - 272630784 - Emoticones: - - - - - - NO - 1 - - - - 268 - {{201, 155}, {258, 18}} - - YES - - 67108864 - 0 - Mostra emoticones personalitzades - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {503, 380} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Mostra als altres quan escric - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{24, 25}, {63, 17}} - - YES - - 67108864 - 71303168 - Escrivint: - - - - - - NO - 1 - - - - 264 - {{5, 54}, {82, 17}} - - YES - - 67108864 - 71303168 - Encriptació: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{29, 0}, {58, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Mostra als altres què sona a iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {306, 17}} - - YES - - 67108864 - 272629760 - O bé introduïu l'adreça del servidor XMPP aquí: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {362, 17}} - - YES - - 67108864 - 272629760 - o bé seleccioneu un servidor públic de la llisa següent: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Nom del servidor - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{248, 12}, {193, 32}} - - YES - - 67108864 - 134217728 - Sol·licita un compte nou - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel·la - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{184, 58}, {251, 19}} - - YES - - -2080374784 - 134217728 - Visita la pàgina principal del servidor - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{454, 465}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index cec1186..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 534b78d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-5, 73}, {146, 17}} - - YES - - 67108864 - 71303168 - Servidor de connexió: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Busca correus nous - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Correu: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connecta a través d'HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{56, 0}, {81, 17}} - - YES - - 68157504 - 272630784 - Emoticones: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {264, 18}} - - YES - - 67108864 - 0 - Mostra emoticones personalitzades - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {127, 17}} - - YES - - 67108864 - 4194304 - Nom per mostrar: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Mostra als altres quan estic escrivint - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {69, 17}} - - YES - - 67108864 - 71303168 - Escrivint: - - - - - - NO - 1 - - - - 264 - {{5, 54}, {81, 17}} - - YES - - 67108864 - 71303168 - Encriptació: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{29, 0}, {57, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Mostra als altres què sona a iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0fbe50c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index da5d76a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuari: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-51, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Entrada: - - - - - - NO - 1 - - - - 264 - {{92, 18}, {355, 18}} - - YES - - 67108864 - 0 - Força l'entrada (ignora les redireccions del servidor) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{92, 38}, {250, 18}} - - YES - - 67108864 - 0 - Amaga la identitat del client - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {465, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index d1f9fc9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 47d66a1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuari: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 5}, {140, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - - - - - NO - 1 - - - - 264 - {{142, 3}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 35}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 37}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{353, 37}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 35}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index b063974..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 688c4c8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {212, 18}} - - YES - - 67108864 - 0 - Mostra el meu estat a tothom - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Utilitza UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {128, 18}} - - YES - - 67108864 - 0 - Utilitza un proxy SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{282, 102}, {144, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connexió: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Usuari d'autorització: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Estat: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {153, 17}} - - YES - - 67108864 - 71303168 - Domini d'autorització: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Contrasenya: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuari: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index fc8f86e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index ee542bf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,712 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de login: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Busca correus nous - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de sales: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 43ceca7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 4e996c9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuari: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 15}, {364, 117}} - - YES - - 71303168 - 4194304 - Zephyr requereix una configuració correcta de Kerberos. Zephyr utilitza el vostre UID d'Unix o nom Kerberos; el nom d'usuari de més amunt és per ús intern d'Adium. Només es recomana una connexió Zephyr simultània. Si utilitzeu un gestor d'amfitrions intern entrarà en conflicte amb altres instàncies de "zhm" que es puguin estar executant en l'ordinador. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exporta a .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exporta a .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {264, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposició: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {264, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificació: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exporta: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {262, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Servidor - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 312475648 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {262, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {264, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidors: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Gestor d'amfitrions: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {268, 18}} - - YES - - 67108864 - 0 - Fes servir el gestor d'amfitrions intern - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8ae6042..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/Localizable.strings deleted file mode 100644 index e14d792..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ca.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index f156740..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - Pro připojení k rozhovorům Facebook, musíte udělit aplikaci Adium příslušná oprávnění. Bude zobrazena zabezpečená přihlašovací stránka Facebook, pak klepněte na Povolit přístup. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Zde bude aktuální informace o stavu - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Povolit přístup - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 209bf3b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index b4e5be1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Jméno skupinového rozhovoru: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Řízení: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Jména přátel oddělené čárkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvat přátelé: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Se zprávou: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - textField_handle - - - - 42 - - - - view - - - - 31 - - - - textField_password - - - - 43 - - - - textField_server - - - - 41 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - textField_roomName - - - - 40 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 46 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index d548d5c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 5341d7f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Téma: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Jména přátel oddělené čárkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvat přátelé: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 6bca285..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index d89c711..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Jméno skupinového rozhovoru: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Se zprávou: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvat přátelé: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Jména přátel oddělené čárkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteUsers - - - - 50 - - - - textField_inviteMessage - - - - 44 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 54 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index d228d09..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index ddad0f6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Jméno skupinového rozhovoru: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Se zprávou: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Jména přátel oddělené čárkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvat přátelé: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - textField_inviteMessage - - - - 42 - - - - textField_inviteUsers - - - - 41 - - - - textField_roomName - - - - 35 - - - - view - - - - 31 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ad38d84..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 06c4364..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Třída: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Příjemce: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_instance - - - - 63 - - - - textField_recipient - - - - 62 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 65 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 1c6e3b1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 7b37d50..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1393 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Přezdívka: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - přezdívka - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (nepovinné) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Jméno: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Zabezpečené SSL spojení - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Jeden na řádek, / je volitelný. $me bude nahrazen aktuální přezdívkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Vykonávané příkazy při pripojení: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódování: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{46, 35}, {84, 17}} - - YES - - 68157504 - 272630784 - Skut. jméno: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{6, 4}, {124, 17}} - - YES - - 68157504 - 272630784 - Uživatelské jméno: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index f9b9bc5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 18cc9b2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{68, 125}, {272, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-2, 127}, {70, 17}} - - YES - - 67108864 - 71303168 - Zástupce: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {71, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {270, 115} - - - - - - - - - - - - - 38 - - - - 270 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {270, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{68, 0}, {272, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, -84}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Bez zabezpečení - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Je-li dostupné, použít zabezpečení - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Vyžadovat zabezpečení - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -108}, {306, 18}} - - YES - - 67108864 - 0 - Povolit vícenásobné přihlášení - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -107}, {140, 17}} - - YES - - 67108864 - 71303168 - Vícenásobná přihlášení: - - - - - - NO - 1 - - - - 264 - {{140, 6}, {159, 18}} - - YES - - 67108864 - 0 - Ověřit novou poštu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, -19}, {326, 18}} - - YES - - 67108864 - 0 - Vždy používat proxy pro přenosy souborů a přímých zprávách - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 35}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{386, 32}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{347, 34}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-3, 7}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, -18}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, -43}, {140, 17}} - - YES - - 67108864 - 71303168 - Zabezpečení: - - - - - - NO - 1 - - - {460, 54} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 717bf90..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 22ef65b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,548 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Zabezpečení: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživ. jméno: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrovat nový účet - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - registerNewAccount: - - - - 201 - - - - view_privacy - - - - 183 - - - - textField_accountUID - - - - 197 - - - - popUp_encryption - - - - 189 - - - - changedPreference: - - - - 188 - - - - view_setup - - - - 191 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8636266..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 9c990bf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1578 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, -40}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Bez zabezpečení - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Je-li dostupné, použít zabezpečení - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Vyžadovat zabezpečení - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Zabezpečení: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 53}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódování: - - - - - - NO - 1 - - - - 264 - {{124, 47}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 81}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 79}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 79}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 81}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{126, 24}, {298, 18}} - - YES - - 67108864 - 0 - Vždy používat proxy pro přenosy souborů - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 25}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 101} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Dát ostatním vědět, že právě píši - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Psaní: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Zveřejnit můj stav na Internetu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{7, 0}, {139, 17}} - - YES - - 67108864 - 71303168 - Zveřejnění na Webu: - - - - - - NO - 1 - - - - 264 - {{44, 54}, {102, 17}} - - YES - - 67108864 - 71303168 - Zabezpečení: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Položka 1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSButton - NSMatrix - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index b270389..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 23d9c91..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3629 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{29, 90}, {92, 17}} - - YES - - 67108864 - 71303168 - Uživ. jméno: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrovat nový účet - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registruje se… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {244, 18}} - - YES - - 67108864 - 0 - Povolit nezabezpečené přihlášení - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {244, 18}} - - YES - - 67108864 - 0 - Vynutit starší SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {246, 18}} - - YES - - 67108864 - 0 - Upozornění na novou poštu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-11, 255}, {168, 17}} - - YES - - 67108864 - 71303168 - Proxy přenosu souborů: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Zdroj: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Bezpečnost: - - - - - - NO - 1 - - - - 256 - {{13, 192}, {144, 17}} - - YES - - 67108864 - 71303168 - Důležitost Dostupný: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{228, 192}, {96, 17}} - - YES - - 67108864 - 71303168 - Nedostupný: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Dotázat se - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Přijmout - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Přijmout a přidat do seznamu - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Odmítnout - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Oznámení odebírání: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - …přidat do seznamu ve skupině: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Vyžadovat SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Důkladná ověřování certifikátů - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emotikony: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {244, 18}} - - YES - - 67108864 - 0 - Zobrazovat vlastní emotikony - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Dát ostatním vědět, že právě píši - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Psaní: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Zabezpeč.: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Položka1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{29, 0}, {58, 17}} - - YES - - 67108864 - 71303168 - Hudba: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Dát vědět ostatním aktuální název přehrávané skladby v iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Také zadejte adresu vašeho XMPP serveru: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {285, 17}} - - YES - - 67108864 - 272629760 - nebo vyberte ze seznamu veřejný server: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Požadavek na nový účet - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Zrušit - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 252} - - - - - - TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGVyIGVsaXQgbGFtZXQsIGNvbnNlY3RldGF1ciBjaWxsaXVtIGFk -aXBpc2ljaW5nIHBlY3UsIHNlZCBkbyBlaXVzbW9kIHRlbXBvciBpbmNpZGlkdW50IHV0IGxhYm9yZSBl -dCBkb2xvcmUgbWFnbmEgYWxpcXVhLiBVdCBlbmltIGFkIG1pbmltIHZlbmlhbSwgcXVpcyBub3N0cnVk -IGV4ZXJjaXRhdGlvbiB1bGxhbWNvIGxhYm9yaXMgbmlzaSB1dCBhbGlxdWlwIGV4IGVhIGNvbW1vZG8g -Y29uc2VxdWF0LiBEdWlzIGF1dGUgaXJ1cmUgZG9sb3IgaW4gcmVwcmVoZW5kZXJpdCBpbiB2b2x1cHRh -dGUgdmVsaXQgZXNzZSBjaWxsdW0gZG9sb3JlIGV1IGZ1Z2lhdCBudWxsYSBwYXJpYXR1ci4gRXhjZXB0 -ZXVyIHNpbnQgb2NjYWVjYXQgY3VwaWRhdGF0IG5vbiBwcm9pZGVudCwgc3VudCBpbiBjdWxwYSBxdWkg -b2ZmaWNpYSBkZXNlcnVudCBtb2xsaXQgYW5pbSBpZCBlc3QgbGFib3J1bSBFdCBoYXJ1bWQgdW5kIGxv -b2t1bSBsaWtlIEdyZWVrIHRvIG1lLCBkZXJldWQgZmFjaWxpcyBlc3QgZXIgZXhwZWRpdCBkaXN0aW5j -dC4gTmFtIGxpYmVyIHRlIGNvbnNjaWVudCB0byBmYWN0b3IgdHVtIHBvZW4gbGVndW0gb2Rpb3F1ZSBj -aXZpdWRhCg - - - - - LucidaGrande - 10 - 16 - - - 3 - 36 - - 1 - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - 36 - - 1 - - - - - GQAEAQgADAEiAAcBhQQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - 4 - - 1 - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.62301587301587302 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Domovská stránka serveru - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index a8a2263..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index a4e3825..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Povolit přímá připojení - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Ověřit novou poštu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Připojit pomocí HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Emotikony: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {240, 18}} - - YES - - 67108864 - 0 - Zobrazovat vlastní emotikony - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Jméno: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Dát ostatním vědět, že právě píši - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Psaní: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Zabezpeč.: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{34, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Hudba: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Dát vědět ostatním aktuální název přehrávané skladby v iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 01bd58c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 2953415..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživatel: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Jméno: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {260, 18}} - - YES - - 67108864 - 0 - Vynutit přihlášení (ign. přesměrování) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Skrýt klientovu totožnost - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0e83efc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 40534f1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživ. jméno: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - textField_connectPort - - - - 194 - - - - changedPreference: - - - - 196 - - - - view_options - - - - 200 - - - - view_setup - - - - 190 - - - - textField_accountUIDLabel - - - - 192 - - - - changedPreference: - - - - 197 - - - - textField_connectHost - - - - 193 - - - - changedPreference: - - - - 198 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 199 - - - - textField_accountUID - - - - 191 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index b70881f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index fb615d5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Zveřejnit stav komukoliv - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Použít UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {128, 18}} - - YES - - 67108864 - 0 - Použít SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{277, 102}, {149, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Spojení: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorizovat uživatele: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Stav: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorizační doména: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Jméno: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - checkBox_publishStatus - - - - 232 - - - - textField_connectHost - - - - 227 - - - - label_password - - - - 229 - - - - checkBox_useUDP - - - - 233 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_accountUID - - - - 225 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 245 - - - - view_setup - - - - 224 - - - - textField_password - - - - 228 - - - - view_options - - - - 207 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index f481b85..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 22dfdeb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,604 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {176, 18}} - - YES - - 67108864 - 0 - Ověřit novou poštu - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Server seznamu skupin: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - changedPreference: - - - - 100 - - - - checkBox_checkMail - - - - 99 - - - - popUp_chatServer - - - - 109 - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - changedPreference: - - - - 102 - - - - textField_connectPort - - - - 98 - - - - changedPreference: - - - - 101 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1fa554d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index b1fdab0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1037 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživ. jméno: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr vyžaduje správnou kofiguraci Kerberos. Zephyr používá vaše UNIX UID nebo vaše jméno Kerberos; níže uvedení uživatelé jsou vyhrazeni pro aplikaci Adium. Je doporučeno pouze jedno Zephyr spojení současně. Použitím vnitřního správce uživatelů předejtede konfliktům s ostatními „zhm” instancemi běžícími na tomto počítači. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exportovat do .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exportovat do .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Vystavení: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódování: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exportovat: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servery: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Správce uživatelů: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {212, 18}} - - YES - - 67108864 - 0 - Použít vnitřní správu uživatelů - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - textField_encoding - - - - 226 - - - - changedPreference: - - - - 229 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - addRowToServerList: - - - - 244 - - - - changedPreference: - - - - 231 - - - - minus_servers - - - - 252 - - - - checkBox_exportSubs - - - - 228 - - - - checkBox_launchZhm - - - - 249 - - - - changedPreference: - - - - 248 - - - - changedPreference: - - - - 232 - - - - changedPreference: - - - - 224 - - - - textField_accountUID - - - - 221 - - - - changedPreference: - - - - 230 - - - - view_setup - - - - 219 - - - - textField_accountUIDLabel - - - - 223 - - - - view_options - - - - 220 - - - - plus_servers - - - - 251 - - - - tableView_servers - - - - 243 - - - - textField_exposure - - - - 225 - - - - checkBox_exportAnyone - - - - 227 - - - - delegate - - - - 253 - - - - dataSource - - - - 242 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 301cd56..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/Localizable.strings deleted file mode 100644 index 46c2c7c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/cs.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 23bae79..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - For at forbinde til Facebook Chat, skal du give Adium adgang. Et sikkert Facebook login-vindue vil blive vist når du klikker Tillad adgang. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Nuværende statusinformation bliver vist her. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Tillad adgang - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index ced7bf1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index ad76b17..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Samtalerumsnavn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Brugernavn: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Kodeord: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separer kontakters navne med kommaer. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Med beskeden: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index b085cd5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 4dfe335..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Emne: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separer kontakters navne med kommaer. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0c29100..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 3a227fb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Navn på samtalerum: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Med beskeden: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separer kontakters navne med kommaer. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index b6f0ed7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 707ca23..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Navn på samtalerum: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Med beskeden: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separer kontakters navne med kommaer. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 668a767..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 882b40f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Klasse: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instans: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Modtager: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f85b1c4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 61342f8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1419 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-65, 2}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kodeord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-65, 58}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kaldenavn: - - - - - - NO - 1 - - - - 264 - {{80, 56}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - kaldenavn - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{80, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (valgfrit) - - YES - - - - NO - 1 - - - - 264 - {{80, 28}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{3, 30}, {72, 17}} - - - YES - - 67108864 - 71303168 - Værtsnavn: - - - - - - NO - 1 - - - {320, 78} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {306, 18}} - - YES - - 67108864 - 0 - Krypter forbindelse ved brug af SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {428, 17}} - - YES - - 68157504 - 272761856 - En per linie, / er valgfrit. $me vil blive erstattet med dit nuværende kaldenavn. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {405, 131} - - - - - - - - - - - - - 38 - - - - 405 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {405, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{406, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {422, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {458, 182}} - - - - {{-2, -4}, {460, 198}} - - {0, 0} - - 67108864 - 0 - Udfør kommandoer ved forbindelse: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodning: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {515, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{43, 35}, {87, 17}} - - YES - - 68157504 - 272630784 - Rigtige navn: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{5, 4}, {125, 17}} - - YES - - 68157504 - 272630784 - Brugernavn (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 53fad7b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 5118efb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1439 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{84, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {82, 17}} - - - YES - - 67108864 - 71303168 - Kaldenavn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{27, 102}, {52, 17}} - - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{84, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {370, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Ingen kryptering - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Brug kryptering når det er muligt - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Kræv kryptering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Ingen kryptering - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Flere logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Tjek for nye emails - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Brug altid proxy til arkivoverførsler og Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Loginserver: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL proxyserver: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index eaaf484..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 534170b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,726 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Adgangskode: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Brugernavn: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrer ny konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index aae0882..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 0866b86..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1476 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Kræv kryptering - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Brug kryptering når det er tilgængeligt - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Ingen kryptering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kryptering: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kodning: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - - YES - - 67108864 - 71303168 - Loginserver: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - - YES - - 67108864 - 0 - Brug altid proxy til arkivoverførsler - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - - YES - - 67108864 - 71303168 - AOL proxyserver: - - - - - - NO - 1 - - - {427, 141} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Lad andre se hvad du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Lad andre se min status fra Internet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{5, 0}, {141, 17}} - - YES - - 67108864 - 71303168 - Internetovervågning: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7975053..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index e1b9ede..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3361 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - - YES - - 67108864 - 71303168 - Kodeord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 88}, {104, 19}} - - - YES - - 67108864 - 71303168 - Brugernavn: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - brugernavn@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrer ny konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - - YES - - 67108864 - 272629760 - Registrerer… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - - NSView - NSResponder - - - - 256 - - - - 264 - {{184, 162}, {212, 18}} - - YES - - 67108864 - 0 - Tillad ren-tekst autorisering - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{184, 142}, {143, 18}} - - YES - - 67108864 - 0 - Tving gammeldags SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{184, 209}, {211, 18}} - - YES - - 67108864 - 0 - Vis ny email notifikationer - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{186, 357}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{41, 359}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH server: - - - - - - NO - 1 - - - - 264 - {{186, 385}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{41, 387}, {140, 17}} - - YES - - 67108864 - 71303168 - Forbindelsesserver: - - - - - - NO - 1 - - - - 264 - {{186, 327}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{41, 329}, {140, 17}} - - YES - - 67108864 - 71303168 - Filoverførselsproxier: - - - - - - NO - 1 - - - - 264 - {{353, 297}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{310, 299}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{186, 297}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{41, 299}, {140, 17}} - - YES - - 67108864 - 71303168 - Resourse: - - - - - - NO - 1 - - - - 264 - {{41, 210}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{41, 163}, {140, 17}} - - YES - - 67108864 - 71303168 - Sikkerhed: - - - - - - NO - 1 - - - - 256 - {{67, 266}, {114, 17}} - - YES - - 67108864 - 71303168 - Tilstede prioritet: - - - - - - NO - 1 - - - - 256 - {{186, 263}, {119, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{37, 235}, {145, 17}} - - YES - - 67108864 - 71303168 - Ikke tilstede prioritet: - - - - - - NO - 1 - - - - 256 - {{187, 231}, {118, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{183, 72}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Spørg hvad der skal ske - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accepter - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accepter og tilføj til liste - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Afvis - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 256 - {{-3, 61}, {184, 34}} - - YES - - 67108864 - 71303168 - Tilgængelig abonnementer: - - - - - - NO - 1 - - - - 268 - {{40, 52}, {142, 17}} - - YES - - 67108864 - 71303168 - ...tilføj til liste i gruppen: - - - - - - NO - 1 - - - - 266 - {{186, 46}, {195, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{184, 122}, {143, 18}} - - YES - - 67108864 - 0 - Kræv SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{184, 102}, {244, 18}} - - YES - - 67108864 - 0 - Udfør strenge certifkattjeks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{107, 187}, {74, 17}} - - YES - - 68157504 - 272630784 - Emotikons: - - - - - - NO - 1 - - - - 268 - {{184, 186}, {238, 18}} - - YES - - 67108864 - 0 - Vis ikke-standard emotikoner - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {448, 407} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Lad andre vide når du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Lad andre vide hvad iTunes afspiller - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Indtast enten din XMPP serveradresse her: - - - - - - NO - 1 - - - - 266 - {{68, 277}, {171, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 4194304 - Server: - - - - - - NO - 1 - - - - 265 - {{283, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{244, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - eller vælg en offentlig server fra listen: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Servernavn - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Registerer ny konto - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Afbryd - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{247, 58}, {188, 19}} - - YES - - -2080374784 - 134217728 - Besøg serverhjemmeside - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 68cc82b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 8832ea8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Tillad direkte forbindelser - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - YES - - 67108864 - 71303168 - Loginserver: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Tjek for nye emails - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Forbind via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Emotikoner: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Vis brugerfremstillede emotikoner - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Kaldenavn: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Lad andre vide at du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Lad andre vide hvad iTunes afspiller - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9e17544..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 0ea0166..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - - YES - - 67108864 - 71303168 - Bruger: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - - YES - - 67108864 - 71303168 - Adgangskode: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{140, -2}, {250, 42}} - - YES - - 67108864 - 0 - R2VubmVtdHZpbmcgbG9naW4gKGlnbm9yZXIKb21kaXJpZ2VyaW5nZXIgZnJhIHNlcnZlcik - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 42}, {250, 18}} - - YES - - 67108864 - 0 - Skjul klientidentitet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 60} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index eb2286b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 09a2e8f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Brugernavn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Adgangskode: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 799a057..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 4ee66e9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1054 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Vis status til alle - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - - YES - - 67108864 - 0 - Brug UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {121, 18}} - - - YES - - 67108864 - 0 - Brug SIP-proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{275, 102}, {151, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - - YES - - 67108864 - 71303168 - Forbindelse: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - - YES - - 67108864 - 71303168 - Autoriseringsbruger: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - - YES - - 67108864 - 71303168 - Autoriseringsdomæne: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Adgangskode: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Kontonavn: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {422, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index a7b7c53..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 6ba3e89..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Loginserver: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Se efter ny email - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Rumlisteserver: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4e47a92..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 7ef6f70..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Brugernavn: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr kræver en korrekt Kerberos-indstilling. Zephyr bruger dit UNIX-UID eller dit Kerberos-navn; brugernavnet ovenfor er alene til brug internt i Adium. Det anbefales kun at bruge én Zephyr-forbindelse ad gangen. Brug af den interne værtshåndtering vil give konflikt med enhver anden instanser af 'zhm' kørende på denne maskine. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Eksporter til .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Eksporter til .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Synlighed: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kodning: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Eksporter: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servere: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Værtshåndtering: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Brug intern værtshåndtering - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5e0edbd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/Localizable.strings deleted file mode 100644 index 040ddf5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/da.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2a8cad9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,634 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 130}, {378, 68}} - - YES - - 67108864 - 272891904 - Um sich im Facebook Chat anzumelden, müssen Sie Adium Zugriff auf Ihr Facebook-Konto erlauben. Wenn Sie auf „Zugriff erlauben“ klicken, wird sich ein Fenster mit einem sicheres Facebook-Anmeldeformular öffnen. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Aktuelle Statusinformationen werden hier angezeigt. - - - - - - NO - 1 - - - - 269 - {{119, 81}, {157, 32}} - - YES - - 67108864 - 134217728 - Zugriff erlauben - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147483380 - {{189, 53}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - id - id - - - - changedPreference: - id - - - signUpAccount: - id - - - - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - button_signUp - NSButton - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 06c1a78..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 23f6906..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,843 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {140, 17}} - - YES - - 67108864 - 71303168 - Raumname: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{142, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{142, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {140, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{142, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - - - - - NO - 1 - - - - 256 - {{139, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Kontaktnamen durch Kommas trennen. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Kontakte einladen: - - - - - - NO - 1 - - - - 256 - {{142, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Einladungstext: - - - - - - NO - 1 - - - - 256 - {{142, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {429, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 70 - - - - - 33 - - - - - - - - 71 - - - - - 34 - - - - - - - - 72 - - - - - 35 - - - - - - - - 73 - - - - - 36 - - - - - - - - 74 - - - - - 37 - - - - - - - - 75 - - - - - 38 - - - - - - - - 76 - - - - - 39 - - - - - - - - 77 - - - - - 51 - - - - - - - - 78 - - - - - 52 - - - - - - - - 79 - - - - - 53 - - - - - - - - 80 - - - - - 54 - - - - - - - - 81 - - - - - 56 - - - - - - - - 82 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 84 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7ca0d65..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 2dc33bd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{8, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Betreff: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{130, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Kontaktnamen durch Kommas trennen. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{133, 21}, {258, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {128, 17}} - - YES - - 67108864 - 71303168 - Kontakte einladen: - - - - - - NO - 1 - - - - 256 - {{133, 89}, {258, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 37cafdc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 5d3eff3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Raumname: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{128, 157}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{128, 7}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{3, 52}, {120, 17}} - - YES - - 67108864 - 71303168 - Einladungstext: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {126, 17}} - - YES - - 67108864 - 71303168 - Kontakte einladen: - - - - - - NO - 1 - - - - 256 - {{128, 89}, {260, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{125, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Kontaktnamen durch Kommas trennen. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 506efb6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 43dd90d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{4, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Raumname: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{129, 147}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{129, 1}, {260, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{4, 47}, {120, 17}} - - YES - - 67108864 - 71303168 - Einladungstext: - - - - - - NO - 1 - - - - 256 - {{126, 64}, {224, 14}} - - YES - - 67108864 - 4194304 - Kontaktnamen durch Kommas trennen. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{129, 79}, {260, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {126, 17}} - - YES - - 67108864 - 71303168 - Kontakte einladen: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 1eb0789..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 7057781..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Klasse: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instanz: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Empfänger: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e4c1435..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 13836d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1411 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nickname: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.example.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Host: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{183, 234}, {262, 18}} - - YES - - 67108864 - 0 - Verbindung mittels SSL verschlüsseln - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{126, 232}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{0, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {436, 17}} - - YES - - 68157504 - 272761856 - Einer pro Zeile, / ist optional. $me wird durch Ihren Nicknamen ersetzt werden. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {421, 131} - - - - - - - - - - - - - 38 - - - - 421 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {421, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{407, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {423, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {455, 182}} - - - - {{-2, -6}, {457, 198}} - - {0, 0} - - 67108864 - 0 - Beim Verbinden Befehle ausführen: - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 207}, {124, 17}} - - YES - - 67108864 - 71303168 - Zeichenkodierung: - - - - - - NO - 1 - - - - 264 - {{123, 201}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 256} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{-3, 34}, {133, 17}} - - YES - - 68157504 - 71304192 - Echter Name: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{-3, 4}, {133, 17}} - - YES - - 68157504 - 71304192 - Benutzername: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 12be298..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index ab153e6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1451 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{185, 24}, {322, 58}} - - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Keine Verschlüsselung - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Verschlüsselung verwenden, falls verfügbar - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Verschlüsselung verlangen - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{185, -1}, {306, 18}} - - YES - - 67108864 - 0 - Gleichzeitige Anmeldungen erlauben - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {180, 17} - - - YES - - 67108864 - 71303168 - Mehrere Anmeldungen: - - - - - - NO - 1 - - - - 264 - {{185, 113}, {368, 19}} - - - YES - - 67108864 - 0 - Nach neuen E-Mails suchen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{185, 89}, {368, 18}} - - - YES - - 67108864 - 0 - Proxy für Dateiübertragungen und Direct IM benutzen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{0, 140}, {180, 17}} - - - YES - - 67108864 - 71303168 - Server für Anmeldung: - - - - - - NO - 1 - - - - 264 - {{187, 138}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{431, 138}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{392, 140}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{0, 115}, {180, 17}} - - - YES - - 67108864 - 71303168 - E-Mail-Adresse: - - - - - - NO - 1 - - - - 264 - {{0, 90}, {180, 17}} - - - YES - - 67108864 - 71303168 - AOL-Proxy-Server: - - - - - - NO - 1 - - - - 264 - {{0, 65}, {180, 17}} - - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - - - NO - 1 - - - {563, 160} - - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 85b1031..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 416f417..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Benutzername: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Neues Konto registrieren - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index a809e22..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 40eba1d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1524 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{148, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Verschlüsselung verlangen - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Verschlüsselung verwenden, falls möglich - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Keine Verschlüsselung - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Verschlüsselung verwenden, falls verfügbar - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{3, 41}, {140, 17}} - - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 94}, {146, 17}} - - - YES - - 67108864 - 71303168 - Zeichenkodierung: - - - - - - NO - 1 - - - - 264 - {{145, 88}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{353, 122}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{148, 120}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{392, 120}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 122}, {146, 17}} - - - YES - - 67108864 - 71303168 - Server für Anmeldung: - - - - - - NO - 1 - - - - 264 - {{146, 65}, {274, 18}} - - - YES - - 67108864 - 0 - Proxy für Dateiübertragungen benutzen - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 66}, {146, 17}} - - - YES - - 67108864 - 71303168 - AOL-Proxy-Server: - - - - - - NO - 1 - - - {463, 142} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 23}, {305, 18}} - - YES - - 67108864 - 0 - Andere wissen lassen, wenn ich tippe - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {149, 17}} - - YES - - 67108864 - 71303168 - Schreiben: - - - - - - NO - 1 - - - - 264 - {{149, -2}, {305, 18}} - - YES - - 67108864 - 0 - Eigenen Status im Web veröffentlichen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, -1}, {149, 17}} - - YES - - 67108864 - 71303168 - Privatsphäre: - - - - - - NO - 1 - - - - 264 - {{-3, 53}, {149, 17}} - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - - - NO - 1 - - - - 264 - {{148, 47}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 71} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 322 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - checkBox_broadcastMusic - NSButton - - - checkBox_broadcastMusic - - checkBox_broadcastMusic - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5f08def..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 8f31ac3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3804 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{17, 66}, {104, 17}} - - - YES - - 67108864 - 71303168 - Kennwort: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 91}, {104, 17}} - - - YES - - 67108864 - 71303168 - Benutzername: - - - - - - NO - 1 - - - - 264 - {{126, 89}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 61}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{172, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Neues Konto registrieren - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - - YES - - 67108864 - 272629760 - Registriere … - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {386, 128} - - NSView - NSResponder - - - - 256 - - - - 264 - {{180, 112}, {244, 18}} - - - YES - - 67108864 - 0 - Erlaube Klartext-Authentifizierung - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{180, 92}, {244, 18}} - - - YES - - 67108864 - 0 - Altes SSL erzwingen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{180, 159}, {244, 18}} - - - YES - - 67108864 - 0 - Empfang neuer E-Mails anzeigen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{182, 313}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 315}, {160, 17}} - - - YES - - 67108864 - 71303168 - BOSH-Server: - - - - - - NO - 1 - - - - 264 - {{182, 341}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 343}, {160, 17}} - - - YES - - 67108864 - 71303168 - Verbindungsserver: - - - - - - NO - 1 - - - - 264 - {{182, 283}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {160, 17}} - - - YES - - 67108864 - 71303168 - Proxy für Dateitransfer: - - - - - - NO - 1 - - - - 264 - {{349, 253}, {73, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{306, 255}, {38, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{182, 253}, {119, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {160, 17}} - - - YES - - 67108864 - 71303168 - Ressource: - - - - - - NO - 1 - - - - 264 - {{37, 160}, {140, 17}} - - - YES - - 67108864 - 71303168 - E-Mails: - - - - - - NO - 1 - - - - 264 - {{37, 113}, {140, 17}} - - - YES - - 67108864 - 71303168 - Sicherheit: - - - - - - NO - 1 - - - - 264 - {{17, 222}, {160, 17}} - - YES - - 67108864 - 71303168 - Anwesenheits-Priorität: - - - - - - NO - 1 - - - - 264 - {{182, 220}, {43, 23}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 189}, {160, 17}} - - YES - - 67108864 - 71303168 - Abwesenheits-Priorität: - - - - - - NO - 1 - - - - 264 - {{182, 186}, {43, 24}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{179, 22}, {198, 26}} - - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Nachfragen - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Erlauben - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Erlauben und zur Liste hinzufügen - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Abnehnen - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 28}, {160, 17}} - - - YES - - 67108864 - 71303168 - Benachrichtigungen: - - - - - - NO - 1 - - - - 268 - {{-3, 1}, {180, 17}} - - - YES - - 67108864 - 71303168 - … zu Gruppe hinzufügen: - - - - - - NO - 1 - - - - 264 - {{182, -4}, {242, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{180, 72}, {244, 18}} - - - YES - - 67108864 - 0 - SSL/TSL verlangen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{180, 52}, {244, 18}} - - - YES - - 67108864 - 0 - Genaue Zertifikatsprüfung - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{103, 137}, {74, 17}} - - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{180, 136}, {244, 18}} - - - YES - - 67108864 - 0 - Eigene Emoticons anzeigen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {422, 363} - - NSView - NSResponder - - - - 256 - - - - 264 - {{111, 24}, {312, 18}} - - - YES - - 67108864 - 0 - Andere wissen lassen, wenn ich tippe - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-2, 25}, {110, 17}} - - - YES - - 67108864 - 71303168 - Schreiben: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {111, 17}} - - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - - - NO - 1 - - - - 264 - {{110, 48}, {314, 26}} - - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{-2, 0}, {110, 17}} - - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{111, -1}, {312, 18}} - - YES - - 67108864 - 0 - Andere wissen lassen, was mein iTunes spielt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {421, 72} - - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {421, 17}} - - - YES - - 67108864 - 272629760 - Geben Sie hier Ihre XMPP-Serveradresse ein: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {229, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{375, 277}, {60, 22}} - - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{335, 279}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {421, 17}} - - - YES - - 67108864 - 272629760 - oder wählen Sie einen öffentlichen Server aus dieser Liste aus: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server-Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Neues Konto anfordern - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {108, 32}} - - - YES - - 67108864 - 134217728 - Abbrechen - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 228} - - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - - YES - - -2080374784 - 134217728 - Server-Website öffnen - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - - {{0, 0}, {1920, 1058}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - 651 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 661 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index f909b0a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 323ec4c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1422 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 87}, {140, 17}} - - YES - - 67108864 - 71303168 - Anmelde-Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Empfang neuer E-Mail anzeigen - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - E-Mails: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 41}, {273, 18}} - - YES - - 67108864 - 0 - Direkte Verbindungen zulassen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 61}, {273, 18}} - - YES - - 67108864 - 0 - Mittels HTTP verbinden - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 2}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {273, 18}} - - YES - - 67108864 - 0 - Eigene Emoticons anzeigen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Benutzername: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{112, 22}, {322, 18}} - - YES - - 67108864 - 0 - Andere wissen lassen, wenn ich tippe - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 23}, {112, 17}} - - YES - - 67108864 - 71303168 - Schreiben: - - - - - - NO - 1 - - - - 264 - {{-3, 52}, {112, 17}} - - YES - - 67108864 - 71303168 - Verschlüsselung: - - - - - - NO - 1 - - - - 264 - {{111, 46}, {324, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{-3, -2}, {112, 17}} - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{112, -3}, {322, 18}} - - YES - - 67108864 - 0 - Andere wissen lassen, was iTunes gerade spielt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {432, 70} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 138c337..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index dbfbadb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Nutzer: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{17, 68}, {81, 17}} - - YES - - 67108864 - 71303168 - Anmeldung: - - - - - - NO - 1 - - - - 264 - {{101, 42}, {345, 23}} - - YES - - 67108864 - 0 - Anmeldung erzwingen (Weiterleitungen ignorieren) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{101, 67}, {250, 18}} - - YES - - 67108864 - 0 - Identität des Clients ausblenden - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {470, 85} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7ce82e5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 5d004eb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Benutzername: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index f53fc87..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index d7aaa8e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{212, -9}, {255, 34}} - - YES - - 67108864 - 0 - Eigenen Status veröffentlichen - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{212, 78}, {255, 18}} - - YES - - 67108864 - 0 - UDP benutzen - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{212, 104}, {87, 18}} - - YES - - 67108864 - 0 - SIP-Proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{305, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {187, 17}} - - YES - - 67108864 - 71303168 - Verbindung: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {212, 17}} - - YES - - 67108864 - 71303168 - Benutzername für Autorisierung: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {187, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {212, 17}} - - YES - - 67108864 - 71303168 - Domain für Autorisierung: - - - - - - NO - 1 - - - - 264 - {{214, 50}, {251, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 264 - {{214, 23}, {251, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {465, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Passwort: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Bildschirmname: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0fa7a49..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index dd1f4e3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{355, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{394, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{5, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-Mails: - - - - - - NO - 1 - - - - 264 - {{150, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {148, 17}} - - YES - - 67108864 - 71303168 - Server für Anmeldung: - - - - - - NO - 1 - - - - 264 - {{148, 16}, {271, 18}} - - YES - - 67108864 - 0 - Empfang neuer E-Mails anzeigen - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{5, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Standort: - - - - - - NO - 1 - - - - 264 - {{147, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 73c9e75..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 4645ca5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1228 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 167}, {140, 17}} - - YES - - 67108864 - 71303168 - Benutzername: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 165}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 123}} - - YES - - 71303168 - 4194304 - Zephyr benötigt eine konfigurierte Kerberos-Installation und nutzt Ihre UNIX UID oder Ihren Kerberosnamen. Der oben angegebene Name wird ausschließlich intern von Adium genutzt. Es wird nicht empfohlenen mehrere Zephyr-Verbindungen simultan zu starten. Bei der Verwendung des internen Host-Manager wird es zu Konflikten mit anderen laufenden 'zhm'-Instanzen auf diesem Rechner kommen. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {457, 187} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exportieren nach .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exportieren nach .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Sichtbarkeit: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Zeichenkodierung: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exportieren: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Host-Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {242, 18}} - - YES - - 67108864 - 0 - Internen Host-Manager verwenden - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 48fa855..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/Localizable.strings deleted file mode 100644 index 3311623..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/de.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/downloadprogress.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/downloadprogress.png deleted file mode 100644 index 1393729..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/downloadprogress.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index eb81fb8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,623 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 162}, {378, 51}} - - - YES - - 67108864 - 272891904 - Για να συνδεθείτε στο Facebook Chat, πρέπει να δώσετε πρόσβαση στο Adium. Μια ασφαλής οθόνη σύνδεσης θα εμφανιστεί όταν πατήσετε στην Επίτρεψη Πρόσβασης - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 20}, {347, 34}} - - - YES - - 67108864 - 272891904 - Πληροφορίες για την τρέχουσα κατάσταση θα πηγαίνουν εδώ - - - - - - NO - 1 - - - - 269 - {{107, 114}, {181, 32}} - - - YES - - 67108864 - 134217728 - Επίτρεψη Πρόσβασης - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 86}, {16, 16}} - - - 20746 - 16 - 100 - - - - 268 - {{361, 31}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 216} - - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 22c767e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index cda6a0b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Όνομα συνομιλίας: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Χειρισμός: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Διαχωρισμός επαφών με κόμμα. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Πρόσκληση επαφών: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Με μήνυμα: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - textField_handle - - - - 42 - - - - textField_server - - - - 41 - - - - textField_inviteUsers - - - - 57 - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_password - - - - 43 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 59 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7841188..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index b47f146..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-72, 90}, {120, 17}} - - YES - - 67108864 - 71303168 - Θέμα: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{183, 3}, {224, 17}} - - YES - - 67108864 - 4194304 - Διαχωρισμός επαφών με κόμμα. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{186, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-15, 46}, {202, 34}} - - YES - - 67108864 - 71303168 - Πρόσκληση επαφών: - - - - - - NO - 1 - - - - 256 - {{186, 88}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {463, 111} - - NSView - - NSResponder - - - - - - - textField_inviteUsers - - - - 41 - - - - textField_topic - - - - 40 - - - - view - - - - 31 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a643050..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index a473295..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Όνομα συνομιλίας: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Με μήνυμα: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Πρόσκληση επαφών: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Διαχωρισμός επαφών με κόμμα. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - textField_inviteUsers - - - - 50 - - - - textField_roomName - - - - 32 - - - - view - - - - 31 - - - - textField_inviteMessage - - - - 44 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 54 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c15d5a0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 40e3e84..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Όνομα συνομιλίας: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Με μήνυμα: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Διαχωρισμός επαφών με κόμμα. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Πρόσκληση επαφών: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - textField_roomName - - - - 35 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ffd73e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 99a6200..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Είδος: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Χρόνος: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Παραλήπτης: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - textField_instance - - - - 63 - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2f60bbc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 59a3ec9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1391 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-4, 7}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-4, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Ψευδώνυμο: - - - - - - NO - 1 - - - - 264 - {{141, 61}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - ψευδόνυμο - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{141, 5}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (προαιρετικό) - - YES - - - - NO - 1 - - - - 264 - {{141, 33}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-4, 35}, {140, 17}} - - YES - - 67108864 - 71303168 - Όνομα Διακομιστή: - - - - - - NO - 1 - - - {382, 85} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {282, 18}} - - YES - - 67108864 - 0 - Κρυπτογράφιση σύνδεσης με χρήση SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{94, 237}, {43, 17}} - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {542, 17}} - - YES - - 68157504 - 272761856 - Ένα ανα γραμή, το / είναι προεραιτικό. Το $me θα αντικαθίσταται με το τρέχον ψευδώνυμο σας. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - {529, 131} - - - - - - - - - - - - - 38 - - - - 529 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {529, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{515, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {531, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {567, 182}} - - - - {{-2, -4}, {569, 198}} - - {0, 0} - - 67108864 - 0 - Εκτέλεση εντολών κατα τη σύνδεση: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - Άλλες Προβολές - - - - - 3 - YES - YES - 1 - - NO - - - {584, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{203, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{65, 35}, {135, 17}} - - YES - - 68157504 - 272630784 - Πραγματικό Όνομα: - - - - - - NO - 1 - - - - 268 - {{203, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {186, 17}} - - YES - - 68157504 - 272630784 - Όνομα χρήστη (ταυτότητα): - - - - - - NO - 1 - - - {408, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2b7407b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 869db2e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1452 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{110, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 127}, {88, 17}} - - - YES - - 67108864 - 71303168 - Ψευδώνυμο: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{17, 102}, {88, 17}} - - - YES - - 67108864 - 71303168 - Προφίλ: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{110, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {396, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 44}, {322, 58}} - - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Καμμία κρυπτογράφηση - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Χρήση κρυπτογράφησης όταν υπάρχει - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Απαίτηση κρυπτογράφησης - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, 20}, {306, 18}} - - YES - - 67108864 - 0 - Καμμία κρυπτογράφηση - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, 21}, {140, 17}} - - - YES - - 67108864 - 71303168 - Πολλαπλές Συνδέσεις: - - - - - - NO - 1 - - - - 264 - {{123, 145}, {306, 18}} - - - YES - - 67108864 - 0 - Έλεγχος για νεα email - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 104}, {309, 34}} - - - YES - - 67108864 - 0 - zqfPgc6uz4POtyBwcm94eSDOs865zrEgzrzOtc+EzrHPhs6/z4HOrc+CIM6xz4HPh861zq/Pic69Cs66 -zrHOuSBEaXJlY3QgSU0 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 174}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server Σύνδεσης: - - - - - - NO - 1 - - - - 264 - {{125, 171}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{379, 171}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 171}, {44, 17}} - - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 264 - {{-20, 146}, {140, 17}} - - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 121}, {140, 17}} - - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 85}, {140, 17}} - - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - {447, 193} - - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index b78e2b5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 454344b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,548 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Όνομα χρήστη: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Εγγραφή λογαριασμού - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_setup - - - - 191 - - - - registerNewAccount: - - - - 201 - - - - textField_accountUID - - - - 197 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - textField_password - - - - 200 - - - - view_privacy - - - - 183 - - - - textField_accountUIDLabel - - - - 198 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 67a00fa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 2981430..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1169 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{140, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Απαίτηση κρυπτογράφησης - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Radio - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Καμμία κρυπτογράφηση - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Χρήση κρυπτογράφησης όταν υπάρχει - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-3, 41}, {140, 17}} - - - YES - - 67108864 - 71303168 - Κρυπτογράφηση: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 94}, {140, 17}} - - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - - 264 - {{139, 88}, {206, 26}} - - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{347, 122}, {46, 17}} - - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 264 - {{142, 120}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{398, 120}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 122}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server Σύνδεσης: - - - - - - NO - 1 - - - - 264 - {{141, 65}, {283, 18}} - - - YES - - 67108864 - 0 - Χρήση proxy για μεταφορές αρχείων - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 66}, {140, 17}} - - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {454, 142} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {349, 18}} - - YES - - 67108864 - 0 - Να γνωρίζουν οι επαφές μου πότε πληκτρολογώ - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 25}, {123, 17}} - - YES - - 67108864 - 71303168 - Πληκτρολόγηση: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {349, 18}} - - YES - - 67108864 - 0 - Εμφάνιση της κατάστασης μου στο Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Εμφάνιση Web: - - - - - - NO - 1 - - - - 264 - {{17, 54}, {129, 17}} - - YES - - 67108864 - 71303168 - Κρυπτογράφηση: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {351, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {496, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - 14 - - - 141 - - - - - - - - - - - - - - - 21 - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - 25 - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 324 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index e022d77..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 2546a6e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - Όνομα Χρήστη: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Δημιουργία… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 121}, {359, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 101}, {291, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 168}, {264, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 291}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 293}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 319}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 321}, {140, 17}} - - YES - - 67108864 - 71303168 - Server Σύνδεσης: - - - - - - NO - 1 - - - - 264 - {{162, 261}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 263}, {140, 17}} - - YES - - 67108864 - 71303168 - Proxies για Μεταφορές Αρχείων: - - - - - - NO - 1 - - - - 264 - {{329, 231}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 233}, {38, 17}} - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 264 - {{162, 231}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 233}, {140, 17}} - - YES - - 67108864 - 71303168 - Πόρος: - - - - - - NO - 1 - - - - 264 - {{17, 169}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 122}, {140, 17}} - - YES - - 67108864 - 71303168 - Ασφάλεια: - - - - - - NO - 1 - - - - 256 - {{43, 200}, {114, 17}} - - YES - - 67108864 - 71303168 - Προτεραιότητα του 'Διαθέσιμος': - - - - - - NO - 1 - - - - 256 - {{162, 197}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 200}, {91, 17}} - - YES - - 67108864 - 71303168 - Προτεραιότητα του 'Λείπω': - - - - - - NO - 1 - - - - 256 - {{329, 196}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 31}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 37}, {156, 17}} - - YES - - 67108864 - 71303168 - Συνδρομές Παρουσίας: - - - - - - NO - 1 - - - - 268 - {{4, 10}, {237, 17}} - - YES - - 67108864 - 71303168 - ...προσθήκη στη λίστα της ομάδας: - - - - - - NO - 1 - - - - 266 - {{246, 5}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 81}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 61}, {326, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 146}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 145}, {270, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {530, 341} - NSView - NSResponder - - - - 256 - - - - 264 - {{115, 24}, {332, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 25}, {115, 17}} - - YES - - 67108864 - 71303168 - Πληκτρολόγηση: - - - - - - NO - 1 - - - - 264 - {{1, 54}, {111, 17}} - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - - 264 - {{114, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{37, 0}, {75, 17}} - - YES - - 67108864 - 71303168 - Μουσική: - - - - - - NO - 1 - - - - 264 - {{115, -1}, {356, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {480, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Είτε γράψτε την διέυθυνση του XMPP server σας εδώ: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{292, 280}, {41, 17}} - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - είτε επιλέξτε έναν δημόσιο server απο την λίστα: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{199, 12}, {242, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{196, 58}, {239, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0ba71ca..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 9c1e43c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1179 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 153}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 155}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server Σύνδεσης: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 153}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 105}, {273, 18}} - - - YES - - 67108864 - 0 - Έλεγχος για νέα mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 106}, {140, 17}} - - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{341, 156}, {43, 17}} - - - YES - - 67108864 - 71303168 - Θύρα: - - - - - - NO - 1 - - - - 264 - {{140, 79}, {273, 18}} - - - YES - - 67108864 - 0 - Επίτρεψη απευθείας συνδέσεων - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 129}, {273, 18}} - - - YES - - 67108864 - 0 - Σύνδεση μέσω HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 57}, {74, 17}} - - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 56}, {273, 18}} - - YES - - 67108864 - 0 - Εμφάνιση προσαρμοσμένων emoticon - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 175} - - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {134, 17}} - - YES - - 67108864 - 4194304 - Όνομα Εμφάνισης: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{116, 35}, {332, 18}} - - YES - - 67108864 - 0 - Να γνωρίζουν οι επαφές μου οτι πληκτρολογώ - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-8, 36}, {121, 17}} - - YES - - 67108864 - 71303168 - Πληκτρολόγηση: - - - - - - NO - 1 - - - - 264 - {{9, 65}, {104, 17}} - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - - 264 - {{115, 59}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Αντικείμενο1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - Άλλες Προβολές - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{29, 11}, {84, 17}} - - YES - - 67108864 - 71303168 - Μουσική: - - - - - - NO - 1 - - - - 264 - {{116, 10}, {350, 18}} - - YES - - 67108864 - 0 - Να γνωρίζουν οι επαφές μου οτι παίζει το iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {474, 83} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 6ebde44..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 9e47891..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Χρήστης: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Σύνδεση: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Άμεση σύνδεση - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Απόκρυψη προφίλ server - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 251 - - - - changedPreference: - - - - 250 - - - - checkBox_forceLogin - - - - 249 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 241 - - - - textField_password - - - - 236 - - - - textField_connectHost - - - - 234 - - - - view_options - - - - 243 - - - - changedPreference: - - - - 240 - - - - checkBox_fakeClientId - - - - 248 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectPort - - - - 235 - - - - textField_accountUID - - - - 232 - - - - changedPreference: - - - - 239 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2804909..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 70cc87b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Όνομα χρήστη: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - changedPreference: - - - - 199 - - - - textField_accountUID - - - - 191 - - - - textField_connectPort - - - - 194 - - - - textField_connectHost - - - - 193 - - - - view_options - - - - 200 - - - - textField_password - - - - 195 - - - - view_setup - - - - 190 - - - - textField_accountUIDLabel - - - - 192 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index c1abd91..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index bc85a4b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, 33}, {188, 18}} - - YES - - 67108864 - 0 - Εμφανής κατάσταση - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 112}, {315, 18}} - - YES - - 67108864 - 0 - Χρήση UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 138}, {130, 18}} - - YES - - 67108864 - 0 - Χρήση SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{283, 136}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 139}, {123, 17}} - - YES - - 67108864 - 71303168 - Σύνδεση: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 84}, {148, 17}} - - YES - - 67108864 - 71303168 - Όνομα χρήστη: - - - - - - NO - 1 - - - - 264 - {{22, 34}, {123, 17}} - - YES - - 67108864 - 71303168 - Κατάσταση: - - - - - - NO - 1 - - - - 264 - {{-3, 59}, {148, 17}} - - YES - - 67108864 - 71303168 - Όνομα τομέα: - - - - - - NO - 1 - - - - 256 - {{150, 84}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 57}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {471, 158} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 20}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικός: - - - - - - NO - 1 - - - - 264 - {{-3, 84}, {140, 17}} - - YES - - 67108864 - 71303168 - Όνομα: - - - - - - NO - 1 - - - - 264 - {{142, 82}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 18}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 52}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 50}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 53}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 50}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {430, 104} - - NSView - - NSResponder - - - - - - - checkBox_useUDP - - - - 233 - - - - textField_connectPort - - - - 246 - - - - label_password - - - - 229 - - - - view_setup - - - - 224 - - - - checkBox_publishStatus - - - - 232 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_password - - - - 228 - - - - textField_accountUID - - - - 225 - - - - changedPreference: - - - - 245 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 227 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index efe2733..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 7b14ee3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,604 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Σύνδεση Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {150, 18}} - - YES - - 67108864 - 0 - Έλεγχος νέων email - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Λίστα Server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectPort - - - - 98 - - - - changedPreference: - - - - 101 - - - - textField_connectHost - - - - 97 - - - - popUp_chatServer - - - - 109 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 102 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 731c394..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 418246d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1037 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Όνομα χρήστη: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 151}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {368, 112}} - - YES - - 71303168 - 4194304 - Το Zephyr χρειάζεται ρυθμίσεις για το Kerberos. Το Zephyr χρησιμοποιεί το UNIX UID ή το όνομα σας στο Kerberos. Το όνομα είναι μόνο για χρήση στο Adium. Συνιστάται μόνο μια σύνδεση αλλιώς υπάρχουν πιθανότητες να δημιουργηθούν προβλήματα. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 114}, {244, 18}} - - YES - - 67108864 - 0 - Εξαγωγή σε .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 136}, {244, 18}} - - YES - - 67108864 - 0 - Εξαγωγή σε .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 196}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 198}, {140, 17}} - - YES - - 67108864 - 71303168 - Έκθεση: - - - - - - NO - 1 - - - - 264 - {{142, 166}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 168}, {140, 17}} - - YES - - 67108864 - 71303168 - Κωδικοποίηση: - - - - - - NO - 1 - - - - 264 - {{-3, 137}, {140, 17}} - - YES - - 67108864 - 71303168 - Εξαγωγή: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 20}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 292 - {{111, 33}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 33}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 87}, {140, 17}} - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 86}, {234, 18}} - - YES - - 67108864 - 0 - Χρήση εσωτερικού host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {412, 218} - NSView - NSResponder - - - - - - - changedPreference: - - - - 224 - - - - textField_accountUIDLabel - - - - 223 - - - - textField_exposure - - - - 225 - - - - tableView_servers - - - - 243 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - checkBox_launchZhm - - - - 249 - - - - changedPreference: - - - - 231 - - - - plus_servers - - - - 251 - - - - changedPreference: - - - - 230 - - - - view_options - - - - 220 - - - - addRowToServerList: - - - - 244 - - - - minus_servers - - - - 252 - - - - changedPreference: - - - - 248 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - view_setup - - - - 219 - - - - textField_accountUID - - - - 221 - - - - textField_encoding - - - - 226 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 232 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index cf7d676..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings deleted file mode 100644 index 1700780..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/el_GR.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 34c64d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f0de18d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 3b91333..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Topic: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a8a38e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 54edf35..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7fc09e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 5455620..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4d655c8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 36aee70..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Class: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Recipient: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2888c8f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index f0af8e6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1664 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{105, -7}, {104, 32}} - - YES - - 67108864 - 134217728 - About IRC - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 264 - {{-70, 85}, {140, 17}} - - - YES - - 67108864 - 71303168 - Password: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 141}, {140, 17}} - - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 139}, {272, 22}} - - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 83}, {272, 22}} - - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 111}, {272, 22}} - - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 113}, {72, 17}} - - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - - 264 - {{73, 39}, {276, 18}} - - - YES - - 67108864 - 0 - Allow insecure plain-text authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{73, 59}, {174, 18}} - - - YES - - 67108864 - 0 - Use SASL authentication - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {347, 161} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - - {{-2, -4}, {445, 198}} - - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - button_SignUp - - - - 361 - - - - signUpAccount: - - - - 362 - - - - changedPreference: - - - - 368 - - - - changedPreference: - - - - 371 - - - - checkbox_useSASL - - - - 372 - - - - checkbox_insecurePlain - - - - 373 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - 342 - - - - - - - - 343 - - - - - 366 - - - - - - - - 367 - - - - - 369 - - - - - - - - 370 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 373 - - - - - AIAccountViewController - NSObject - - id - id - - - - changedPreference: - id - - - signUpAccount: - id - - - - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - button_SignUp - NSButton - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_insecurePlain - NSButton - - - checkbox_useSASL - NSButton - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 92f46ae..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 6f8c47d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profile: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers and Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9910635..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 27dae78..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,549 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{102, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index a390911..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 5ef5538..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index bf7910a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 29845c2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{152, 24}, {153, 32}} - - YES - - 67108864 - 134217728 - Find public server - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 264 - {{53, 113}, {68, 17}} - - - YES - - 67108864 - 71303168 - Password: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 138}, {77, 17}} - - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 136}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 108}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{124, 70}, {245, 32}} - - - YES - - 67108864 - 0 - Create a new account on the server - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - - - 200 - 25 - - NO - - - {457, 175} - - NSView - NSResponder - - - - 256 - - - - 268 - {{162, -3}, {212, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 129 - - - 400 - 75 - - - Require TLS - - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - 2 - - - YES - - OtherViews - - - - Allow TLS - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - - Require forward-secret TLS - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - - -1 - 1 - YES - YES - 2 - - NO - - - - 264 - {{162, 47}, {212, 18}} - - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 27}, {143, 18}} - - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{18, 3}, {140, 17}} - - - YES - - 67108864 - 71303168 - TLS: - - - - - - NO - 1 - - - - 264 - {{18, 48}, {140, 17}} - - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 264 - {{351, 135}, {73, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{308, 137}, {38, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{18, 73}, {140, 17}} - - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{164, 71}, {260, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 12 - {{0, 163}, {424, 5}} - - - {0, 0} - - 67108864 - 0 - Box - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - 3 - 2 - 0 - NO - - - - 264 - {{164, 103}, {260, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{18, 105}, {140, 17}} - - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{164, 135}, {138, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{18, 137}, {140, 17}} - - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 256 - {{44, 207}, {114, 17}} - - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{164, 205}, {61, 23}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{67, 178}, {91, 17}} - - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{164, 176}, {61, 24}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 264 - {{163, 234}, {187, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{18, 236}, {140, 17}} - - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{162, 286}, {211, 18}} - - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{18, 287}, {140, 17}} - - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 268 - {{84, 264}, {74, 17}} - - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{162, 263}, {188, 18}} - - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 304} - - NSView - NSResponder - - - - 256 - - - - 268 - {{170, 32}, {198, 26}} - - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{10, 38}, {156, 17}} - - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{79, 11}, {142, 17}} - - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{226, 6}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{169, 87}, {309, 18}} - - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{114, 88}, {52, 17}} - - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{91, 117}, {75, 17}} - - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{168, 111}, {307, 26}} - - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{121, 63}, {45, 17}} - - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{169, 62}, {312, 18}} - - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {476, 135} - - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {242, 17}} - - - YES - - 67108864 - 272629760 - Select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 212} - - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 212}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 212}} - - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 214}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{382, 13}, {59, 32}} - - YES - - 67108864 - 134217728 - OK - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{291, 13}, {91, 32}} - - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 212} - - - - - - - - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {186, 212}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{176, 1}, {11, 212}} - - - NO - 256 - - _doScroller: - 0.8833333333333333 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 214}} - - - 133650 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 787 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - - {{0, 0}, {1920, 1058}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - NO - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_register - - - - 650 - - - - findServerCancel: - - - - 654 - - - - findServerAccept: - - - - 655 - - - - findServer: - - - - 656 - - - - button_signUp - - - - 657 - - - - changedPreference: - - - - qQc-Y2-exp - - - - subscriptionModeDidChange: - - - - oCc-ca-Ozu - - - - changedPreference: - - - - Ug7-1F-v3c - - - - changedPreference: - - - - enb-4R-ikA - - - - changedPreference: - - - - pug-L5-EtB - - - - changedPreference: - - - - sVR-gZ-isU - - - - changedPreference: - - - - hqd-Wb-UEE - - - - changedPreference: - - - - 7g4-ar-I3e - - - - checkBox_checkMail - - - - ZfD-K7-P8v - - - - checkBox_displayCustomEmoticons - - - - jxQ-0j-SkR - - - - textField_resource - - - - l4c-LV-4CH - - - - textField_priorityAvailable - - - - ELv-NT-cOC - - - - textField_priorityAway - - - - FtI-Do-crh - - - - textField_connectHost - - - - xS2-hS-dhy - - - - textField_connectPort - - - - ATS-CL-ugW - - - - textField_connectServer - - - - 0bH-WF-wYJ - - - - textField_BOSHserver - - - - iUb-lx-3bX - - - - textField_ftProxies - - - - np9-il-Q1r - - - - checkBox_allowPlaintext - - - - Jld-n3-0fl - - - - checkBox_forceOldSSL - - - - Ecg-ya-AAI - - - - popup_TLS - - - - EDB-pE-Vja - - - - popup_subscriptionBehavior - - - - Td7-1c-VcF - - - - comboBox_subscriptionGroup - - - - rUu-S8-9Yj - - - - tableview_servers - - - - 404 - - - - textView_serverDescription - - - - 473 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - nextKeyView - - - - 396 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - nextKeyView - - - - 398 - - - - dataSource - - - - Rkz-aA-y7C - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 332 - - - - - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 651 - - - - - - - - 652 - - - - - Fos-1Z-Bm2 - - - - - - - - yIt-Wz-tPi - - - - - - - - o7c-1R-Gkj - - - - - - - - og5-Am-lgB - - - - - - - - z0E-kZ-mgq - - - - - ia6-Rk-eBs - - - - - 0Ug-FD-oDV - - - - - 0o4-wT-8K7 - - - - - Q6X-ts-lMp - - - - - - - - tIw-zT-opp - - - - - - - - 3Q2-yv-9L6 - - - - - - - - TJo-V7-lpa - - - - - - - - vpb-0G-flk - - - - - - - - D1p-ZT-CGg - - - - - - - - - - - WQ6-Ny-rP5 - - - - - YWL-EL-Xpu - - - - - aB1-Gr-aGv - - - - - MUs-A3-wSy - - - - - VLk-cO-Gju - - - - - ULb-QA-KZf - - - - - oOn-dU-DqD - - - - - Cum-Vl-Ekp - - - - - - - - icr-3H-tXa - - - - - - - - W8R-9l-wiL - - - - - Nen-HG-22Z - - - - - 4gt-vg-IwV - - - - - - - - aQh-TA-fFX - - - - - - - - QX6-cW-cPg - - - - - - - - seE-fE-j1K - - - - - - - - Ejz-O1-PJB - - - - - WQS-vf-7JY - - - - - fz8-qF-hrR - - - - - wUr-7j-9yC - - - - - gfj-Eg-1av - - - - - - - - DS1-Bz-XYs - - - - - - - - 7Ob-Rv-veh - - - - - - - - h8I-00-1k9 - - - - - - - - l3G-JA-9vj - - - - - - - - Rzt-ck-tqk - - - - - - - - niz-OP-qJh - - - - - sVW-8d-yo4 - - - - - NJe-L2-fWj - - - - - dcA-KP-7ep - - - - - iYQ-iF-rRq - - - - - OoQ-bh-ZAV - - - - - Fbi-8n-Wja - - - - - 4BH-p6-saZ - - - - - - - - o7I-GJ-V2P - - - - - - - - 76s-hB-XPZ - - - - - Ndh-SD-xCP - - - - - DnN-sp-3Lr - - - - - - - - qrW-zx-EaK - - - - - - - - w3I-ON-Vom - - - - - - - - h1w-Re-d0y - - - - - Uoc-XO-3hu - - - - - CTR-No-kxs - - - - - L5Z-vv-zVw - - - - - - - - rEm-g9-RpQ - - - - - hP6-mH-yGq - - - - - - - - yzx-AT-3OJ - - - - - - - - K39-Nv-sKY - - - - - - - - - - FoE-fp-IRg - - - - - 3WY-XS-QOH - - - - - cYo-1J-J4T - - - - - 386 - - - - - - - - 388 - - - - - - - - 636 - - - - - 472 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - - - - AIAccountViewController - NSObject - - id - id - - - - changedPreference: - id - - - signUpAccount: - id - - - - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - button_signUp - NSButton - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - findServer: - id - - - findServerAccept: - id - - - findServerCancel: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_register - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_TLS - NSPopUpButton - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - YES - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index b740bc4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index b613a6f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Display Name: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index c7b89e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index e8ab2c5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,738 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{153, 21}, {144, 32}} - - YES - - 67108864 - 134217728 - About Sametime - - .LucidaGrandeUI - 13 - 1044 - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - 264 - {{145, 129}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 131}, {140, 17}} - - - YES - - 67108864 - 71303168 - User: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 71}, {140, 17}} - - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{145, 69}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 99}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 101}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 101}, {46, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 99}, {50, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 151} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Force login (ignore server redirects) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Hide client identity - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - 264 - - - - - - - - 265 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 265 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index a5eb377..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index b9605b2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 75d2c66..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 7894137..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Publish Status to Everyone - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Use UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Use SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connection: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorization User: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorization Domain: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Screen Name: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 668b8c1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 739313c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Room List Server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0e5db15..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 0fda520..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requires a proper Kerberos configuration. Zephyr uses your UNIX UID or your Kerberos name; the user name above is solely for internal Adium use. Only one simultaneous Zephyr connection is recommended. Using the internal host manager will conflict with any other 'zhm' instances running on this machine. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Export: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Use internal host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 10768fa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/Localizable.strings deleted file mode 100644 index c4ad1d4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 34c64d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f0de18d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 3b91333..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Topic: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a8a38e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 54edf35..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7fc09e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 5455620..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4d655c8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 36aee70..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Class: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Recipient: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2888c8f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index e8a9986..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nickname: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nickname - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 81e9a76..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index eeead85..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profile: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers and Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 51280ba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 52eb836..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,726 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index bd03222..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index b08fb67..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0d81e22..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 8e6781c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9eadeb3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index b613a6f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Display Name: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index c7b89e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 07d77e7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - User: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Force login (ignore server redirects) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Hide client identity - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 595d19d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index b9605b2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 75d2c66..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 845d270..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Publish Status to Everyone - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Use UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Use SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connection: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorisation User: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorisation Domain: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Screen Name: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4d61b54..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 739313c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Room List Server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0e5db15..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 9bb7a61..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requires a proper Kerberos configuration. Zephyr uses your UNIX UID or your Kerberos name; the user name above is solely for internal Adium use. Only one simultaneous Zephyr connection is recommended. Using the internal host manager will conflict with any other 'zhm' instances running on this machine. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Export: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Use internal host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9fec259..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings deleted file mode 100644 index 3b77a46..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_AU.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 34c64d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f0de18d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index e05ca80..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Topic: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - textField_inviteUsers - - - - 41 - - - - textField_topic - - - - 40 - - - - view - - - - 31 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 42 - - - - nextKeyView - - - - 39 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a8a38e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index c4a0028..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - textField_inviteMessage - - - - 44 - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 54 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7fc09e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index a5c29ac..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteMessage - - - - 42 - - - - textField_inviteUsers - - - - 41 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4d655c8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index ef92b41..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Class: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Recipient: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - textField_class - - - - 64 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - view - - - - 31 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 65 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2888c8f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 95733ec..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {409, 131} - - - - - - - - - - - - - 38 - - - - 409 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {409, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index e0e26ff..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 98eb917..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profile: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers and Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 51280ba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 82a8d53..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,548 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - textField_accountUIDLabel - - - - 198 - - - - registerNewAccount: - - - - 201 - - - - view_setup - - - - 191 - - - - view_privacy - - - - 183 - - - - popUp_encryption - - - - 189 - - - - textField_password - - - - 200 - - - - changedPreference: - - - - 188 - - - - textField_accountUID - - - - 197 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 20f1751..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index c588755..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Require encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Radio - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - No encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Use encryption when available - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index f22addf..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index d5dae73..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7fac0e7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 1b4b1a6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1422 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 87}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 41}, {273, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 61}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 2}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Display Name: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index b14c1cb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 175c611..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - User: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Force login (ignore server redirects) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Hide client identity - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - view_options - - - - 243 - - - - textField_connectHost - - - - 234 - - - - checkBox_fakeClientId - - - - 248 - - - - changedPreference: - - - - 251 - - - - changedPreference: - - - - 238 - - - - textField_accountUIDLabel - - - - 233 - - - - checkBox_forceLogin - - - - 249 - - - - textField_password - - - - 236 - - - - changedPreference: - - - - 250 - - - - textField_accountUID - - - - 232 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 241 - - - - changedPreference: - - - - 240 - - - - textField_connectPort - - - - 235 - - - - changedPreference: - - - - 239 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 595d19d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 10e242a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_accountUIDLabel - - - - 192 - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_password - - - - 195 - - - - view_options - - - - 200 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 75d2c66..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index d068b95..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Publish Status to Everyone - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Use UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Use SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connection: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorization User: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Authorization Domain: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Screen Name: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - textField_password - - - - 228 - - - - changedPreference: - - - - 245 - - - - textField_connectHost - - - - 227 - - - - label_password - - - - 229 - - - - checkBox_useUDP - - - - 233 - - - - textField_connectPort - - - - 246 - - - - textField_accountUID - - - - 225 - - - - changedPreference: - - - - 254 - - - - view_options - - - - 207 - - - - textField_accountUIDLabel - - - - 226 - - - - checkBox_publishStatus - - - - 232 - - - - view_setup - - - - 224 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 668b8c1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 5e14ade..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,604 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Room List Server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - textField_connectPort - - - - 98 - - - - popUp_chatServer - - - - 109 - - - - changedPreference: - - - - 102 - - - - textField_connectHost - - - - 97 - - - - view_options - - - - 96 - - - - changedPreference: - - - - 100 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 101 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index a20d006..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index f30e510..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1037 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - User Name: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requires a proper Kerberos configuration. Zephyr uses your UNIX UID or your Kerberos name; the user name above is solely for internal Adium use. Only one simultaneous Zephyr connection is recommended. Using the internal host manager will conflict with any other 'zhm' instances running on this machine. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Export to .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Export to .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Export: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Use internal host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - checkBox_exportAnyone - - - - 227 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 229 - - - - checkBox_launchZhm - - - - 249 - - - - textField_exposure - - - - 225 - - - - tableView_servers - - - - 243 - - - - textField_accountUIDLabel - - - - 223 - - - - checkBox_exportSubs - - - - 228 - - - - textField_accountUID - - - - 221 - - - - textField_encoding - - - - 226 - - - - plus_servers - - - - 251 - - - - changedPreference: - - - - 248 - - - - view_options - - - - 220 - - - - changedPreference: - - - - 224 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - minus_servers - - - - 252 - - - - addRowToServerList: - - - - 244 - - - - view_setup - - - - 219 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 232 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 856895b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings deleted file mode 100644 index 414563d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/en_GB.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 32dda58..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - Para conectar al chat de Facebook, debe de darle permiso a Adium. Se mostrará una ventana segura de acceso a Facebook cuando hagas click en Permitir Acceso. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - La información sobre el estado actual irá aquí. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Permitir acceso - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7a9c8c0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 252f79a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,748 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{163, 256}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 261}, {161, 17}} - - YES - - 67108864 - 71303168 - Sala de chat: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{163, 226}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{38, 231}, {120, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 256 - {{163, 196}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{38, 201}, {120, 17}} - - YES - - 67108864 - 71303168 - Manejador: - - - - - - NO - 1 - - - - 256 - {{163, 166}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{38, 171}, {120, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - - - - - NO - 1 - - - - 256 - {{160, 85}, {269, 14}} - - YES - - 67108864 - 4194304 - Separar los nombres de los contactos con comas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{38, 138}, {120, 17}} - - YES - - 67108864 - 71303168 - Invitar contactos: - - - - - - NO - 1 - - - - 256 - {{163, 107}, {267, 51}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{38, 60}, {120, 17}} - - YES - - 67108864 - 71303168 - Con mensaje: - - - - - - NO - 1 - - - - 256 - {{163, 20}, {267, 57}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {450, 278} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 72e4f19..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 333f080..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Tema: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {269, 14}} - - YES - - 67108864 - 4194304 - Separar los nombres de los contactos con comas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Invitar contactos: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 236c604..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index e4572c6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 172}, {161, 17}} - - YES - - 67108864 - 71303168 - Sala de chat: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{161, 167}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{161, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{38, 60}, {120, 17}} - - YES - - 67108864 - 71303168 - Con mensaje: - - - - - - NO - 1 - - - - 256 - {{38, 139}, {120, 17}} - - YES - - 67108864 - 71303168 - Invitar contactos: - - - - - - NO - 1 - - - - 256 - {{161, 99}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{158, 84}, {269, 14}} - - YES - - 67108864 - 4194304 - Separar los nombres de los contactos con comas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {447, 189} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index bcc1e7d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 162f0da..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Sala de chat: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Con mensaje: - - - - - - NO - 1 - - - - 256 - {{120, 64}, {272, 14}} - - YES - - 67108864 - 4194304 - Separar los nombres de los contactos con comas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Invitar contactos: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c9b631d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index a079bc4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Clase: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instancia: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Destinatario: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 833ec53..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index d4a7ada..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1393 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-60, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-60, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{85, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{85, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (opcional) - - YES - - - - NO - 1 - - - - 264 - {{85, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{8, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - {325, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {216, 18}} - - YES - - 67108864 - 0 - Encriptar conexión usando SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{88, 236}, {50, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Uno por linea, / es opcional. $me será reemplazado con su nickname actual. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Ejecutar acciones al conectar: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificación: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{43, 35}, {87, 17}} - - YES - - 68157504 - 272630784 - Nombre real: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Nombre de usuario (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 21f58d9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 1662ca1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1439 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - - YES - - 67108864 - 71303168 - Perfil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{154, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Sin encriptación - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Usar encriptación cuando esté disponible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Requiere encriptación - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{154, -2}, {306, 18}} - - YES - - 67108864 - 0 - Permitir múltiples accesos - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{11, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiples accesos: - - - - - - NO - 1 - - - - 264 - {{154, 112}, {306, 18}} - - YES - - 67108864 - 0 - Buscar correos nuevos - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{154, 87}, {343, 18}} - - YES - - 67108864 - 0 - Siempre usar proxy para transferencias y Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{11, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de Inicio: - - - - - - NO - 1 - - - - 264 - {{156, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{420, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{361, 140}, {56, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{11, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{17, 88}, {134, 17}} - - YES - - 67108864 - 71303168 - Servidor Proxy AOL: - - - - - - NO - 1 - - - - 264 - {{11, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Seguridad: - - - - - - NO - 1 - - - {515, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index c3e51d6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 509adcb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Encriptación: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nombre de usuario: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{191, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrar nueva cuenta - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 867d33f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index c7573a3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1476 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{150, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Sin encriptación - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Usar encriptación cuando esté disponible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Requiere encriptación - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{7, 40}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encriptación: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{7, 93}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codificación: - - - - - - NO - 1 - - - - 264 - {{149, 87}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{357, 121}, {53, 17}} - - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{152, 119}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{411, 119}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{7, 121}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor de Inicio: - - - - - - NO - 1 - - - - 264 - {{151, 64}, {277, 18}} - - - YES - - 67108864 - 0 - Siempre usar proxy para transferencias - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{7, 65}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor de proxy AOL: - - - - - - NO - 1 - - - {482, 141} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {260, 18}} - - YES - - 67108864 - 0 - Mostrar a los demás cuando escribo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Escritura: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {290, 18}} - - YES - - 67108864 - 0 - Mostrar estado a cualquiera desde la Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{50, 54}, {96, 17}} - - YES - - 67108864 - 71303168 - Encriptación: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 562d54e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 5d030c1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3748 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{66, 65}, {92, 17}} - - - YES - - 67108864 - 71303168 - Contraseña: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {141, 17}} - - - YES - - 67108864 - 71303168 - Nombre de usuario: - - - - - - NO - 1 - - - - 264 - {{163, 88}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - usuario@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{163, 60}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{187, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrar nueva cuenta - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{57, 22}, {16, 16}} - - - 28938 - 100 - - - - -2147483392 - {{78, 23}, {76, 14}} - - - YES - - 67108864 - 272629760 - Registrando… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {494, 127} - - NSView - NSResponder - - - - 256 - - - - 264 - {{197, 113}, {212, 18}} - - YES - - 67108864 - 0 - Permitir autentificación en texto plano - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{197, 93}, {143, 18}} - - YES - - 67108864 - 0 - Forzar estilo antiguo de SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{197, 160}, {211, 18}} - - YES - - 67108864 - 0 - Mostrar notificaciones de correo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{199, 283}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{54, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor BOSH: - - - - - - NO - 1 - - - - 264 - {{199, 311}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{54, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Conectar al servidor: - - - - - - NO - 1 - - - - 264 - {{199, 253}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{26, 255}, {168, 17}} - - YES - - 67108864 - 71303168 - Proxies de transferencia: - - - - - - NO - 1 - - - - 264 - {{380, 222}, {108, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{323, 225}, {52, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{199, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{54, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Recurso: - - - - - - NO - 1 - - - - 264 - {{54, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Correo: - - - - - - NO - 1 - - - - 264 - {{54, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Seguridad: - - - - - - NO - 1 - - - - 256 - {{26, 192}, {168, 17}} - - YES - - 67108864 - 71303168 - Prioridad de Disponible: - - - - - - NO - 1 - - - - 256 - {{199, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{265, 192}, {145, 17}} - - YES - - 67108864 - 71303168 - Prioridad de Ausente: - - - - - - NO - 1 - - - - 256 - {{415, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{196, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Preguntar que hacer - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Aceptar - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Aceptar y añadir a la lista - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Negar - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{-3, 29}, {197, 17}} - - YES - - 67108864 - 71303168 - Subscripciones de presencia: - - - - - - NO - 1 - - - - 268 - {{26, 2}, {221, 17}} - - YES - - 67108864 - 71303168 - ...añadir a la lista en el grupo: - - - - - - NO - 1 - - - - 266 - {{252, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{197, 73}, {143, 18}} - - YES - - 67108864 - 0 - Requiere SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{197, 53}, {244, 18}} - - YES - - 67108864 - 0 - Comprobaciones estrictas de certificados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{93, 138}, {101, 17}} - - YES - - 68157504 - 71304192 - Emoticonos: - - - - - - NO - 1 - - - - 268 - {{197, 137}, {188, 18}} - - YES - - 67108864 - 0 - Mostrar emoticonos personaliszados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {508, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {373, 18}} - - YES - - 67108864 - 0 - Haz saber a otros cuando estás escribiendo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{0, 25}, {87, 17}} - - YES - - 67108864 - 71303168 - Escritura: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {90, 17}} - - YES - - 67108864 - 71303168 - Encriptación: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{12, 0}, {75, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Haz saber a otros qué estás escuchando en iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {481, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Ingrese su dirección de servidor XMPP aquí: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 265 - {{353, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {49, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - o seleccione un servidor publico de la lista: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Pedir nueva cuenta - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancelar - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visitar página principal del servidor - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1440, 878}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8ea3aee..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index a33527c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1532 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - - YES - - 67108864 - 0 - Permitir conexiones directas - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{401, 85}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - - YES - - 67108864 - 71303168 - Servidor de Inicio: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {54, 17}} - - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - - YES - - 67108864 - 0 - Conectar vía HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - - YES - - 68157504 - 71304192 - Emoticonos: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Mostrar emoticonos personalizados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {472, 107} - - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nombre para mostrar: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {373, 18}} - - - YES - - 67108864 - 0 - Haz saber a otros cuando estás escribiendo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{5, 25}, {81, 17}} - - - YES - - 67108864 - 71303168 - Escritura: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {89, 17}} - - - YES - - 67108864 - 71303168 - Encriptación: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {69, 17}} - - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Haz saber a otros qué estás escuchando en iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {480, 72} - - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index e4ac8d0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index f82718e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,689 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuario: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{356, 39}, {49, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{410, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {480, 89} - - NSView - - NSResponder - - - - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Inicio de Sesión: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {386, 18}} - - YES - - 67108864 - 0 - Forzar inicio de sesión (ignorar redirecciones de servidor) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Ocultar la identidad del cliente - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {544, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 279940c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 83b41a7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 66}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 68}, {140, 17}} - - YES - - 67108864 - 71303168 - Nombre de usuario: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 8}, {140, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - - - - - NO - 1 - - - - 264 - {{142, 6}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 36}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 38}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{353, 38}, {49, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - - - - - NO - 1 - - - - 264 - {{407, 36}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {477, 88} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5a0adfa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index df45d13..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{166, -2}, {168, 18}} - - YES - - 67108864 - 0 - Estado público a todos - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{166, 77}, {81, 18}} - - YES - - 67108864 - 0 - Usar UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{166, 103}, {117, 18}} - - YES - - 67108864 - 0 - Usar proxy SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{289, 101}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{42, 104}, {123, 17}} - - YES - - 67108864 - 71303168 - Conexión: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{4, 49}, {160, 17}} - - YES - - 67108864 - 71303168 - Usuario de Autorización: - - - - - - NO - 1 - - - - 264 - {{42, -1}, {123, 17}} - - YES - - 67108864 - 71303168 - Estado: - - - - - - NO - 1 - - - - 264 - {{-1, 24}, {166, 17}} - - YES - - 67108864 - 71303168 - Dominio de Autorización: - - - - - - NO - 1 - - - - 256 - {{168, 49}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{168, 22}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {449, 123} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Contraseña: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Nombre en Pantalla: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0fc8032..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index ecb31a8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,712 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{389, 78}, {49, 17}} - - YES - - 67108864 - 71303168 - Puerto: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{443, 76}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{43, 19}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{184, 76}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{1, 78}, {182, 17}} - - YES - - 67108864 - 71303168 - Servidor de Inicio: - - - - - - NO - 1 - - - - 264 - {{182, 18}, {180, 18}} - - YES - - 67108864 - 0 - Buscar correos nuevos - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{18, 49}, {165, 17}} - - YES - - 67108864 - 71303168 - Servidor de lista de salas: - - - - - - NO - 1 - - - - 264 - {{181, 44}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {514, 98} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index bd62c8a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 11c4cf5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1035 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Nombre de usuario: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requiere una configuración correcta de Kerberos. Zephyr usa su UID de UNIX o su nombre de Kerberos; el nombre de usuario de arriba es sólo para uso interno de Adium. Se recomienda una única conexión simultánea de Zephyr. El uso del gestor de host interno creará conflicto con otras instancias 'zhm' que se estén ejecutando en esta máquina. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exportar a .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exportar a .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposición: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificación: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exportar: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Servidor - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidores: - - - - - - NO - 1 - - - - 36 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 36 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Gestor de host: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Usar gestor de host interno - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index a34e4d7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/Localizable.strings deleted file mode 100644 index 198d35c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/es.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook-small.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook-small.png deleted file mode 100644 index 0ccabb2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook-small.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook.png deleted file mode 100644 index 9443a88..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/facebook.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 34c64d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f0de18d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 44331dc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Aihe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Erottele ystävien nimet pilkuilla. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Kutsu ystäviä: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4c5eb1a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 704068a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,468 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 159}, {180, 17}} - - YES - - 67108864 - 71303168 - Keskusteluhuoneen nimi: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{182, 157}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Viestillä: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Kutsu ystäviä: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Erottele ystävien nimet pilkuilla. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index eb887db..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 8f862a5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,458 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-2, 149}, {177, 17}} - - YES - - 67108864 - 71303168 - Keskusteluhuoneen nimi: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{180, 147}, {209, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Viestillä: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Erottele ystävien nimet pilkuilla. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Kutsu ystäviä: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index deb06ab..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 7dfa023..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Luokka: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Esiintymä: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Vastaanottaja: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4c5c8d5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 9a6e372..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - 256 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index a9f0f43..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 6f8c47d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profile: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers and Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9910635..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 6b944a1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Salaus: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Salasana: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Käyttäjänimi - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Rekisteröi uusi tunnus - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9db4177..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 5ef5538..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index bf7910a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 1cccbbc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7fac0e7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 1357828..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Display Name: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index f282fcd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 014607a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,689 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Käyttäjä: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Salasana: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Palvelin: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Portti: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Kirajautuminen: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Älä huomioi edelleenohjauksia - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Piilota identiteetti - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index a96d755..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index c5f7638..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Käyttäjänimi - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Salasana: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Palvelin: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Portti: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 6f0966f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index cb0d64c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 2 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Julkinen tila - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Käytä UDP:ta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {140, 18}} - - YES - - 67108864 - 0 - Käytä SIP-välitystä: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{294, 102}, {132, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Yhteys: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Käyttäjätunnus: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Tila: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Kirjautumispalvelin: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Salasana: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Viestinimi: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Palvelin: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index f2e4c15..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 8c1850f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,603 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{347, 70}, {48, 17}} - - YES - - 67108864 - 71303168 - Portti: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{400, 68}, {44, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Sähköposti: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Kirjautumispalvelin: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {204, 18}} - - YES - - 67108864 - 0 - Tarkista uudet sähköpostit - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Huonepalvelin: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Kohta1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Kohta2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Kohta3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4555576..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 41b6168..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Käyttäjänimi - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requires a properly configured copy of the Zephyr host manager (zhm) daemon to be running; this also implies a dependency upon a proper Kerberos configuration. Zephyr uses your UNIX UID or your Kerberos name; the user name above is solely for internal Adium use. Only one simultaneous Zephyr connection is recommended. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Export to .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Export: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Use internal host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 18a7ff2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/Localizable.strings deleted file mode 100644 index ebbaf91..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fi.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 91b29c7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - Pour vous connecter au Chat Facebook, vous devez autoriser Adium. Une page de connexion sécurisée va s'afficher quand vous cliquerez sur "Autoriser l'accès". - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - L'information sur le statut sera placée ici. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Autoriser l'accès - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 165f52b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 4211bdc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{130, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{5, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{130, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 256 - {{130, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle : - - - - - - NO - 1 - - - - 256 - {{130, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 256 - {{127, 80}, {267, 17}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts avec une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{5, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter : - - - - - - NO - 1 - - - - 256 - {{130, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Avec le message : - - - - - - NO - 1 - - - - 256 - {{130, 19}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 5012357..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 08776dc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Sujet : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 2}, {272, 17}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts avec une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter : - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0a459d5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 8362771..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Avec le message : - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter : - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 70}, {272, 17}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts avec une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index fbffbe3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index dfd1e33..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Avec le message : - - - - - - NO - 1 - - - - 256 - {{120, 60}, {272, 17}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts avec une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Inviter : - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 78d341d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 598e730..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance : - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Destinataire : - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e0b801d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 2ed8f1b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1412 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-2, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de Passe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-2, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Pseudo : - - - - - - NO - 1 - - - - 264 - {{143, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - pseudo - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{143, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (facultatif) - - YES - - - - NO - 1 - - - - 264 - {{143, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom de l'hôte : - - - - - - NO - 1 - - - {417, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Utiliser le cryptage SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{96, 236}, {41, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Une par ligne (facultatif). $me sera remplacé par votre pseudo actuel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {409, 131} - - - - - - - - - - - - - 38 - - - - 409 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {409, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Exécution des commandes lors de la connexion : - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{196, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{123, 34}, {70, 17}} - - YES - - 68157504 - 272630784 - Nom réel : - - - - - - NO - 1 - - - - 268 - {{196, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{27, 2}, {166, 17}} - - YES - - 68157504 - 272630784 - Nom d'utilisateur (Ident) : - - - - - - NO - 1 - - - {435, 54} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 68a5504..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 6a13055..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Pseudo : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil : - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{153, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Pas de cryptage - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Utiliser le cryptage si disponible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Exiger le cryptage - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{153, -2}, {306, 18}} - - YES - - 67108864 - 0 - Autoriser les connexions multiples - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-37, 0}, {187, 17}} - - YES - - 67108864 - 71303168 - Connexions multiples : - - - - - - NO - 1 - - - - 264 - {{153, 112}, {306, 18}} - - YES - - 67108864 - 0 - Vérifier les messages reçus - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{153, 87}, {359, 18}} - - YES - - 67108864 - 0 - Toujours utiliser pour le Chat Direct et les transferts - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{10, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{155, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{399, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{360, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{10, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriels : - - - - - - NO - 1 - - - - 264 - {{10, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur Proxy AOL : - - - - - - NO - 1 - - - - 264 - {{10, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - {510, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 345db57..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 1f6ee74..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Chiffrement : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{146, 12}, {238, 32}} - - YES - - 67108864 - 134217728 - Enregistrer un nouveau compte - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0450689..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index c6a6ed6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1514 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 20}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Exiger le cryptage - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Utiliser le cryptable si disponible - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Exiger le cryptage - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 61}, {140, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{11, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{153, 108}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{355, 142}, {43, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{156, 140}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{402, 140}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-33, 142}, {184, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{155, 85}, {377, 18}} - - YES - - 67108864 - 0 - Toujours utiliser pour les transferts de fichiers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{11, 86}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur Proxy AOL : - - - - - - NO - 1 - - - {473, 162} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{95, 24}, {305, 18}} - - YES - - 67108864 - 0 - Laissez les autres voir quand vous écrivez - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Saisie : - - - - - - NO - 1 - - - - 264 - {{95, -1}, {359, 18}} - - YES - - 67108864 - 0 - Laisser les autres voir mon statut sur le Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{5, 0}, {87, 17}} - - YES - - 67108864 - 71303168 - Statut Web : - - - - - - NO - 1 - - - - 264 - {{17, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{94, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 322 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - checkBox_broadcastMusic - NSButton - - - checkBox_broadcastMusic - - checkBox_broadcastMusic - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index c4a648f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 257a75f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {98, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {134, 17}} - - YES - - 67108864 - 71303168 - Nom d'utilisateur : - - - - - - NO - 1 - - - - 264 - {{156, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nomd'utilisateur@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{156, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{138, 12}, {276, 32}} - - YES - - 67108864 - 134217728 - Enregistrer un nouveau compte - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{13, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{34, 23}, {105, 14}} - - YES - - 67108864 - 272629760 - Enregistrement… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{191, 112}, {277, 18}} - - YES - - 67108864 - 0 - Autoriser l'authentification en texte clair - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{191, 92}, {181, 18}} - - YES - - 67108864 - 0 - Forcer l'ancien SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{191, 159}, {265, 18}} - - YES - - 67108864 - 0 - Afficher les nouveaux courriels - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{193, 282}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{46, 284}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur BOSH : - - - - - - NO - 1 - - - - 264 - {{193, 310}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{10, 312}, {176, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{193, 252}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-5, 237}, {191, 34}} - - YES - - 67108864 - 71303168 - Proxies transfert de fichiers : - - - - - - NO - 1 - - - - 264 - {{360, 222}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{317, 224}, {38, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{193, 222}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{46, 224}, {140, 17}} - - YES - - 67108864 - 71303168 - Ressource : - - - - - - NO - 1 - - - - 264 - {{46, 160}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{46, 112}, {140, 17}} - - YES - - 67108864 - 71303168 - Sécurité : - - - - - - NO - 1 - - - - 256 - {{22, 191}, {164, 17}} - - YES - - 67108864 - 71303168 - Priorité disponible : - - - - - - NO - 1 - - - - 256 - {{193, 188}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{264, 191}, {91, 17}} - - YES - - 67108864 - 71303168 - Priorité indisponible : - - - - - - NO - 1 - - - - 256 - {{360, 187}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{190, 22}, {220, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Demander quoi faire - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accepter - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accepter et ajouter à la liste - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Refuser - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{7, 28}, {179, 17}} - - YES - - 67108864 - 71303168 - Abonnements de groupes : - - - - - - NO - 1 - - - - 268 - {{3, 1}, {238, 17}} - - YES - - 67108864 - 71303168 - ... ajouter à la liste dans le groupe : - - - - - - NO - 1 - - - - 266 - {{246, -4}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{191, 72}, {147, 18}} - - YES - - 67108864 - 0 - Exiger SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{191, 52}, {286, 18}} - - YES - - 67108864 - 0 - Contrôle strict des certificats - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{101, 137}, {85, 17}} - - YES - - 68157504 - 272630784 - Émoticônes : - - - - - - NO - 1 - - - - 268 - {{191, 136}, {268, 18}} - - YES - - 67108864 - 0 - Afficher les émoticônes personnalisées - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {485, 332} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Laisser les autres voir que vous écrivez - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Saisie : - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {70, 17}} - - YES - - 67108864 - 71303168 - Musique : - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Laisser les autres voir ce que joue iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {338, 17}} - - YES - - 67108864 - 272629760 - Entrez votre adresse de serveur XMPP ci-dessous : - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 265 - {{351, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {46, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 268 - {{17, 252}, {384, 17}} - - YES - - 67108864 - 272629760 - ...ou sélectionnez un serveur public dans cette liste : - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{207, 12}, {234, 32}} - - YES - - 67108864 - 134217728 - Demander un nouveau compte - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Annuler - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{218, 58}, {217, 19}} - - YES - - -2080374784 - 134217728 - Visiter la page d'accueil du serveur - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{798, 452}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7b7a930..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 79c0ba3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1502 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{397, 81}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{2, 83}, {149, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{156, 81}, {191, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{154, 19}, {273, 18}} - - YES - - 67108864 - 0 - Vérifier les nouveaux courriels - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{11, 20}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{350, 83}, {42, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{154, 39}, {273, 18}} - - YES - - 67108864 - 0 - Autoriser les connexions directes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{154, 57}, {273, 18}} - - YES - - 67108864 - 0 - Se connecter via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{66, 2}, {85, 17}} - - YES - - 68157504 - 272630784 - Émoticônes : - - - - - - NO - 1 - - - - 268 - {{154, 1}, {273, 18}} - - YES - - 67108864 - 0 - Afficher les émoticônes personnalisées - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {468, 103} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nom affiché : - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Laisser les autres voir quand vous écrivez - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Saisie : - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{88, 48}, {287, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {69, 17}} - - YES - - 67108864 - 71303168 - Musique : - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Laisser les autres voir ce que joue iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index fae24db..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 2825a54..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{137, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{4, 69}, {128, 17}} - - YES - - 67108864 - 71303168 - Utilisateur : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{4, 9}, {128, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{137, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{137, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{4, 39}, {128, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{342, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Connexion : - - - - - - NO - 1 - - - - 264 - {{140, 18}, {316, 18}} - - YES - - 67108864 - 0 - Forcer la connexion (ignorer les redirections) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Masquer l'identité du client - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {454, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0bc7a77..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index aa831d4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{353, 39}, {38, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{396, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8418b5a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index f8846a0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{162, -1}, {188, 18}} - - YES - - 67108864 - 0 - Montrer le statut à tous - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{162, 78}, {315, 18}} - - YES - - 67108864 - 0 - Utiliser UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{162, 104}, {116, 18}} - - YES - - 67108864 - 0 - Par proxy SIP : - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{279, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{36, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connexion : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{11, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Utilisateur autorisé : - - - - - - NO - 1 - - - - 264 - {{36, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Statut : - - - - - - NO - 1 - - - - 264 - {{-1, 25}, {160, 17}} - - YES - - 67108864 - 71303168 - Domaine d'autorisation : - - - - - - NO - 1 - - - - 256 - {{164, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{164, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {481, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Pseudo : - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index b185b07..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index efe6a93..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,712 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{369, 72}, {39, 17}} - - YES - - 67108864 - 71303168 - Port : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{411, 70}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{23, 19}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{167, 69}, {197, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-28, 72}, {190, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{166, 18}, {214, 18}} - - YES - - 67108864 - 0 - Vérifier les nouveaux courriels - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{23, 44}, {140, 17}} - - YES - - 67108864 - 71303168 - Liste des salons : - - - - - - NO - 1 - - - - 264 - {{165, 38}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {492, 92} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 854e168..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 217d055..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 119}} - - YES - - 71303168 - 4194304 - Zephyr requiert une version appropriée du Zephyr host manager (zhm) pour être lancé; Cela implique aussi, pour une partie spécifique, une configuration Kerberos. Zephyr utilise votre UID UNIX ou votre nom Kerberos; le nom d'utilisateur ci-dessus est uniquement pour un usage interne à Adium. Une seule connection en simultané à Zephyr est recommandée. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{151, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exporter en .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{151, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exporter en .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{153, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{8, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposition : - - - - - - NO - 1 - - - - 264 - {{153, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{8, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{8, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Export : - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Serveur - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{153, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{8, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveurs : - - - - - - NO - 1 - - - - 292 - {{122, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{99, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{0, 67}, {148, 17}} - - YES - - 67108864 - 71303168 - Gestion des serveurs : - - - - - - NO - 1 - - - - 268 - {{151, 66}, {219, 18}} - - YES - - 67108864 - 0 - Utiliser le gestionnaire interne - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index ea80a69..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/Localizable.strings deleted file mode 100644 index 54a3b05..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index b450c9b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{153, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{17, 261}, {131, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{153, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 231}, {131, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 256 - {{153, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 201}, {131, 17}} - - YES - - 67108864 - 71303168 - Organisateur : - - - - - - NO - 1 - - - - 256 - {{153, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 171}, {131, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 256 - {{150, 87}, {273, 14}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts par une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{153, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 20}, {131, 57}} - - YES - - 67108864 - 71303168 - Texte d'invitation : - - - - - - NO - 1 - - - - 256 - {{153, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 101}, {131, 57}} - - YES - - 67108864 - 71303168 - Contacts à inviter : - - - - - - NO - 1 - - - {440, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 1f87f8f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 3fea77b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 88}, {131, 17}} - - YES - - 67108864 - 71303168 - Sujet : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{133, 4}, {254, 14}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts par une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{136, 18}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 58}, {131, 17}} - - YES - - 67108864 - 71303168 - Contacts à inviter : - - - - - - NO - 1 - - - - 256 - {{136, 86}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {417, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a31b845..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index dd30be7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{2, 160}, {134, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{141, 158}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{141, 11}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{2, 11}, {134, 57}} - - YES - - 67108864 - 71303168 - Texte d'invitation : - - - - - - NO - 1 - - - - 256 - {{2, 130}, {134, 17}} - - YES - - 67108864 - 71303168 - Contacts à inviter : - - - - - - NO - 1 - - - - 256 - {{141, 90}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{138, 76}, {272, 14}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts par une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {418, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 3788609..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 2c08230..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{5, 148}, {131, 17}} - - YES - - 67108864 - 71303168 - Nom du salon : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{141, 146}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{141, 0}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 0}, {131, 57}} - - YES - - 67108864 - 71303168 - Texte d'invitation : - - - - - - NO - 1 - - - - 256 - {{138, 64}, {272, 14}} - - YES - - 67108864 - 4194304 - Séparer les noms des contacts par une virgule. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{141, 78}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 118}, {131, 17}} - - YES - - 67108864 - 71303168 - Contacts à inviter : - - - - - - NO - 1 - - - {418, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ec8744c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 54cfe31..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance : - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Destinataire : - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ef1c708..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 6cd1f62..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Pseudo : - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - pseudo - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (facultatif) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Nom de l'hôte : - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Crypter la connexion à l'aide de SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Un par ligne, / est facultatif. $me sera remplacé par votre surnom actuel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Exécuter les commandes en se connectant : - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Vrai nom : - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Nom utilisateur (Ident) : - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index bd5f792..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index c5e35d3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1606 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil : - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 42}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, 18}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, 19}, {140, 17}} - - YES - - 67108864 - 71303168 - Cg - - - - - - NO - 1 - - - - 264 - {{123, 145}, {306, 18}} - - YES - - 67108864 - 0 - Rechercher les nouveaux courriels - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 106}, {484, 34}} - - YES - - 67108864 - 0 - VG91am91cnMgdXRpbGlzZXIgdW4gcHJveHkgcG91cgpsZXN0cmFuc2ZlcnRzIGRlIGZpY2hpZXJzIGV0 -IGNvbnZlcnNhdGlvbnM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 174}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{125, 171}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 171}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 173}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{-20, 146}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{-20, 115}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur Proxy AOL : - - - - - - NO - 1 - - - - 264 - {{-20, 83}, {140, 17}} - - YES - - 67108864 - 71303168 - Sécurité : - - - - - - NO - 1 - - - {440, 193} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 3914496..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 88bc6a1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{139, 12}, {238, 32}} - - YES - - 67108864 - 134217728 - Enregistrer un nouveau compte - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index e36f267..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 837fe69..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 20}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 60}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 129}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{124, 123}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 157}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{127, 155}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 155}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 157}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{126, 84}, {283, 34}} - - YES - - 67108864 - 0 - VG91am91cnMgdXRpbGlzZXIgdW4gcHJveHkgcG91cgpsZXMgdHJhbnNmZXJ0cyBkZSBmaWNoaWVycw - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur Proxy AOL : - - - - - - NO - 1 - - - {442, 177} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Indiquer quand vous écrivez - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Clavier : - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Permettre de voir mon état sur le Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Visibilité sur le Web : - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2edf108..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index e80d75e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{5, 65}, {116, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{5, 90}, {116, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nomdutilisateur@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{144, 12}, {238, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{44, 22}, {107, 16}} - - YES - - 67108864 - 272629760 - Enregistrement… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {396, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{208, 119}, {241, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{208, 99}, {175, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{208, 166}, {265, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{210, 289}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{65, 291}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur BOSH : - - - - - - NO - 1 - - - - 264 - {{210, 317}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{25, 319}, {180, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{210, 259}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 261}, {208, 17}} - - YES - - 67108864 - 71303168 - Proxys de transfert de fichiers : - - - - - - NO - 1 - - - - 264 - {{377, 229}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{334, 231}, {38, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{210, 229}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{65, 231}, {140, 17}} - - YES - - 67108864 - 71303168 - Ressource : - - - - - - NO - 1 - - - - 264 - {{65, 167}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{65, 120}, {140, 17}} - - YES - - 67108864 - 71303168 - Sécurité : - - - - - - NO - 1 - - - - 256 - {{61, 198}, {144, 17}} - - YES - - 67108864 - 71303168 - Priorité si présent : - - - - - - NO - 1 - - - - 256 - {{210, 195}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{281, 198}, {91, 17}} - - YES - - 67108864 - 71303168 - si absent : - - - - - - NO - 1 - - - - 256 - {{377, 194}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{207, 29}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Demander quoi faire - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accepter - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accepter et ajouter à la liste - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Refuser - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{-3, 35}, {208, 17}} - - YES - - 67108864 - 71303168 - Abonnements de présence : - - - - - - NO - 1 - - - - 268 - {{53, 8}, {205, 17}} - - YES - - 67108864 - 71303168 - …ajouter à la liste du groupe : - - - - - - NO - 1 - - - - 266 - {{263, 3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{208, 79}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{208, 59}, {263, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{120, 144}, {85, 17}} - - YES - - 68157504 - 272630784 - Émoticônes : - - - - - - NO - 1 - - - - 268 - {{208, 143}, {268, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {494, 339} - NSView - NSResponder - - - - 256 - - - - 264 - {{112, 30}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 31}, {75, 17}} - - YES - - 67108864 - 71303168 - Clavier : - - - - - - NO - 1 - - - - 264 - {{34, 60}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{111, 54}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{43, 7}, {66, 17}} - - YES - - 67108864 - 71303168 - Musique : - - - - - - NO - 1 - - - - 264 - {{112, 5}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {422, 81} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Saisir l'adresse de votre serveur XMPP : - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - ou sélectionner un serveur public : - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {197, 204} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 197 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.76960784313725494 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133842 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0865c86..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 6207e4e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 34}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{405, 78}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-1, 80}, {157, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{161, 78}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{159, 30}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{16, 31}, {140, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{366, 80}, {34, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{159, 54}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{71, 7}, {85, 17}} - - YES - - 68157504 - 272630784 - Émoticônes : - - - - - - NO - 1 - - - - 268 - {{159, 6}, {268, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {476, 100} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nom affiché : - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {69, 17}} - - YES - - 67108864 - 71303168 - Clavier : - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cryptage : - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {69, 17}} - - YES - - 67108864 - 71303168 - Musique : - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index b06af8c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index d79da47..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Utilisateur : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 54}, {140, 17}} - - YES - - 67108864 - 71303168 - Connexion : - - - - - - NO - 1 - - - - 264 - {{140, 17}, {244, 34}} - - YES - - 67108864 - 0 - Rm9yY2VyIGxhIGNvbm5leGlvbiBhdSBzZXJ2ZXVyCihpZ25vcmVyIGxlcyByZWRpcmVjdGlvbnMpA - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 53}, {250, 18}} - - YES - - 67108864 - 0 - Masquer l'identité du client - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 71} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8593b05..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 04ea50c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{353, 39}, {38, 17}} - - YES - - 67108864 - 71303168 - Port : - - - - - - NO - 1 - - - - 264 - {{396, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index ffe39e9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 9816c00..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{168, -1}, {199, 18}} - - YES - - 67108864 - 0 - Afficher l'état à tous - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Utiliser UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 103}, {158, 18}} - - YES - - 67108864 - 0 - Utiliser un proxy SIP : - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{309, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 104}, {148, 17}} - - YES - - 67108864 - 71303168 - Connexion : - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 52}, {168, 17}} - - YES - - 67108864 - 71303168 - Utilisateur authorisé : - - - - - - NO - 1 - - - - 264 - {{17, 0}, {148, 17}} - - YES - - 67108864 - 71303168 - État : - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {168, 17}} - - YES - - 67108864 - 71303168 - Domaine d'authorisation : - - - - - - NO - 1 - - - - 256 - {{170, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{170, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {469, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Mot de passe : - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom à l'écran : - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveur : - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7127c45..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 1faba9e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{356, 70}, {38, 17}} - - YES - - 67108864 - 71303168 - Port : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{399, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {183, 17}} - - YES - - 67108864 - 71303168 - Courriel : - - - - - - NO - 1 - - - - 264 - {{185, 68}, {166, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {183, 17}} - - YES - - 67108864 - 71303168 - Serveur de connexion : - - - - - - NO - 1 - - - - 264 - {{183, 16}, {246, 18}} - - YES - - 67108864 - 0 - Rechercher les nouveaux courriels - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {183, 17}} - - YES - - 67108864 - 71303168 - Liste des salons : - - - - - - NO - 1 - - - - 264 - {{182, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index bb522ce..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index ca245bd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1228 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Nom utilisateur : - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requiert une configuration Kerberos. Zephyr utilise votre UID UNIX ou votre nom Kerberos ; le nom d'utilisateur ci-dessus sert uniquement en interne à Adium. Une seule connexion simultanée à Zephyr est recommandée. Utiliser le gestionnaire interne d'hôtes entrera en conflit avec toute instance de 'zhm' lancée sur cette machine. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{170, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exporter en .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{170, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exporter en .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{172, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{27, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposition : - - - - - - NO - 1 - - - - 264 - {{172, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{27, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Encodage : - - - - - - NO - 1 - - - - 264 - {{27, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Export : - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {287, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Serveur - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 312475648 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {287, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.30526316165924072 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{172, 0}, {289, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{27, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Serveurs : - - - - - - NO - 1 - - - - 292 - {{141, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{118, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{5, 67}, {162, 17}} - - YES - - 67108864 - 71303168 - Gestionnaire de serveur : - - - - - - NO - 1 - - - - 268 - {{170, 66}, {283, 18}} - - YES - - 67108864 - 0 - Utiliser le gestionnaire interne de serveur - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {474, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 73ea606..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings deleted file mode 100644 index 86c6ce2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/fr_CA.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 12c4ffb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{140, 259}, {249, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{21, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Szoba neve: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{140, 229}, {249, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{21, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 256 - {{140, 199}, {249, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{21, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Név: - - - - - - NO - 1 - - - - 256 - {{140, 169}, {249, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{21, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - - - - - NO - 1 - - - - 256 - {{140, 81}, {250, 17}} - - YES - - 67108864 - 4194304 - Partnernevek elválasztása vesszővel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 123}, {144, 35}} - - YES - - 67108864 - 71303168 - Partnerek meghívása: - - - - - - NO - 1 - - - - 256 - {{140, 101}, {249, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{21, 39}, {120, 41}} - - YES - - 67108864 - 71303168 - Üzenet: - - - - - - NO - 1 - - - - 256 - {{140, 20}, {249, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - textField_roomName - - - - 40 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteMessage - - - - 58 - - - - textField_inviteUsers - - - - 57 - - - - view - - - - 31 - - - - textField_server - - - - 41 - - - - nextKeyView - - - - 48 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 44 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 59 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index add3e0c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 63c80cb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{23, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Téma: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{141, -7}, {236, 28}} - - YES - - 67108864 - 4194304 - Partnernevek elválasztása vesszővel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{141, 21}, {250, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 47}, {143, 34}} - - YES - - 67108864 - 71303168 - Partnerek meghívása: - - - - - - NO - 1 - - - - 256 - {{141, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - textField_topic - - - - 40 - - - - view - - - - 31 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 99dd2a3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 0e40698..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Szoba neve: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{137, 157}, {251, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{137, 10}, {251, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Üzenet: - - - - - - NO - 1 - - - - 256 - {{-3, 115}, {140, 34}} - - YES - - 67108864 - 71303168 - Partnerek meghívása: - - - - - - NO - 1 - - - - 256 - {{137, 89}, {251, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{137, 70}, {224, 17}} - - YES - - 67108864 - 4194304 - Partnernevek elválasztása vesszővel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - textField_inviteMessage - - - - 44 - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 54 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 10e7bf6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 417b57d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{20, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Szoba neve: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{140, 147}, {249, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{140, 1}, {249, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{20, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Üzenet: - - - - - - NO - 1 - - - - 256 - {{140, 61}, {224, 17}} - - YES - - 67108864 - 4194304 - Partnernevek elválasztása vesszővel. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{140, 79}, {249, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 102}, {142, 34}} - - YES - - 67108864 - 71303168 - Partnerek meghívása: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_inviteMessage - - - - 42 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 85f4b97..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 9a5ee82..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Osztály: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Példány: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Címzett: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - textField_class - - - - 64 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - view - - - - 31 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 38c252c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 6951d14..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - 256 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index a9f0f43..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index fe4354b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Álnév: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Fiók: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Új e-mailek ellenőrzése - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Proxy használata a fájlküldéseknél és közvetlen IM-nél - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Bejelentkezési szerver: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Szerver: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Biztonság: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 6293e38..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 898b454..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,548 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Titkosítás: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Felhasználói név: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Új fiók létrehozása - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - textField_accountUID - - - - 197 - - - - textField_password - - - - 200 - - - - changedPreference: - - - - 188 - - - - registerNewAccount: - - - - 201 - - - - view_setup - - - - 191 - - - - textField_accountUIDLabel - - - - 198 - - - - popUp_encryption - - - - 189 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index c8b985f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 09deb48..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódolás: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Bejelentkező szerver: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Proxy használata minden fájlküldéshez - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy szerver: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Partnereim láthatják ha gépelek. - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Gépelés: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Bárki láthatja az állapotomat a weben - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Titkosítás: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 30cad68..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 4357edf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3353 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{10, 73}, {111, 34}} - - YES - - 67108864 - 71303168 - Felhasználónév: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - felhasznalonev@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 9}, {85, 28}} - - YES - - 67108864 - 272629760 - Regisztráció… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {245, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {146, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {219, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH szerver: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - Fájlátviteli proxy: - - - - - - NO - 1 - - - - 264 - {{342, 223}, {60, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{303, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {142, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Forrás: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Biztonság: - - - - - - NO - 1 - - - - 256 - {{40, 192}, {117, 17}} - - YES - - 67108864 - 71303168 - Elérhető prioritás: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{222, 192}, {119, 17}} - - YES - - 67108864 - 71303168 - Távollét prioritás: - - - - - - NO - 1 - - - - 256 - {{342, 188}, {60, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Kérdezzen rá - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Elfogadás - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Elfogadás és hozzáadás a listához - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Elutasítás - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{40, 2}, {170, 17}} - - YES - - 67108864 - 71303168 - ...köv. csoport listájára: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {144, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{74, 138}, {83, 17}} - - YES - - 68157504 - 272630784 - Mosolyjelek: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {234, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{24, 25}, {63, 17}} - - YES - - 67108864 - 71303168 - Gépelés: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Titkosítás: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {327, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Zene: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {325, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {422, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Add meg az XMPP szervered címét: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 235}, {303, 34}} - - YES - - 67108864 - 272629760 - vagy válassz egyet a publikus szerverek közül: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{233, 58}, {202, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1956bac..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 52de81b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - YES - - 67108864 - 71303168 - Bejelentkezési szerver: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Mosolyjelek: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Megjelenítendő név: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Gépelés: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Titkosítás: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Zene: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index ff1cb08..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 4e6f642..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Felhasználónév: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Bejelentkezés: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {256, 18}} - - YES - - 67108864 - 0 - Átirányítások figyelmenkívül hagyása - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Kliens identitásának elrejtése - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUIDLabel - - - - 233 - - - - view_options - - - - 243 - - - - changedPreference: - - - - 251 - - - - changedPreference: - - - - 241 - - - - textField_password - - - - 236 - - - - changedPreference: - - - - 240 - - - - textField_connectPort - - - - 235 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 250 - - - - textField_connectHost - - - - 234 - - - - changedPreference: - - - - 238 - - - - checkBox_forceLogin - - - - 249 - - - - checkBox_fakeClientId - - - - 248 - - - - textField_accountUID - - - - 232 - - - - changedPreference: - - - - 239 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 50bc5e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 0a489cc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Felhasználónév: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 193 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - changedPreference: - - - - 196 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 197 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectPort - - - - 194 - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8741252..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 99b328d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{123, -1}, {215, 18}} - - YES - - 67108864 - 0 - Állapot mutatása mindenkinek - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{123, 78}, {315, 18}} - - YES - - 67108864 - 0 - UDP használata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{123, 103}, {152, 18}} - - YES - - 67108864 - 0 - SIP proxy használata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{272, 102}, {154, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{4, 104}, {116, 17}} - - YES - - 67108864 - 71303168 - Kapcsolódás: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-28, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Felhasználónév: - - - - - - NO - 1 - - - - 264 - {{-3, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Állapot: - - - - - - NO - 1 - - - - 264 - {{-28, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Hitelesítő domain: - - - - - - NO - 1 - - - - 256 - {{125, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{125, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Jelszó: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Név: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Szerver: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - view_setup - - - - 224 - - - - checkBox_publishStatus - - - - 232 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 245 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 254 - - - - view_options - - - - 207 - - - - textField_accountUID - - - - 225 - - - - textField_connectHost - - - - 227 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index df48cf5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 49537cb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,604 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{9, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{148, 68}, {194, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 53}, {151, 34}} - - YES - - 67108864 - 71303168 - Bejelentkezési szerver: - - - - - - NO - 1 - - - - 264 - {{152, 16}, {219, 18}} - - YES - - 67108864 - 0 - Értesítés új e-mail érkezésekor - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{9, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Szobalista szerver: - - - - - - NO - 1 - - - - 264 - {{151, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - popUp_chatServer - - - - 109 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 101 - - - - textField_connectPort - - - - 98 - - - - textField_connectHost - - - - 97 - - - - view_options - - - - 96 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 102 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8f9e288..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index de211b4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Felhasználónév: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - A Zephyr használatához szükség van egy működő Kerberos beállításhoz, mivel a Zephyr a UNIX UIDodat, vagy a Kerberos nevedet használja (az itt megadott név csak az Adiumnak kell). Egyszerre csak egy Zephyr kapcsolat javasolt! A belső hoszt kezelő használata ütközést okozhat bármilyen más, a gépen futó 'zhm' példánnyal. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exportálás ide: .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exportálás ide: .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódolás: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exportálás: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Szerver - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Szerverek: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Hoszt kezelő: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {244, 18}} - - YES - - 67108864 - 0 - Belső hoszt kezelő használata - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7b98905..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/Localizable.strings deleted file mode 100644 index b091600..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/hu.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc-small.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc-small.png deleted file mode 100644 index a4277e8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc-small.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc.png deleted file mode 100644 index dfc2cef..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/irc.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index a860061..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Spjallrás: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Vefsel: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Nafn: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Skiljið notendanöfn í sundur með kommu. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjóða notendum: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Með skilaboðum: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ef407c0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 742a270..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Umræðuefni: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Skiljið notendanöfn í sundur með kommu. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjóða notendum: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 15e1031..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 6063355..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Spjallrás: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Með skilaboðum: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjóða notendum: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Skiljið notendanöfn í sundur með kommu. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index cb459fe..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 107aecb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Spjallrás: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Með skilaboðum: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Skiljið notendanöfn í sundur með kommu. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjóða notendum: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 8a7e272..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 39daaf7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Hópur: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Uppspretta: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Móttakandi: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ff427f3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 5d93218..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1412 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Gælunafn: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - siggi - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (valkostur) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.example.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Netþjónn: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Tengjast gegnum SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Ein skipun í hverja línu. / er valkostur. $me verður skipt út fyrir notendanafnið þitt. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - 256 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Framkvæma skipannir við tengingu: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Nafn: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Notendanafn (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index cc4bc2c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index eb9deec..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Gælunafn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Upplýsingar: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Athuga með ný skilaboð - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Nota vefsel fyrir skráarflutning og Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Netþjónn: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Netfang: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL vefselsþjónn: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Öryggi: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 101aa7c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 2132274..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,701 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Notendanafn: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Skrá nýjan notanda - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9c82e8f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 0747a4e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Netþjónn: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Nota vefsel fyrir skráarflutning - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL vefselsþjónn: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Láta vita að ég skrifi - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Ritun: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Leyfa öllum að sjá stöðuna mína á Netinu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Netvitund: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 85a335d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 92847fb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - Notendanafn: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - notandi@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Skrái... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH netþjónn: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Tengjast netþjóni: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - Skráarflutningsvefsel: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Efni: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Netfang: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Öryggi: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Viðveruforgangur: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Fráveruforgangur: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - spyrja mig - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - samþykkja - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - samþykkja og bæta á lista - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - hafna - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Viðveruáskrift: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...bæta á lista í hóp - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Táknmyndir: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Ritun: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Tónlist: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Skrifaðu slóðina á XMPP netþjóninn hér: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Vefsel: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - eða veldu netþjón úr listanum: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index b35c2a0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 68f5ebc..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Netþjónn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Netfang: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Táknmyndir: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nafn: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Ritun: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Tónlist: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5f6df86..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index bfdb259..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Notandanafn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Vefsel: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {416, 59} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Innskráning: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Krefjast innskráningar (hunsa endursendingar) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Fela einkenni - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 796e076..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 7800b9a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Notendanafn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Vefsel: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 995b2d5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 4950487..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Birta öllum stöðuna - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Nota UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Nota SIP vefsel: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Tenging: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Notendanafn: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Staða: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Lén: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Lykilorð: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Skjánafn: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Vefsel: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index f4c9258..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 59c0b8e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,712 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Gátt: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Netfang: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Netþjónn: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {169, 18}} - - YES - - 67108864 - 0 - Athuga með ný skilaboð - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Rásalisti: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 6ba5e25..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index ce193a3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Notendanafn: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr krefst góðra Kerberos stillinga. Zephyr notar þitt UNIX UID eða Kerberos auðkennið þitt; notendanafnið er aðeins fyrir innri notkun Adium. Aðeins er mælt með einni Zephyr tengingu í einu. Notkun annara tenginga mun trufla önnur 'zhm' forrit sem keyra á þessari vél. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Vista sem .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Vista sem .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Sýnileiki: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Dulkóðun: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Útflutningur: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Þjónn - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Netþjónar: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Hýsilstýring: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Nota innri hýsilstýringu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 39705fb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/Localizable.strings deleted file mode 100644 index f5057b3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/is.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index dda882c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - Per collegarsi alla chat di Facebook, devi autorizzare Adium. Una maschera di login sicuro a Facebook verrà mostrata quando farai clic su Consenti accesso. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Le informazioni sullo stato attuale andranno qui. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Consenti accesso - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7723cb9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 4b9dd08..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{154, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{17, 264}, {132, 17}} - - YES - - 67108864 - 71303168 - Nome della stanza: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{154, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{29, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{154, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{29, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Nome: - - - - - - NO - 1 - - - - 256 - {{154, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{29, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{151, 85}, {224, 14}} - - YES - - 67108864 - 4194304 - Separa i nomi dei contatti con le virgole. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{29, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contatti: - - - - - - NO - 1 - - - - 256 - {{154, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 40}, {132, 40}} - - YES - - 67108864 - 71303168 - Con il messaggio: - - - - - - NO - 1 - - - - 256 - {{154, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {441, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e475c30..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index b2f605e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 107}, {120, 17}} - - YES - - 67108864 - 71303168 - Argomento: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{139, 20}, {224, 14}} - - YES - - 67108864 - 4194304 - Separa i nomi dei contatti con le virgole. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{142, 34}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{17, 77}, {120, 17}} - - YES - - 67108864 - 71303168 - Invita contatti: - - - - - - NO - 1 - - - - 256 - {{142, 102}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {428, 144} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c4e641b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 27f7ada..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 169}, {132, 17}} - - YES - - 67108864 - 71303168 - Nome della stanza: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{154, 167}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{154, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 60}, {132, 17}} - - YES - - 67108864 - 71303168 - Con il messaggio: - - - - - - NO - 1 - - - - 256 - {{17, 142}, {132, 17}} - - YES - - 67108864 - 71303168 - Invita contatti: - - - - - - NO - 1 - - - - 256 - {{154, 99}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{151, 85}, {224, 14}} - - YES - - 67108864 - 4194304 - Separa i nomi dei contatti con le virgole. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {440, 209} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 964ec58..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 2abc061..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 168}, {132, 17}} - - YES - - 67108864 - 71303168 - Nome della stanza: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{154, 166}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{154, 20}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 60}, {132, 17}} - - YES - - 67108864 - 71303168 - Con il messaggio: - - - - - - NO - 1 - - - - 256 - {{151, 84}, {224, 14}} - - YES - - 67108864 - 4194304 - Separa i nomi dei contatti con le virgole. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{154, 98}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{17, 138}, {132, 17}} - - YES - - 67108864 - 71303168 - Invita contatti: - - - - - - NO - 1 - - - {440, 208} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e98747b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 1d5fbee..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 80}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{142, 78}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{17, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Istanza: - - - - - - NO - 1 - - - - 256 - {{142, 48}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{17, 20}, {120, 17}} - - YES - - 67108864 - 71303168 - Destinatario: - - - - - - NO - 1 - - - - 256 - {{142, 18}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {428, 120} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index bb85add..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 541e223..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1411 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-22, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-22, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Soprannome: - - - - - - NO - 1 - - - - 264 - {{123, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{123, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (opzionale) - - YES - - - - NO - 1 - - - - 264 - {{123, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{46, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Host: - - - - - - NO - 1 - - - {363, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{179, 232}, {263, 18}} - - YES - - 67108864 - 0 - Crittografa la connessione usando SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{122, 230}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{45, 232}, {72, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {433, 17}} - - YES - - 68157504 - 272761856 - Uno per riga, / è opzionale. $me sarà sostituito con il tuo soprannome attuale. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {410, 131} - - - - - - - - - - - - - 38 - - - - 410 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {837, 10000000} - - - - {{1, 1}, {410, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{411, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {427, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {463, 182}} - - - - {{-2, -4}, {465, 198}} - - {0, 0} - - 67108864 - 0 - Comandi da eseguire dopo esserti connesso: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-3, 205}, {121, 17}} - - YES - - 67108864 - 71303168 - Codifica: - - - - - - NO - 1 - - - - 264 - {{119, 198}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {460, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{182, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {117, 17}} - - YES - - 68157504 - 71304192 - Nome reale: - - - - - - NO - 1 - - - - 268 - {{182, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {163, 17}} - - YES - - 68157504 - 71304192 - Nome utente (Ident): - - - - - - NO - 1 - - - {387, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2ee653f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 3859c85..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profilo: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {570, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{142, 23}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Nessuna crittografia - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Usa crittografia quando possibile - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Richiedi crittografia - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{140, -1}, {314, 18}} - - YES - - 67108864 - 0 - Consenti login multipli - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Login multipli: - - - - - - NO - 1 - - - - 264 - {{140, 125}, {314, 18}} - - YES - - 67108864 - 0 - Controlla se è presente nuova posta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 87}, {314, 34}} - - YES - - 67108864 - 0 - Usa sempre il server di prossimità per i 
trasferimenti di documenti e per l’IM diretto - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Server di accesso: - - - - - - NO - 1 - - - - 264 - {{142, 153}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{401, 152}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{347, 155}, {49, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{-3, 127}, {140, 17}} - - YES - - 67108864 - 71303168 - Posta elettronica: - - - - - - NO - 1 - - - - 264 - {{-3, 95}, {140, 17}} - - YES - - 67108864 - 71303168 - Proxy AOL: - - - - - - NO - 1 - - - - 264 - {{-3, 64}, {140, 17}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - - - NO - 1 - - - {452, 175} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index b728906..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 3ce7109..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,723 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome utente: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{191, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registra un nuovo account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2e73796..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index d64b3a8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1462 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{127, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Nessuna crittografia - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Usa crittografia quando possibile - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Richiedi crittografia - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 41}, {140, 17}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 109}, {140, 17}} - - YES - - 67108864 - 71303168 - Codifica: - - - - - - NO - 1 - - - - 264 - {{124, 103}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 137}, {54, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{127, 135}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{391, 135}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 137}, {140, 17}} - - YES - - 67108864 - 71303168 - Server di accesso: - - - - - - NO - 1 - - - - 264 - {{125, 64}, {319, 34}} - - YES - - 67108864 - 0 - Usa sempre il server di prossimità
per i trasferimenti di documenti - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 72}, {140, 17}} - - YES - - 67108864 - 71303168 - Proxy AOL: - - - - - - NO - 1 - - - {442, 157} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{130, 24}, {361, 18}} - - YES - - 67108864 - 0 - Notifica agli altri quando stai digitando un messaggio - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{16, 25}, {111, 17}} - - YES - - 67108864 - 71303168 - In digitazione: - - - - - - NO - 1 - - - - 264 - {{130, -1}, {342, 18}} - - YES - - 67108864 - 0 - Consenti a chiunque di vedere il mio stato dal web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{16, 0}, {111, 17}} - - YES - - 67108864 - 71303168 - Visibilità web: - - - - - - NO - 1 - - - - 264 - {{28, 54}, {99, 17}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - - - NO - 1 - - - - 264 - {{129, 48}, {342, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {509, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index b64c542..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 25475f2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3740 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 62}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {104, 17}} - - YES - - 67108864 - 71303168 - Nome utente: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {311, 22}} - - YES - - -1804599231 - 4195328 - - - nomeutente@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {311, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{243, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registra un nuovo account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {203, 14}} - - YES - - 67108864 - 272629760 - Registrazione in corso… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{186, 132}, {231, 18}} - - YES - - 67108864 - 0 - Permetti autenticazione in chiaro - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{186, 112}, {260, 18}} - - YES - - 67108864 - 0 - Forza autenticazione SSL vecchio stile - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{186, 179}, {251, 18}} - - YES - - 67108864 - 0 - Mostra notifiche di posta elettronica - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{189, 317}, {252, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{47, 319}, {140, 17}} - - YES - - 67108864 - 71303168 - Server BOSH: - - - - - - NO - 1 - - - - 264 - {{189, 344}, {252, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 346}, {170, 17}} - - YES - - 67108864 - 71303168 - Server di connessione: - - - - - - NO - 1 - - - - 264 - {{189, 280}, {252, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 280}, {170, 34}} - - YES - - 67108864 - 71303168 - Proxy per il trasferimento di documenti: - - - - - - NO - 1 - - - - 264 - {{368, 248}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{313, 250}, {50, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{189, 248}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{47, 250}, {137, 17}} - - YES - - 67108864 - 71303168 - Risorsa: - - - - - - NO - 1 - - - - 264 - {{43, 180}, {140, 17}} - - YES - - 67108864 - 71303168 - Posta: - - - - - - NO - 1 - - - - 264 - {{43, 133}, {140, 17}} - - YES - - 67108864 - 71303168 - Sicurezza: - - - - - - NO - 1 - - - - 256 - {{70, 206}, {114, 34}} - - YES - - 67108864 - 71303168 - Priorità stato
Presente: - - - - - - NO - 1 - - - - 256 - {{189, 205}, {73, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{272, 206}, {91, 34}} - - YES - - 67108864 - 71303168 - Priorità stato
Assente: - - - - - - NO - 1 - - - - 256 - {{368, 205}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{185, 42}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Chiedi che cosa fare - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accetta - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accetta e aggiungi alla lista - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Rifiuta - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{5, 48}, {178, 17}} - - YES - - 67108864 - 71303168 - Sottoscrizioni di presenza: - - - - - - NO - 1 - - - - 268 - {{29, 21}, {207, 17}} - - YES - - 67108864 - 71303168 - …aggiungi alla lista nel gruppo: - - - - - - NO - 1 - - - - 266 - {{241, 16}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5ODU2AA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{186, 92}, {143, 18}} - - YES - - 67108864 - 0 - Richiedi SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{186, 72}, {273, 18}} - - YES - - 67108864 - 0 - Effettua verifica completa del certificato - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{94, 157}, {89, 17}} - - YES - - 68157504 - 71304192 - Emoticon: - - - - - - NO - 1 - - - - 268 - {{186, 156}, {225, 18}} - - YES - - 67108864 - 0 - Mostra emoticon personalizzate - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {477, 379} - NSView - NSResponder - - - - 256 - - - - 264 - {{120, 23}, {361, 18}} - - YES - - 67108864 - 0 - Notifica agli altri quando stai digitando un messaggio - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{12, 25}, {105, 17}} - - YES - - 67108864 - 71303168 - In digitazione: - - - - - - NO - 1 - - - - 264 - {{12, 51}, {105, 20}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - - - NO - 1 - - - - 264 - {{119, 47}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {100, 17}} - - YES - - 67108864 - 71303168 - Musica: - - - - - - NO - 1 - - - - 264 - {{120, -2}, {331, 18}} - - YES - - 67108864 - 0 - Notifica agli altri cosa viene riprodotto da iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {499, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Pannello - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {286, 17}} - - YES - - 67108864 - 272629760 - Inserisci l’indirizzo del tuo server XMPP qui: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{355, 277}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {51, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {268, 17}} - - YES - - 67108864 - 272629760 - o seleziona un server pubblico dalla lista: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Nome del server - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Richiedi nuovo account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Annulla - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 228} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{247, 58}, {188, 19}} - - YES - - -2080374784 - 134217728 - Visita la homepage del server - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{339, 111}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1335b7f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index dfb5aec..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 67}, {273, 18}} - - YES - - 67108864 - 0 - Consenti connessioni dirette - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{402, 113}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 115}, {140, 17}} - - YES - - 67108864 - 71303168 - Server di accesso: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 113}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 43}, {273, 18}} - - YES - - 67108864 - 0 - Controlla se è presente nuova posta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 44}, {140, 17}} - - YES - - 67108864 - 71303168 - Posta elettronica: - - - - - - NO - 1 - - - - 264 - {{347, 115}, {50, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{140, 89}, {273, 18}} - - YES - - 67108864 - 0 - Connetti via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 20}, {74, 17}} - - YES - - 68157504 - 71304192 - Emoticon: - - - - - - NO - 1 - - - - 268 - {{140, 19}, {225, 18}} - - YES - - 67108864 - 0 - Mostra emoticon personalizzate - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {479, 135} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nome visualizzato: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{130, 24}, {361, 18}} - - YES - - 67108864 - 0 - Notifica agli altri quando stai digitando un messaggio - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {110, 17}} - - YES - - 67108864 - 71303168 - In digitazione: - - - - - - NO - 1 - - - - 264 - {{11, 50}, {116, 21}} - - YES - - 67108864 - 71303168 - Crittografia: - - - - - - NO - 1 - - - - 264 - {{129, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{17, 0}, {110, 17}} - - YES - - 67108864 - 71303168 - Musica: - - - - - - NO - 1 - - - - 264 - {{130, -1}, {331, 18}} - - YES - - 67108864 - 0 - Notifica agli altri cosa viene riprodotto da iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {509, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0100bfa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 09b13aa..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Utente: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Accesso: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {344, 18}} - - YES - - 67108864 - 0 - Forza l’accesso (ignora reindirizzamenti del server) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Nascondi identità del client - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {491, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1d4bf45..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 028c5a5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome utente: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {44, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{402, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {472, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 886d626..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 298c22d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{176, -1}, {231, 18}} - - YES - - 67108864 - 0 - Rendi pubblico a tutti il tuo stato - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{176, 78}, {315, 18}} - - YES - - 67108864 - 0 - Usa UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{176, 104}, {112, 18}} - - YES - - 67108864 - 0 - Usa proxy SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{294, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{50, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Connessione: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {176, 17}} - - YES - - 67108864 - 71303168 - Utente di autorizzazione: - - - - - - NO - 1 - - - - 264 - {{50, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Stato: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {176, 17}} - - YES - - 67108864 - 71303168 - Dominio di autorizzazione: - - - - - - NO - 1 - - - - 256 - {{178, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{178, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {454, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7f44a13..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 6b89e6f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,602 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{381, 72}, {47, 17}} - - YES - - 67108864 - 71303168 - Porta: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{433, 69}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{31, 18}, {140, 17}} - - YES - - 67108864 - 71303168 - Posta elettronica: - - - - - - NO - 1 - - - - 264 - {{176, 70}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{31, 71}, {140, 17}} - - YES - - 67108864 - 71303168 - Server di accesso: - - - - - - NO - 1 - - - - 264 - {{174, 18}, {262, 18}} - - YES - - 67108864 - 0 - Controlla se è presente nuova posta - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{9, 43}, {162, 17}} - - YES - - 67108864 - 71303168 - Server lista delle stanze: - - - - - - NO - 1 - - - - 264 - {{173, 37}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {484, 91} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 76e5313..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index b998cc7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1307 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 147}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome utente: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 145}, {270, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 0}, {364, 135}} - - YES - - 71303168 - 4194304 - WmVwaHlyIHJpY2hpZWRlIHVuYSBjb3JyZXR0YSBjb25maWd1cmF6aW9uZSBkaSBLZXJiZXJvcy4gWmVw -aHlyIHVzYSBpbCB0dW8gVUlEIFVuaXggbyBpbCB0dW8gbm9tZSBzdSBLZXJiZXJvczsgaWwgbm9tZSB1 -dGVudGUgcXVpIHNvcHJhIMOoIHVuaWNhbWVudGUgcGVyIHVzbyBpbnRlcm5vIGRpIEFkaXVtLiBTaSBy -YWNjb21hbmRhIHVuYSBzb2xhIGNvbm5lc3Npb25lIHNpbXVsdGFuZWEgYSBaZXBoeXIuClVzYXJlIGwn -SG9zdCBNYW5hZ2VyIGludGVybm8gY3JlZXLDoCB1biBjb25mbGl0dG8gY29uIHF1YWxzaWFzaSBhbHRy -YSBpc3RhbnphIGRlbGwnSG9zdCBNYW5hZ2VyIFplcGh5ciAoemhtKSBpbiBlc2VjdXppb25lIHN1IHF1 -ZXN0byBjb21wdXRlci4 - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 167} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, -1}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Esporta su .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Esporta su .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Esposizione: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codifica: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Esporta: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5ODU2AA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Host manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Usa host manager interno - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {402, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1db8219..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/Localizable.strings deleted file mode 100644 index 8e04c87..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/it.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 34c64d1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chat Room Name: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Password: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separate contacts‘ names with commas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Invite Contacts: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - With Message: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f0de18d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 139a4f4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{1, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - トピック: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 7}, {247, 14}} - - YES - - 67108864 - 4194304 - コンマを使ってメンバー名を区切ってください。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{126, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-2, 64}, {123, 17}} - - YES - - 67108864 - 71303168 - 招待するメンバー: - - - - - - NO - 1 - - - - 256 - {{126, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 435d5f1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 69dec8e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,468 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 159}, {125, 17}} - - YES - - 67108864 - 71303168 - チャットルーム名: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{127, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{127, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{2, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - メッセージ: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {125, 17}} - - YES - - 67108864 - 71303168 - 招待するメンバー: - - - - - - NO - 1 - - - - 256 - {{127, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{124, 75}, {240, 14}} - - YES - - 67108864 - 4194304 - コンマを使ってメンバー名を区切ってください。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {403, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 61608dc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 4445975..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,458 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 155}, {126, 17}} - - YES - - 67108864 - 71303168 - チャットルーム名: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{131, 153}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{131, 7}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{6, 47}, {120, 17}} - - YES - - 67108864 - 71303168 - メッセージ: - - - - - - NO - 1 - - - - 256 - {{128, 71}, {239, 14}} - - YES - - 67108864 - 4194304 - コンマを使ってメンバー名を区切ってください。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{131, 85}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{0, 125}, {126, 17}} - - YES - - 67108864 - 71303168 - 招待するメンバー: - - - - - - NO - 1 - - - {409, 176} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 3bec519..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 1351ced..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - クラス: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - インスタンス: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - 受信者: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 52fbadc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index e396201..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - 256 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index a9f0f43..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 6f8c47d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profile: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers and Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 9910635..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index dcab19c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - 暗号化: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - パスワード: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - ユーザ名: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - 新規アカウントを作成 - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 11bf923..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 5ef5538..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index bf7910a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 883b1e5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7fac0e7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 1357828..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Display Name: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index f282fcd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index d0d7655..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,688 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - ユーザ名: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - パスワード: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {184, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - サーバ: - - - - - - NO - 1 - - - - 264 - {{331, 39}, {61, 17}} - - YES - - 67108864 - 71303168 - ポート: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - ログイン: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {256, 18}} - - YES - - 67108864 - 0 - ログインを強制(リダイレクトを無視) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {256, 18}} - - YES - - 67108864 - 0 - クライアントのアイデンティティを隠す - - - 1211912448 - 2 - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index b64fb20..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 71d3226..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{122, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-23, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - 44Om44O844K25ZCN77yaCg - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-23, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - パスワード: - - - - - - NO - 1 - - - - 264 - {{122, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{122, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-23, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - サーバ: - - - - - - NO - 1 - - - - 264 - {{333, 39}, {56, 17}} - - YES - - 67108864 - 71303168 - ポート: - - - - - - NO - 1 - - - - 264 - {{390, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 83bb34a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index edee8a6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 2 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - 状態を全員に公開 - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - UDP を使用 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {148, 18}} - - YES - - 67108864 - 0 - SIP プロキシを使用: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{302, 102}, {124, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - 接続: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - ユーザ名: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - プライバシー: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - ドメイン名: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - パスワード:  - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - ユーザ名: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - サーバ: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7838e53..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index e47a33c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,603 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{348, 72}, {57, 17}} - - YES - - 67108864 - 71303168 - ポート: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{408, 70}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-2, 19}, {140, 17}} - - YES - - 67108864 - 71303168 - メール: - - - - - - NO - 1 - - - - 264 - {{143, 70}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-2, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - ログインサーバ: - - - - - - NO - 1 - - - - 264 - {{141, 18}, {152, 18}} - - YES - - 67108864 - 0 - 新着メールをチェック - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-2, 44}, {140, 17}} - - YES - - 67108864 - 71303168 - ルームリストサーバ: - - - - - - NO - 1 - - - - 264 - {{140, 38}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {477, 92} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4f563c6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index e0af024..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - ユーザ名: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - WmVwaHlyIOOCkuS9v+eUqOOBmeOCi+OBq+OBr+OAgeato+OBl+OBj+ioreWumuOBleOCjOOBnyBaZXBo -eXIgaG9zdCBtYW5hZ2Vy77yIWmVwaHlyIOODm+OCueODiOeuoeeQhu+8m3pobe+8ieOBjOWun+ihjOOB -leOCjOOBpuOBhOOCi+W/heimgeOBjOOBguOCiuOBvuOBmeOAgumBqeWIh+OBq+ioreWumuOBleOCjOOB -nyBLZXJiZXJvcyDjgoLlv4XopoHjgafjgZnjgIIKWmVwaHlyIOOBryBVTklYIFVJRCDjgb7jgZ/jga8g -S2VyYmVyb3Mg5ZCN44KS5L2/55So44GX44G+44GZ44Gu44Gn44CB5LiK6KiY44Gu44Om44O844K25ZCN -44GvIEFkaXVtIOOBruOBn+OCgeOBruOBv+OBp+OBmeOAggrlkIzmmYLjgasgMSDjgaTjga7mjqXntprj -gaDjgZHjgpLjgYrli6fjgoHjgZfjgb7jgZnjgII - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - .zephyr.subs に書き出す - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - .anyone に書き出す - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - エキスポージャー: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - エンコーディング: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - 書き出し: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - サーバ - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 316669952 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {223, 58}} - - - - - 4 - - - - 256 - {{224, 1}, {15, 58}} - - YES - NO - - _doScroller: - 0.30526316165924072 - - - - 256 - {{-100, -100}, {128, 15}} - - YES - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133842 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - サーバ: - - - - - - NO - 1 - - - - 36 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 36 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - ホストマネージャ: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - 内蔵のホストマネージャを使用 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index ac46dcd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/Localizable.strings deleted file mode 100644 index 68aa59a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ja.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/missing_image.png b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/missing_image.png deleted file mode 100644 index 65c0dd1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/missing_image.png and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 205e500..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{34, 264}, {83, 17}} - - YES - - 67108864 - 71303168 - Samtalerom: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{68, 234}, {49, 17}} - - YES - - 67108864 - 71303168 - Tjener: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{46, 204}, {71, 17}} - - YES - - 67108864 - 71303168 - Referanse: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{59, 174}, {58, 17}} - - YES - - 67108864 - 71303168 - Passord: - - - - - - NO - 1 - - - - 256 - {{119, 85}, {173, 17}} - - YES - - 67108864 - 4194304 - Separer kontakter med komma. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{4, 141}, {113, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{11, 63}, {106, 17}} - - YES - - 67108864 - 71303168 - Med meldingen: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index fc3a79a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 24b4f40..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{77, 91}, {43, 17}} - - YES - - 67108864 - 71303168 - Emne: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 4}, {173, 17}} - - YES - - 67108864 - 4194304 - Separer kontakter med komma. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{7, 64}, {113, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2394579..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 31bc992..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{34, 159}, {83, 17}} - - YES - - 67108864 - 71303168 - Samtalerom: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{11, 50}, {106, 17}} - - YES - - 67108864 - 71303168 - Med meldingen: - - - - - - NO - 1 - - - - 256 - {{4, 132}, {113, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 72}, {173, 17}} - - YES - - 67108864 - 4194304 - Separer kontakter med komma. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0bb5e3d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index a2518de..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{35, 149}, {83, 17}} - - YES - - 67108864 - 71303168 - Samtalerom: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{12, 41}, {106, 17}} - - YES - - 67108864 - 71303168 - Med meldingen: - - - - - - NO - 1 - - - - 256 - {{120, 62}, {173, 17}} - - YES - - 67108864 - 4194304 - Separer kontakter med komma. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{5, 119}, {113, 17}} - - YES - - 67108864 - 71303168 - Inviter kontakter: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c4784e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index f1f62e8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{68, 69}, {49, 17}} - - YES - - 67108864 - 71303168 - Klasse: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{42, 39}, {75, 17}} - - YES - - 67108864 - 71303168 - Forekomst: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{52, 9}, {65, 17}} - - YES - - 67108864 - 71303168 - Mottaker: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7d84e39..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 42d4680..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1218 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{12, 2}, {58, 17}} - - YES - - 67108864 - 71303168 - Passord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{1, 58}, {69, 17}} - - YES - - 67108864 - 71303168 - Kallenavn: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - kallenavn - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (valgfritt) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.tjener.com - - YES - - - - NO - 1 - - - - 264 - {{-1, 30}, {71, 17}} - - YES - - 67108864 - 71303168 - Vertsnavn: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {201, 18}} - - YES - - 67108864 - 0 - Krypter forbindelse med SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 158}, {401, 14}} - - YES - - 68157504 - 272761856 - En per linje, / er valgfri. $me vil bli erstattet med ditt gjeldende kallenavn. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {447, 182}} - - - - {{-2, -4}, {449, 198}} - - {0, 0} - - 67108864 - 0 - Utfør kommandoer ved tilkobling: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{85, 209}, {53, 17}} - - YES - - 67108864 - 71303168 - Koding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{39, 34}, {91, 17}} - - YES - - 68157504 - 272630784 - Virkelig navn: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{6, 2}, {124, 17}} - - YES - - 68157504 - 272630784 - Brukernavn (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index e4bd2d2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index abdc190..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - QWxpYXM6Cg - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Bruk kryptering - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Bruk kryptering hvis tilgjengelig - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Se etter nye meldinger - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Bruk alltid mellomtjener til filoverføringer og direktemeldinger - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Innloggingstjener: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL-mellomtjener: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 04befe0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index b55d4b2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,701 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Passord: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Brukernavn: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrer ny konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index bcffccb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index f854e33..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1173 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{131, 5}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Ingen kryptering - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Bruk kryptering hvis tilgjengelig - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Krev kryptering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-12, 46}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kryptering - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-12, 99}, {140, 17}} - - - YES - - 67108864 - 71303168 - Koding: - - - - - - NO - 1 - - - - 264 - {{130, 93}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{338, 127}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{133, 125}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{377, 125}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-12, 127}, {140, 17}} - - - YES - - 67108864 - 71303168 - Påloggingstjener: - - - - - - NO - 1 - - - - 264 - {{132, 70}, {293, 18}} - - - YES - - 67108864 - 0 - Alltid bruk mellomtjener for filoverføringer - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-12, 71}, {140, 17}} - - - YES - - 67108864 - 71303168 - AOL-mellomtjener: - - - - - - NO - 1 - - - {438, 147} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - La andre vite at du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Skriving: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - La hvem som helst på nettet se min status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Nettbevisst: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 322 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index ffc8b2a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 6869d47..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{63, 65}, {58, 17}} - - YES - - 67108864 - 71303168 - Passord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{41, 90}, {80, 17}} - - YES - - 67108864 - 71303168 - Brukernavn: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - brukernavn@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrer ny konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registrerer… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{213, 160}, {204, 18}} - - YES - - 67108864 - 0 - Tillat godkjenning i klartekst - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{213, 132}, {227, 18}} - - YES - - 67108864 - 0 - Tving gjennom gammeldags SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{213, 216}, {156, 18}} - - YES - - 67108864 - 0 - Vis nye e-postvarsler - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{215, 326}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{123, 326}, {87, 17}} - - YES - - 67108864 - 71303168 - BOSH-tjener: - - - - - - NO - 1 - - - - 264 - {{215, 354}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{108, 356}, {102, 17}} - - YES - - 67108864 - 71303168 - Koble til tjener: - - - - - - NO - 1 - - - - 264 - {{215, 298}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{15, 300}, {195, 17}} - - YES - - 67108864 - 71303168 - Mellomtjener for filoverføring: - - - - - - NO - 1 - - - - 264 - {{382, 270}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{339, 272}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{215, 270}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{70, 272}, {140, 17}} - - YES - - 67108864 - 71303168 - Ressurs: - - - - - - NO - 1 - - - - 264 - {{175, 217}, {35, 17}} - - YES - - 67108864 - 71303168 - Post: - - - - - - NO - 1 - - - - 264 - {{143, 161}, {67, 17}} - - YES - - 67108864 - 71303168 - Sikkerhet: - - - - - - NO - 1 - - - - 256 - {{68, 245}, {142, 17}} - - YES - - 67108864 - 71303168 - Tilgjengelig-prioritet: - - - - - - NO - 1 - - - - 256 - {{215, 242}, {56, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{276, 229}, {101, 34}} - - YES - - 67108864 - 71303168 - Borte-prioritet: - - - - - - NO - 1 - - - - 256 - {{382, 242}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{212, 42}, {246, 26}} - - YES - - -2076180416 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Spør hva skal gjøres - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Godta - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Godta og legg til på listen - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Avvis - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{29, 48}, {181, 17}} - - YES - - 67108864 - 71303168 - Abonner på tilstedeværelse: - - - - - - NO - 1 - - - - 268 - {{62, 20}, {148, 17}} - - YES - - 67108864 - 71303168 - ...legg til i gruppeliste: - - - - - - NO - 1 - - - - 266 - {{215, 16}, {243, 26}} - - YES - - 342884416 - 272630784 - - - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{213, 104}, {104, 18}} - - YES - - 67108864 - 0 - Krev SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{213, 76}, {228, 18}} - - YES - - 67108864 - 0 - Utfør strenge sertifikatkontroller - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{118, 189}, {92, 17}} - - YES - - 68157504 - 272630784 - Humørikoner: - - - - - - NO - 1 - - - - 268 - {{213, 188}, {218, 18}} - - YES - - 67108864 - 0 - Vis egendefinerte humørikoner - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {475, 376} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {187, 18}} - - YES - - 67108864 - 0 - La andre vite at du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{28, 25}, {59, 17}} - - YES - - 67108864 - 71303168 - Skriving: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{34, 0}, {53, 17}} - - YES - - 67108864 - 71303168 - Musikk: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {218, 18}} - - YES - - 67108864 - 0 - La andre vite hva iTunes spiller - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Enten oppgi din XMPP-tjeneradresse her: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Tjener: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {243, 17}} - - YES - - 67108864 - 272629760 - eller velg en offentlig tjener fra listen: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Tjenernavn - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{302, 12}, {139, 32}} - - YES - - 67108864 - 134217728 - Be om ny konto - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Avbryt - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{278, 58}, {157, 19}} - - YES - - -2080374784 - 134217728 - Besøk tjenerens nettside - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{0, 512}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index ab95a88..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 36e3d17..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1183 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 85}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 87}, {140, 17}} - - - YES - - 67108864 - 71303168 - Påloggingstjener: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - - YES - - 67108864 - 0 - Se etter ny post - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 22}, {140, 17}} - - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 41}, {273, 18}} - - - YES - - 67108864 - 0 - Tillatt direkte tilkoblinger - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 61}, {273, 18}} - - - YES - - 67108864 - 0 - Koble til med HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{45, 2}, {92, 17}} - - - YES - - 68157504 - 272630784 - Humørikoner: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {218, 18}} - - YES - - 67108864 - 0 - Vis egendefinerte humørikoner - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - - NSView - NSResponder - - - - 258 - - - - 264 - {{6, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Visningsnavn: - - - - - - NO - 1 - - - {347, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 32}, {187, 18}} - - YES - - 67108864 - 0 - La andre vite at du skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 33}, {52, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{11, 62}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{88, 56}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, 8}, {75, 17}} - - YES - - 67108864 - 71303168 - Musikk: - - - - - - NO - 1 - - - - 264 - {{89, 7}, {218, 18}} - - YES - - 67108864 - 0 - La andre vite hva iTunes spiller - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 86} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 62e8eb9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index f87324a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Bruker: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Passord: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Tjener: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{73, 39}, {64, 17}} - - YES - - 67108864 - 71303168 - Logg inn: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {303, 18}} - - YES - - 67108864 - 0 - Tvungen innlogging (Overser videresending) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {145, 18}} - - YES - - 67108864 - 0 - Skjul klientidentitet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {461, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 13b7ffc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index e6cdbdf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Brukernavn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Passord: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Tjener: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1e5a1bc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index bc6eb21..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{186, 19}, {188, 18}} - - YES - - 67108864 - 0 - Publiser status til alle - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{186, 98}, {315, 18}} - - YES - - 67108864 - 0 - Bruk UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{185, 150}, {168, 18}} - - YES - - 67108864 - 0 - Bruk SIP-mellomtjener: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{187, 122}, {196, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{60, 151}, {123, 17}} - - YES - - 67108864 - 71303168 - Tilkobling: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{28, 70}, {155, 17}} - - YES - - 67108864 - 71303168 - Bruker for godkjenning: - - - - - - NO - 1 - - - - 264 - {{60, 20}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{17, 45}, {166, 17}} - - YES - - 67108864 - 71303168 - Domene for godkjenning: - - - - - - NO - 1 - - - - 256 - {{188, 68}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{188, 43}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {403, 170} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Passord: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Skjermnavn: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Tjener: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index b2ef421..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index f7b596e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,712 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Innloggingstjener: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Se etter ny e-post - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Romlistetjener: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index ac06e2f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index bfeccac..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Brukernavn: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr krever en riktig konfigurert installasjon av Kerberos. Zephyr bruker din UNIX UID eller Kerberos-navnet ditt; brukernavnet over er bare for intern bruk av Adium. Bare én oppkobling til Zephyr er anbefalt om gangen. Å bruke den interne vertsbehandleren vli gi konflikter med alle andre 'zhm'-forekomster på denne maskinen. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Eksporter til .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Eksporter til .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Eksponering: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Tekstkoding: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Eksport: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Tjener - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Tjenere: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Vertsbehandler: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Bruk intern vertsbehandler - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 664dec5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/Localizable.strings deleted file mode 100644 index 10763cb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nb.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index a21f3c9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - U moet Adium toestemming geven om met Facebook Chat te verbinden. Er zal een beveiligd Facebook inlogscherm geopend worden als u op Sta toegang toe klikt. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Hier komt de huidige statusinformatie - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Sta toegang toe - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 87d405a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 6d7c6f9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{151, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {149, 17}} - - YES - - 67108864 - 71303168 - Naam gespreksruimte: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{151, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {149, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{151, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {149, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{151, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {149, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - - - - - NO - 1 - - - - 256 - {{148, 88}, {273, 14}} - - YES - - 67108864 - 4194304 - Scheid namen van contacten met komma's. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {149, 17}} - - YES - - 67108864 - 71303168 - Inactieve contacten: - - - - - - NO - 1 - - - - 256 - {{151, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {149, 17}} - - YES - - 67108864 - 71303168 - Met bericht: - - - - - - NO - 1 - - - - 256 - {{151, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {438, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 77d8ace..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index aa90cf0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{17, 90}, {120, 17}} - - YES - - 67108864 - 71303168 - Onderwerp: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{134, 6}, {260, 14}} - - YES - - 67108864 - 4194304 - Scheid namen van contacten met komma's. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{137, 20}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 63}, {139, 17}} - - YES - - 67108864 - 71303168 - Nodig contacten uit: - - - - - - NO - 1 - - - - 256 - {{137, 88}, {254, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {406, 111} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 778a653..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 3f3b25c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {151, 17}} - - YES - - 67108864 - 71303168 - Naam gespreksruimte: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{153, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{153, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {151, 17}} - - YES - - 67108864 - 71303168 - Met bericht: - - - - - - NO - 1 - - - - 256 - {{-3, 130}, {151, 19}} - - YES - - 67108864 - 71303168 - Nodig contacten uit: - - - - - - NO - 1 - - - - 256 - {{153, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 75}, {272, 14}} - - YES - - 67108864 - 4194304 - Scheid namen van contacten met komma's. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {425, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 5954e65..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index f6d7c43..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 148}, {155, 17}} - - YES - - 67108864 - 71303168 - Naam gespreksruimte: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{158, 146}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{158, 0}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 40}, {155, 17}} - - YES - - 67108864 - 71303168 - Met bericht: - - - - - - NO - 1 - - - - 256 - {{155, 64}, {272, 14}} - - YES - - 67108864 - 4194304 - Scheid namen van contacten met komma's. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{158, 78}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 117}, {155, 18}} - - YES - - 67108864 - 71303168 - Nodig contacten uit: - - - - - - NO - 1 - - - {428, 169} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 3b9b8a1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 828de36..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Klasse: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instantie: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Ontvanger: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 4e56ac4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index c4b9e0f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1411 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-50, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-50, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Schuilnaam: - - - - - - NO - 1 - - - - 264 - {{95, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - schuilnaam - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{95, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optioneel) - - YES - - - - NO - 1 - - - - 264 - {{95, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.nl - - YES - - - - NO - 1 - - - - 264 - {{18, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {335, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Codeer verbinding met SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{93, 236}, {44, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Eén per regel, / is optioneel. $me wordt vervangen met huidige schuilnaam. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {409, 131} - - - - - - - - - - - - - 38 - - - - 409 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {409, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Voer commando's uit bij verbinden: - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{165, 37}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{79, 40}, {81, 17}} - - YES - - 68157504 - 272630784 - Echte naam: - - - - - - NO - 1 - - - - 268 - {{165, 5}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{3, 9}, {157, 17}} - - YES - - 68157504 - 272630784 - Gebruikersnaam (Ident): - - - - - - NO - 1 - - - {370, 62} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 62fef6a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 0c704a9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profiel: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Geen codering - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Gebruik codering indien beschikbaar - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Vereis codering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Geen codering - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Gebruik codering indien beschikbaar - - - - - - NO - 1 - - - - 264 - {{123, 112}, {204, 18}} - - YES - - 67108864 - 0 - Controleer op nieuwe mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {404, 18}} - - YES - - 67108864 - 0 - Gebruik altijd proxy voor bestandsoverdrachten en Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Inlog server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{382, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {47, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL proxy-server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - {525, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 259 - - - - - 258 - - - - - 257 - - - - - 256 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index ed9ad33..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index caab8eb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Gebruikersnaam: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registreer nieuwe account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 795c520..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index f455967..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1524 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Geen codering - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Radio - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Vereis codering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 41}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codering: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 94}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{124, 88}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 122}, {43, 17}} - - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{127, 120}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{380, 120}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 122}, {140, 17}} - - - YES - - 67108864 - 71303168 - Inlog server: - - - - - - NO - 1 - - - - 264 - {{126, 65}, {324, 18}} - - - YES - - 67108864 - 0 - Gebruik altijd proxy voor bestandsoverdrachten - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 66}, {140, 17}} - - - YES - - 67108864 - 71303168 - AOL proxy-server: - - - - - - NO - 1 - - - {457, 142} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Laat anderen weten dat u typt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typen: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {293, 18}} - - YES - - 67108864 - 0 - Laat iedereen mijn status zien op het Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 322 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - checkBox_broadcastMusic - NSButton - - - checkBox_broadcastMusic - - checkBox_broadcastMusic - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 73db35d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index e7ea296..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{29, 65}, {92, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{5, 90}, {116, 17}} - - YES - - 67108864 - 71303168 - Gebruikersnaam: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - gebruikersnaam@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registreer nieuwe account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registreert... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{186, 112}, {244, 18}} - - YES - - 67108864 - 0 - Sta platte-tekst autenticatie toe - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{186, 92}, {163, 18}} - - YES - - 67108864 - 0 - Forceer oude-stijl SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{186, 159}, {246, 18}} - - YES - - 67108864 - 0 - Geef melding nieuwe mail weer - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{188, 282}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{43, 284}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{188, 310}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{43, 312}, {140, 17}} - - YES - - 67108864 - 71303168 - Verbindingsserver: - - - - - - NO - 1 - - - - 264 - {{188, 252}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 254}, {186, 17}} - - YES - - 67108864 - 71303168 - Bestandsoverdracht proxy's: - - - - - - NO - 1 - - - - 264 - {{355, 222}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{312, 224}, {38, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{188, 222}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{43, 224}, {140, 17}} - - YES - - 67108864 - 71303168 - Bron: - - - - - - NO - 1 - - - - 264 - {{43, 160}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{43, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Beveiliging: - - - - - - NO - 1 - - - - 256 - {{69, 191}, {114, 17}} - - YES - - 67108864 - 71303168 - Prioriteit beschikbaar: - - - - - - NO - 1 - - - - 256 - {{188, 188}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{259, 191}, {91, 17}} - - YES - - 67108864 - 71303168 - Prioriteit afwezig: - - - - - - NO - 1 - - - - 256 - {{355, 187}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{185, 22}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Vraag wat te doen - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accepteer - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accepteer en voeg toe aan lijst - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Weiger - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{-3, 28}, {186, 17}} - - YES - - 67108864 - 71303168 - Aanwezigheid abonnement: - - - - - - NO - 1 - - - - 268 - {{94, 1}, {142, 17}} - - YES - - 67108864 - 71303168 - ...voeg toe aan lijst in groep: - - - - - - NO - 1 - - - - 266 - {{241, -4}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{186, 72}, {143, 18}} - - YES - - 67108864 - 0 - Vereis SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{186, 52}, {244, 18}} - - YES - - 67108864 - 0 - Doe strikte certificaat controles - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{109, 137}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{186, 136}, {244, 18}} - - YES - - 67108864 - 0 - Geef aangepaste emoticons weer - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {430, 332} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Laat anderen weten dat u typt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typen: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{24, 0}, {63, 17}} - - YES - - 67108864 - 71303168 - Muziek: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Laat anderen weten wat iTunes speelt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Voer óf uw XMPP serveradres hier in: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{345, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{293, 280}, {47, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {280, 17}} - - YES - - 67108864 - 272629760 - óf kies een publieke server van de lijst: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server naam - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{247, 12}, {194, 32}} - - YES - - 67108864 - 134217728 - Verzoek nieuwe account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Annuleer - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 228} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{253, 58}, {182, 19}} - - YES - - -2080374784 - 134217728 - Bezoek server homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1920, 1178}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index db78641..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index f860dd6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1517 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 91}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{19, 93}, {97, 17}} - - - YES - - 67108864 - 71303168 - Inlog server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{121, 91}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{119, 23}, {273, 18}} - - - YES - - 67108864 - 0 - Controleer op nieuwe mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{7, 24}, {109, 17}} - - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{326, 93}, {55, 17}} - - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - - YES - - 67108864 - 0 - Sta directe verbindingen toe - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{119, 67}, {273, 18}} - - - YES - - 67108864 - 0 - Verbind via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{31, 0}, {85, 17}} - - - YES - - 68157504 - 71304192 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{119, -1}, {273, 18}} - - YES - - 67108864 - 0 - Geef aangepaste emoticons weer - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 113} - - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Schermnaam: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Laat anderen weten dat u typt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typen: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, 0}, {75, 17}} - - YES - - 67108864 - 71303168 - Muziek: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Laat anderen weten wat iTunes speelt - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 307 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 332a9bd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 31381a8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Gebruiker: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{26, 39}, {89, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{118, 18}, {286, 18}} - - YES - - 67108864 - 0 - Forceer login (negeer server omleidingen) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{118, 38}, {250, 18}} - - YES - - 67108864 - 0 - Verberg identiteit client - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 96512cb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 24c8ea3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{132, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-1, 69}, {128, 17}} - - YES - - 67108864 - 71303168 - Gebruikersnaam: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-1, 9}, {128, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - - - - - NO - 1 - - - - 264 - {{132, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{132, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-1, 39}, {128, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{343, 39}, {42, 17}} - - YES - - 67108864 - 71303168 - Poort: - - - - - - NO - 1 - - - - 264 - {{390, 39}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8e51902..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 84cd45e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {212, 18}} - - YES - - 67108864 - 0 - Publiceer status naar iedereen - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Gebruik UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {138, 18}} - - YES - - 67108864 - 0 - Gebruik SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{291, 102}, {135, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Verbinding: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Toestemming gebruiker: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Toestemming domein: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Wachtwoord: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Schermnaam: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index d7b8e40..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index a17a2d8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {43, 17}} - - YES - - 67108864 - 71303168 - Poort: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{395, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Inlog server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {204, 18}} - - YES - - 67108864 - 0 - Controleer op nieuwe mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Kamerlijst server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 3cc3d78..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 1287289..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1228 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 160}, {140, 17}} - - YES - - 67108864 - 71303168 - Gebruikersnaam: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 158}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 117}} - - YES - - 71303168 - 4194304 - Zephyr vereist een juiste Kerberos configuratie. Zephyr gebruikt uw UNIX UID of uw Kerberos naam; de gebruikersnaam hierboven is enkel voor intern gebruik door Adium. Slechts één gelijktijdige Zephyr verbinding wordt aangeraden. Gebruik van de interne host manager zal botsen met alle andere 'zhm' instanties die op deze machine draaien. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {432, 180} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exporteer naar .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exporteer naar .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Blootstelling: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Codering: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exporteer: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {244, 18}} - - YES - - 67108864 - 0 - Gebruik interne host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 48fa6f8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/Localizable.strings deleted file mode 100644 index e7cca0d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/nl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 5437caf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Pokój rozmów: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Serwer: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Identyfikator: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddziel nazwy kontaktów przecinkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Zaproś: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Wiadomość: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7415297..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index a9f5220..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Temat: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddziel nazwy kontaktów przecinkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Zaproś: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e991b14..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 7ef54ea..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Pokój rozmów: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Wiadomość: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Zaproś: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddziel nazwy kontaktów przecinkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c411aeb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 6049c44..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,458 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Pokój pogawędek: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Wiadomość: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddziel nazwy kontaktów przecinkami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Zaproś: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 7ca9a88..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 7f64aeb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Klasa: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instancja: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Odbiorca: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 577070a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index b3a2e66..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (opcjonalne) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Nazwa hosta: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {236, 18}} - - YES - - 67108864 - 0 - Szyfruj połączenie za pomocą SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Jedno w linii, / jest opcjonalny. $me będzie zastąpiony Twoim nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Po połączeniu wykonaj polecenia: - - - - 3 - MCAwLjgwMDAwMDAxMTkAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodowanie: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index ad2bfd8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 109f569..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{80, 125}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {78, 17}} - - YES - - 67108864 - 71303168 - Pseudonim: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {78, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {258, 115} - - - - - - - - - - - - - 38 - - - - 258 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {258, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{80, 0}, {260, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, -84}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -108}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -107}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{140, 6}, {160, 18}} - - YES - - 67108864 - 0 - Sprawdź nową pocztę - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, -19}, {326, 18}} - - YES - - 67108864 - 0 - Zawsze używaj serwera proxy do przesyłania plików i wiadomości bezpośrednich - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 35}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer logowania: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{386, 32}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{347, 34}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-3, 7}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, -18}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer proxy AOL: - - - - - - NO - 1 - - - - 264 - {{-20, -43}, {140, 17}} - - YES - - 67108864 - 71303168 - Bezpieczeństwo: - - - - - - NO - 1 - - - {460, 54} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0705fd2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index d8e10db..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Szyfrowanie: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Użytkownik: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Zarejestruj nowe konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8062943..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 7b5608f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1753 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, -40}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 53}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodowanie: - - - - - - NO - 1 - - - - 264 - {{124, 47}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 81}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 79}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 79}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 81}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer logowania: - - - - - - NO - 1 - - - - 264 - {{126, 24}, {298, 18}} - - YES - - 67108864 - 0 - Zawsze używaj proxy do przesyłania plików - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 25}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer Proxy AOL: - - - - - - NO - 1 - - - {427, 101} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Pozwól innym widzieć, że piszesz - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Pisanie: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {285, 18}} - - YES - - 67108864 - 0 - Pokazuj wszystkim mój status na stronie - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{59, 54}, {87, 17}} - - YES - - 67108864 - 71303168 - Szyfrowanie: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSButton - NSMatrix - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index b08f24a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 3f1651e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{54, 93}, {67, 17}} - - YES - - 67108864 - 71303168 - Nazwa użytkownika: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {90, 14}} - - YES - - 67108864 - 272629760 - Rejestrowanie... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {255, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer BOSH: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer połączenia: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - Proxy przesyłania pliku: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Zasób: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Bezpieczeństwo: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Zapytaj co zrobić - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Akceptuj - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Akceptuj i dodaj do listy - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Odmów - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...dodaj do listy w grupie: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emotikony: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {217, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Pisanie: - - - - - - NO - 1 - - - - 264 - {{3, 54}, {84, 17}} - - YES - - 67108864 - 71303168 - Szyfrowanie: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{15, 0}, {72, 17}} - - YES - - 67108864 - 71303168 - Muzyka: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Wpisz adres twojego serwera XMPP: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Serwer: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - lub wybierz publiczny serwer z listy: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 228} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{276, 58}, {159, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index b46e8b0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 8e6bcc2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer logowania: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Emotikony: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {206, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{4, 87}, {142, 17}} - - YES - - 67108864 - 4194304 - Wyświetlana nazwa: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Pisanie: - - - - - - NO - 1 - - - - 264 - {{2, 54}, {84, 17}} - - YES - - 67108864 - 71303168 - Szyfrowanie: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{29, 0}, {57, 17}} - - YES - - 67108864 - 71303168 - Muzyka: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4212182..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 3fab826..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,688 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Użytkownik: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - - - - 264 - {{41, 39}, {76, 17}} - - YES - - 67108864 - 71303168 - Logowanie: - - - - - - NO - 1 - - - - 264 - {{120, 18}, {278, 18}} - - YES - - 67108864 - 0 - Wymuś (ignoruj przekierowania serwera) - - - 1211912448 - 2 - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{120, 38}, {250, 18}} - - YES - - 67108864 - 0 - Ukryj tożsamość klienta - - - 1211912448 - 2 - - NSImage - NSSwitch - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 60f2822..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index d26dc65..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Użytkownik: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index c6f0f6a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index d4e0e70..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 2 - - - - 256 - {{148, -1}, {219, 18}} - - YES - - 67108864 - 0 - Status dostępny dla wszystkich - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {123, 18}} - - YES - - 67108864 - 0 - Korzystaj z UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {159, 18}} - - YES - - 67108864 - 0 - Korzystaj z SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{313, 102}, {113, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Połączenie: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {188, 17}} - - YES - - 67108864 - 71303168 - Użytkownik uwierzytelnienia: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {188, 17}} - - YES - - 67108864 - 71303168 - Domena uwierzytelnienia: - - - - - - NO - 1 - - - - 256 - {{190, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{190, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Hasło: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Nazwa ekranowa: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7bfb42e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 921f3a9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,599 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer logowania: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {160, 18}} - - YES - - 67108864 - 0 - Sprawdź nową pocztę - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwer listy pokojów: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index d1d54cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index a5c41a8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1035 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Użytkownik: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{20, 15}, {420, 117}} - - YES - - 71303168 - 4194304 - Zephyr wymaga poprawnej konfiguracji Kerberos. Zephyr wykorzysta Twój UNIX UID lub nazwę Kerberos. Powyższa nazwa użytkownika służy wyłącznie do wewnętrznego zastosowania w Adium. Zaleca się korzystanie jednocześnie tylko z jednego połączenia Zephyr. Wykorzystanie wewnętrznego menedżera serwerów spowoduje konflikt z pozostałymi wystąpieniami „zhm” uruchomionymi na tym komputerze. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Eksportuj do .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Eksportuj do .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Ekspozycja: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodowanie: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Eksportuj: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Serwer - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{224, 1}, {15, 58}} - - NO - - _doScroller: - 0.30526316165924072 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Serwery: - - - - - - NO - 1 - - - - 36 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 36 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Menedżer serwerów: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {283, 18}} - - YES - - 67108864 - 0 - Użyj wewnętrznego menedżera serwerów - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index a0d6c78..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/Localizable.strings deleted file mode 100644 index c07d780..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 9173dbe..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Nome da Sala: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Direção: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Senha: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar nome dos contatos com vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Convidar Contatos: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Com Mensagem: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ff252c9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index e3e59b0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Assunto: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar nomes dos contatos com vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Convidar contatos: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index fd14ae0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 31fb19b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Nome da Sala: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Com Mensagem: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Convidar Contatos: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar nomes dos contatos com vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a96e2fb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 5ff07b3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Nome da Sala: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Com Mensagem: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar nomes dos contatos com vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Convidar Contatos: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index b5c56e5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index f0c55ae..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instância: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Recipiente: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c643407..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 9674a12..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (optional) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Encrypt connection using SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - One per line, / is optional. $me will be replaced with your current nickname. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Execute commands on connect: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Realname: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Username (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 11d61f5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index c10d87f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1606 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Perfil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Não criptografado - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Usar criptografia quando disponível - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Verificar email - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - U2VtcHJlIHVzYXIgcHJveHkgcGFyYSB0cmFuc2ZlcsOqbmNpYXMgZGUKYXJxdWl2b3MgZSBJTSBEaXJl -dG8 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de Login: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de Proxy do AOL: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 062dc71..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index e0654c0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,726 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Criptografia: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Senha: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome do Usuário: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrar Nova Conta - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0a79ce4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 5c537c2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Requerer criptografia - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Rádio - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Sem criptografia - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Usar criptografia quando disponível - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Criptografia: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificação: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de Login: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Deixar que os outros saibam que está digitando - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Digitando: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Deixar qualquer um ver meu status na Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Criptografia: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 82964b8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 173428c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3353 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 76c0327..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 317eec0..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Permitir conexões diretas - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - YES - - 67108864 - 71303168 - Servidor de Login: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Checar por novo email - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Conectar via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Mostrar emoticons personalizados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nome de Tela: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Deixar que os outros saibam que você está digitando - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Digitando: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Criptografia: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Deixar que os outros saibam o que o iTunes etá tocando - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index d965992..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index d15b61e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuário: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Senha: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Login: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Forçar o login (Ignorar o redirecionamento de servidores) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Ocultar a identificação do cliente - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 72ff9e3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 9fa0ef8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuário: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Senha: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index b4ef6ef..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index c729e16..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Publicar Estado para Todos - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Usar porta UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Usar proxy SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Conexão: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorização do Usuário: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Estado: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorização do Domínio: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Senha: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome da Tela: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 166130b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index f422a5e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Porta: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor de Login: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Verificar novas mensagens - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Lista de Servidores de Salas: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 09f55fa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 21b6164..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Usuário: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr requer que uma cópia configurada do daemon Zephyr Host Manager (zhm) esteja rodando; isto também implica na dependência de uma configuração correta do Kerberos. Zephyr usa su UID UNIX ou nome Kerberos; o usuário acima é somente para uso interno no Adium. Somente uma conexão Zephyr é recomendada de cada vez. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Exportar para .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Exportar para .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exposição: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codificação: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exportar: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Servidor - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidores: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Gerenciador de Host: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Usar gerenciador interno de host - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index fa2d97e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/Localizable.strings deleted file mode 100644 index 6cf12ed..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 05c8458..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - É necessário dar autorização ao Adium para poder utilizar o chat do Facebook. Será apresentado um ecrã para iniciar a sessão de forma segura ao clicar em Permitir acesso. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Informações do estado actual ficarão aqui. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Permitir acesso - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index cab1d0f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 6396248..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{132, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{7, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Nome da sala: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{132, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{7, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 256 - {{132, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{7, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Gestor: - - - - - - NO - 1 - - - - 256 - {{132, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{7, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - - - - - NO - 1 - - - - 256 - {{129, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar contactos por vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {130, 17}} - - YES - - 67108864 - 71303168 - Convidar contactos: - - - - - - NO - 1 - - - - 256 - {{132, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {130, 17}} - - YES - - 67108864 - 71303168 - Com a mensagem: - - - - - - NO - 1 - - - - 256 - {{132, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {419, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c3531d5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 7666cc2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{10, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Tópico: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{132, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar contactos por vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{135, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {130, 17}} - - YES - - 67108864 - 71303168 - Convidar contactos: - - - - - - NO - 1 - - - - 256 - {{135, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {421, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f62857b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 7e65a69..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {131, 17}} - - YES - - 67108864 - 71303168 - Nome da sala: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{133, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{133, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {131, 17}} - - YES - - 67108864 - 71303168 - Com a mensagem: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {131, 17}} - - YES - - 67108864 - 71303168 - Convidar contactos: - - - - - - NO - 1 - - - - 256 - {{133, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{130, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar contactos por vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {407, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 6b29b98..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index aa35ee9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {133, 17}} - - YES - - 67108864 - 71303168 - Nome da sala: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{136, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{136, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {133, 17}} - - YES - - 67108864 - 71303168 - Com a mensagem: - - - - - - NO - 1 - - - - 256 - {{133, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Separar contactos por vírgulas. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{136, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {133, 17}} - - YES - - 67108864 - 71303168 - Convidar contactos: - - - - - - NO - 1 - - - {407, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 895a5bc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index e9d95ba..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Classe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instância: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Receptor: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ea7a960..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index a1f6b10..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {164, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {164, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - - - NO - 1 - - - - 264 - {{99, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{99, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (opcional) - - YES - - - - NO - 1 - - - - 264 - {{99, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {96, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {339, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Cifrar ligação utilizando SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{96, 236}, {41, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Um por linha, / é opcional. $me será substituído pelo seu nick actual. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {424, 131} - - - - - - - - - - - - - 38 - - - - 424 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {409, 131} - - - - {{1, 1}, {409, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133266 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Executar comandos ao ligar: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Codificação: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{149, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{71, 35}, {73, 17}} - - YES - - 68157504 - 272630784 - Nome real: - - - - - - NO - 1 - - - - 268 - {{149, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {130, 17}} - - YES - - 68157504 - 272630784 - Nome de utilizador: - - - - - - NO - 1 - - - {354, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 57cb062..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 9f115fe..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Nick: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Perfil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{179, 42}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Sem cifragem - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Utilizar cifragem quando disponível - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - É necessária cifragem - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{179, 18}, {306, 18}} - - YES - - 67108864 - 0 - Permitir múltiplos acessos - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{34, 19}, {140, 17}} - - YES - - 67108864 - 71303168 - Múltiplos acessos: - - - - - - NO - 1 - - - - 264 - {{177, 132}, {262, 18}} - - YES - - 67108864 - 0 - Verificar novas mensagens de e-mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{177, 107}, {446, 18}} - - YES - - 67108864 - 0 - Utilizar sempre proxy para transferência de ficheiros e Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{179, 158}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{430, 158}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{384, 160}, {41, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{34, 133}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{-1, 108}, {175, 17}} - - YES - - 67108864 - 71303168 - Servidor proxy AOL: - - - - - - NO - 1 - - - - 264 - {{34, 83}, {140, 17}} - - YES - - 67108864 - 71303168 - Cifra: - - - - - - NO - 1 - - - {629, 180} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index bc730cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 1c67d9d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,723 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2080374720 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Cifra: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome de utilizador: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registar uma nova conta - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index fb5be38..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 56dfa42..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1169 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{181, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Sem cifragem - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Utilizar cifragem quando disponível - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - É necessária cifragem - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{36, 41}, {140, 17}} - - - YES - - 67108864 - 71303168 - Cifra: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{36, 94}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codificação: - - - - - - NO - 1 - - - - 264 - {{178, 88}, {206, 26}} - - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{386, 122}, {41, 17}} - - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{181, 120}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{432, 120}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{36, 122}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{180, 65}, {374, 18}} - - - YES - - 67108864 - 0 - Utilizar sempre proxy para transferir ficheiros - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 66}, {194, 17}} - - - YES - - 67108864 - 71303168 - Servidor proxy AOL: - - - - - - NO - 1 - - - {560, 142.3125} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {419, 18}} - - YES - - 67108864 - 0 - Permitir que os contactos vejam que está a escrever - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Escrita: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {414, 18}} - - YES - - 67108864 - 0 - Permitir que todos vejam o meu estado pela web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Estado na web: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cifra: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {581, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 295 - - - - - 163 - - - - - - - - 296 - - - - - - - - 164 - - - - - - - - 160 - - - - - 172 - - - - - - - - 297 - - - - - 173 - - - - - - - - 298 - - - - - 174 - - - - - - - - 299 - - - - - 175 - - - - - - - - 300 - - - - - 265 - - - - - - - - 301 - - - - - 267 - - - - - - - - 303 - - - - - 311 - - - - - - - - 317 - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 305 - - - - - - - - 199 - - - - - - - - 200 - - - - - 192 - - - - - - - - 306 - - - - - 193 - - - - - - - - 307 - - - - - 194 - - - - - - - - 308 - - - - - 213 - - - - - - - - 309 - - - - - 214 - - - - - - - - 310 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 322 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 3b4182e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 9a8e298..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{17, 65}, {130, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {130, 17}} - - YES - - 67108864 - 71303168 - Nome de utilizador: - - - - - - NO - 1 - - - - 264 - {{152, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - utilizador@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{152, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{176, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registar uma nova conta - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - A registar… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {483, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{234, 119}, {261, 18}} - - YES - - 67108864 - 0 - Permitir autenticação de texto normal - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{234, 99}, {143, 18}} - - YES - - 67108864 - 0 - Forçar SSL antigo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{234, 166}, {264, 18}} - - YES - - 67108864 - 0 - Mostrar notificações de novos e-mails - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{236, 289}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{91, 291}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor BOSH: - - - - - - NO - 1 - - - - 264 - {{236, 317}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{91, 319}, {140, 17}} - - YES - - 67108864 - 71303168 - Ligar ao servidor: - - - - - - NO - 1 - - - - 264 - {{236, 259}, {289, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{1, 261}, {230, 17}} - - YES - - 67108864 - 71303168 - Proxy de transferência de ficheiros: - - - - - - NO - 1 - - - - 264 - {{452, 229}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{404, 231}, {43, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{236, 229}, {163, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{91, 231}, {140, 17}} - - YES - - 67108864 - 71303168 - Recurso: - - - - - - NO - 1 - - - - 264 - {{91, 167}, {140, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{91, 120}, {140, 17}} - - YES - - 67108864 - 71303168 - Segurança: - - - - - - NO - 1 - - - - 256 - {{43, 198}, {188, 17}} - - YES - - 67108864 - 71303168 - Prioridade Disponível: - - - - - - NO - 1 - - - - 256 - {{236, 195}, {70, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{316, 198}, {131, 17}} - - YES - - 67108864 - 71303168 - Prioridade Ausente: - - - - - - NO - 1 - - - - 256 - {{452, 194}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{233, 29}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Perguntar - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Aceitar - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Aceitar e adicionar à lista - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Negar - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{62, 35}, {169, 17}} - - YES - - 67108864 - 71303168 - Assinaturas de presença: - - - - - - NO - 1 - - - - 268 - {{91, 8}, {193, 17}} - - YES - - 67108864 - 71303168 - …adicionar à lista no grupo: - - - - - - NO - 1 - - - - 266 - {{289, 3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{234, 79}, {143, 18}} - - YES - - 67108864 - 0 - Requer SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{234, 59}, {266, 18}} - - YES - - 67108864 - 0 - Verificar rigorosamente os certificados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{104, 144}, {127, 17}} - - YES - - 68157504 - 272630784 - Ícones expressivos: - - - - - - NO - 1 - - - - 268 - {{234, 143}, {293, 18}} - - YES - - 67108864 - 0 - Mostrar ícones expressivos personalizados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {533, 339} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {350, 18}} - - YES - - 67108864 - 0 - Permitir que os contactos vejam que está a escrever - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Escrita: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cifra: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{35, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {393, 18}} - - YES - - 67108864 - 0 - Permitir que os contactos vejam a música actual do iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {496, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {293, 17}} - - YES - - 67108864 - 272629760 - Insira o endereço do seu servidor XMPP aqui: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 265 - {{345, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {41, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {280, 17}} - - YES - - 67108864 - 272629760 - ou seleccione um servidor público da lista: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Nome do servidor - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Pedir uma nova conta - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancelar - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {197, 204} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 197 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.76960784313725494 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133842 - - - - 0.25 - 4 - 1 - - - - 265 - {{233, 58}, {202, 19}} - - YES - - -2080374784 - 134217728 - Visitar página inicial do servidor - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1440, 878}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1acee82..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index d91dda5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1181 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{393, 111}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 113}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidor: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 111}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 45}, {273, 18}} - - - YES - - 67108864 - 0 - Verificar novas mensagens de e-mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 46}, {140, 17}} - - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{347, 113}, {41, 17}} - - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{140, 67}, {273, 18}} - - - YES - - 67108864 - 0 - Permitir ligações directas - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 87}, {273, 18}} - - - YES - - 67108864 - 0 - Ligar por HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{10, 22}, {127, 17}} - - - YES - - 68157504 - 272630784 - Ícones expressivos: - - - - - - NO - 1 - - - - 268 - {{140, 21}, {293, 18}} - - YES - - 67108864 - 0 - Mostrar ícones expressivos personalizados - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {444, 133.859375} - - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Nick: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {350, 18}} - - YES - - 67108864 - 0 - Permitir que os contactos vejam que está a escrever - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Escrita: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Cifra: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{34, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Música: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {393, 18}} - - YES - - 67108864 - 0 - Permitir que os contactos vejam a música actual do iTunes - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {494, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 672b14d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index d34b851..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Utilizador: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Acesso: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {371, 18}} - - YES - - 67108864 - 0 - Forçar acesso (ignorar redireccionamentos do servidor) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Ocultar a identidade do cliente - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {531, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2942916..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index b066555..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome de utilizador: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {41, 17}} - - YES - - 67108864 - 71303168 - Porta: - - - - - - NO - 1 - - - - 264 - {{399, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {467, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 51d34fb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index d62dfbf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{183, -1}, {190, 18}} - - YES - - 67108864 - 0 - Publicar estado para todos - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{183, 78}, {315, 18}} - - YES - - 67108864 - 0 - Utilizar UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{183, 104}, {134, 18}} - - YES - - 67108864 - 0 - Utilizar proxy SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{323, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {158, 17}} - - YES - - 67108864 - 71303168 - Ligação: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {183, 17}} - - YES - - 67108864 - 71303168 - Utilizador de autorização: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {158, 17}} - - YES - - 67108864 - 71303168 - Estado: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {183, 17}} - - YES - - 67108864 - 71303168 - Domínio de autorização: - - - - - - NO - 1 - - - - 256 - {{185, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{185, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {483, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Palavra-passe: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index a5d5a41..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index ae5bc3c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,602 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{392, 71}, {41, 17}} - - YES - - 67108864 - 71303168 - Porta: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{438, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{17, 17}, {165, 17}} - - YES - - 67108864 - 71303168 - E-mail: - - - - - - NO - 1 - - - - 264 - {{187, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 70}, {165, 17}} - - YES - - 67108864 - 71303168 - Servidor: - - - - - - NO - 1 - - - - 264 - {{185, 16}, {256, 18}} - - YES - - 67108864 - 0 - Verificar novas mensagens de e-mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{17, 42}, {165, 17}} - - YES - - 67108864 - 71303168 - Servidor da lista de salas: - - - - - - NO - 1 - - - - 264 - {{184, 36}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {509, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index f92dd5c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index b953b0c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 166}, {140, 17}} - - YES - - 67108864 - 71303168 - Nome de utilizador: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 164}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 122}} - - YES - - 71303168 - 4194304 - O Zephyr requer uma configuração Kerberos apropriada. O Zephyr utiliza a sua UNIX UID ou o nome do seu Kerberos; o nome de utilizador acima é apenas para uso interno do Adium. É recomendada apenas uma ligação do Zephyr de cada vez. A utilização do gestor de host interno irá entrar em conflito com qualquer outra instância 'zhm' em execução nesta máquina. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 186} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Exportar para .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Exportar para .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exposição: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Codificação: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exportar: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Servidor - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servidores: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Gestão de host: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {212, 18}} - - - YES - - 67108864 - 0 - Utilizar gestor de host interno - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 76ad2fd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings deleted file mode 100644 index 5ddd877..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/pt_PT.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 6855842..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Назв. комнаты: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Псевдоним: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {273, 14}} - - YES - - 67108864 - 4194304 - Разделяйте имена собеседников запятыми. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Пригласить: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Сообщение: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 8c27ea3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index dd1e729..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Тема: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {272, 14}} - - YES - - 67108864 - 4194304 - Разделяйте имена собеседников запятыми. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Пригласить: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 8661139..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 049778d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {132, 17}} - - YES - - 67108864 - 71303168 - Название комнаты: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{134, 157}, {254, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{134, 10}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {132, 17}} - - YES - - 67108864 - 71303168 - Сообщение: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {132, 17}} - - YES - - 67108864 - 71303168 - Пригласить: - - - - - - NO - 1 - - - - 256 - {{134, 89}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{131, 75}, {260, 14}} - - YES - - 67108864 - 4194304 - Разделяйте имена собеседников запятыми. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 346ee19..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 2e9171c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {132, 17}} - - YES - - 67108864 - 71303168 - Название комнаты: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{135, 147}, {254, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{135, 1}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{10, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Сообщение: - - - - - - NO - 1 - - - - 256 - {{132, 65}, {260, 14}} - - YES - - 67108864 - 4194304 - Разделяйте имена собеседников запятыми. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{135, 79}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{10, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Пригласить: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index d740e77..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 7cfff5d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Класс: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Экземпляр: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Получатель: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e0e42ff..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index c796f85..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {157, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {157, 17}} - - YES - - 67108864 - 71303168 - Псевдоним: - - - - - - NO - 1 - - - - 264 - {{92, 56}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - псевдоним - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{92, 0}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - (необязательно) - - YES - - - - NO - 1 - - - - 264 - {{92, 28}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {89, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{172, 236}, {264, 18}} - - YES - - 67108864 - 0 - Защитить соединение используя SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{115, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{68, 236}, {42, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {469, 17}} - - YES - - 68157504 - 272761856 - Одна команда в строку, / необязателен. $me будет заменена вашим псевдонимом. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {446, 131} - - - - - - - - - - - - - 38 - - - - 446 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {446, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{447, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {463, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {499, 182}} - - - - {{-2, -4}, {501, 198}} - - {0, 0} - - 67108864 - 0 - Выполнить команды при подключении: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{23, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрование: - - - - - - NO - 1 - - - - 264 - {{164, 202}, {273, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {496, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{144, 32}, {196, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{23, 34}, {116, 17}} - - YES - - 68157504 - 71304192 - Настоящее имя: - - - - - - NO - 1 - - - - 268 - {{144, 0}, {196, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {125, 17}} - - YES - - 68157504 - 272630784 - Имя пользователя: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 85b1ba6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 5697a9b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Псевдоним: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Профиль: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Проверять наличие новых сообщений - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Всегда использовать прокси для передачи файлов и Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Электронная почта: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - Прокси-сервер AOL: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Безопасность: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index ebcc74b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index c4b3a86..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрование: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Имя пользователя: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{139, 12}, {252, 32}} - - YES - - 67108864 - 134217728 - Зарегистрировать учетную запись - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 125a13b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 8c2a75a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Кодировка: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер входа: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Всегда использовать прокси для передачи файлов - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - Прокси-сервер AOL: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Оповещать собеседников о наборе текста - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Набор текста: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Показывать мой статус через веб-страницу - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Текстовый статус: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Шифрование: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8b3a5e1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index ac81c27..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{17, 66}, {134, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 91}, {134, 17}} - - YES - - 67108864 - 71303168 - Учетная запись: - - - - - - NO - 1 - - - - 264 - {{156, 89}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{156, 61}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 13}, {252, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 20}, {110, 17}} - - YES - - 67108864 - 272629760 - Регистрирую… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{195, 112}, {242, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{195, 92}, {198, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{195, 159}, {264, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{197, 282}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{52, 284}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер BOSH: - - - - - - NO - 1 - - - - 264 - {{197, 310}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{40, 312}, {152, 17}} - - YES - - 67108864 - 71303168 - Сервер подключения: - - - - - - NO - 1 - - - - 264 - {{197, 252}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 254}, {175, 17}} - - YES - - 67108864 - 71303168 - Прокси передачи файлов: - - - - - - NO - 1 - - - - 264 - {{364, 222}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{318, 224}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{197, 222}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{52, 224}, {140, 17}} - - YES - - 67108864 - 71303168 - Ресурс: - - - - - - NO - 1 - - - - 264 - {{52, 160}, {140, 17}} - - YES - - 67108864 - 71303168 - Электронная почта: - - - - - - NO - 1 - - - - 264 - {{52, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Безопасность: - - - - - - NO - 1 - - - - 256 - {{17, 191}, {175, 17}} - - YES - - 67108864 - 71303168 - Приоритет доступности: - - - - - - NO - 1 - - - - 256 - {{197, 188}, {76, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{278, 191}, {81, 17}} - - YES - - 67108864 - 71303168 - Отсутствия: - - - - - - NO - 1 - - - - 256 - {{364, 187}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{194, 22}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Спросить о действии - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Принимать - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Принимать и добавлять в список - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Отклонять - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{10, 28}, {182, 17}} - - YES - - 67108864 - 71303168 - Подписки на присутствие: - - - - - - NO - 1 - - - - 268 - {{104, 1}, {161, 17}} - - YES - - 67108864 - 71303168 - ...добавить в группу: - - - - - - NO - 1 - - - - 266 - {{268, -4}, {172, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{195, 72}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{195, 52}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{110, 137}, {82, 17}} - - YES - - 68157504 - 272630784 - Эмотиконы: - - - - - - NO - 1 - - - - 268 - {{195, 136}, {244, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {457, 332} - NSView - NSResponder - - - - 256 - - - - 264 - {{115, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{13, 25}, {99, 17}} - - YES - - 67108864 - 71303168 - Набор текста: - - - - - - NO - 1 - - - - 264 - {{20, 54}, {92, 17}} - - YES - - 67108864 - 71303168 - Шифрование: - - - - - - NO - 1 - - - - 264 - {{114, 48}, {365, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{32, 0}, {80, 17}} - - YES - - 67108864 - 71303168 - Музыка: - - - - - - NO - 1 - - - - 264 - {{115, -1}, {363, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {496, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Введите адрес XMPP-сервера: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 265 - {{347, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {421, 17}} - - YES - - 67108864 - 272629760 - Либо выберите публичный сервер из списка: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{198, 12}, {243, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {103, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {219, 180} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 219 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.87222222222222223 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133842 - - - - 0.25 - 4 - 1 - - - - 265 - {{247, 58}, {188, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index fa1ea8a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 7114573..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер входа: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {191, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Электронная почта: - - - - - - NO - 1 - - - - 264 - {{338, 73}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{55, 0}, {82, 17}} - - YES - - 68157504 - 272630784 - Эмотиконы: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {242, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {322, 17}} - - YES - - 67108864 - 4194304 - Отображаемое имя: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{102, 23}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 25}, {102, 17}} - - YES - - 67108864 - 71303168 - Набор текста: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {102, 17}} - - YES - - 67108864 - 71303168 - Шифрование: - - - - - - NO - 1 - - - - 264 - {{101, 47}, {365, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{-3, 0}, {102, 17}} - - YES - - 67108864 - 71303168 - Музыка: - - - - - - NO - 1 - - - - 264 - {{102, -2}, {363, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {469, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index fcf9bd0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 407937b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{123, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 69}, {101, 17}} - - YES - - 67108864 - 71303168 - Пользователь: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{17, 9}, {101, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{123, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{123, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 39}, {101, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{329, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{380, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {104, 17}} - - YES - - 67108864 - 71303168 - Подключение: - - - - - - NO - 1 - - - - 264 - {{104, 18}, {293, 18}} - - YES - - 67108864 - 0 - Игнорировать перенаправления сервера - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{104, 38}, {250, 18}} - - YES - - 67108864 - 0 - Скрывать название программы - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {395, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 693e59b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 7e6312c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Имя пользователя: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{341, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index e2a83e1..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 13078ab..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{141, -2}, {188, 18}} - - YES - - 67108864 - 0 - Публиковать для всех - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{141, 77}, {315, 18}} - - YES - - 67108864 - 0 - Использовать UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{141, 103}, {190, 18}} - - YES - - 67108864 - 0 - Использовать SIP-прокси: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{337, 101}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{15, 104}, {123, 17}} - - YES - - 67108864 - 71303168 - Соединение: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 49}, {141, 17}} - - YES - - 67108864 - 71303168 - Пользователь: - - - - - - NO - 1 - - - - 264 - {{15, -1}, {123, 17}} - - YES - - 67108864 - 71303168 - Статус: - - - - - - NO - 1 - - - - 264 - {{-3, 24}, {141, 17}} - - YES - - 67108864 - 71303168 - Домен авторизации: - - - - - - NO - 1 - - - - 256 - {{143, 49}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{143, 22}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {497, 123} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Отображаемое имя: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 80eb89e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index f75c889..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{382, 72}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{430, 70}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{17, 19}, {155, 17}} - - YES - - 67108864 - 71303168 - Электронная почта: - - - - - - NO - 1 - - - - 264 - {{177, 70}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{25, 72}, {147, 17}} - - YES - - 67108864 - 71303168 - Сервер подключения: - - - - - - NO - 1 - - - - 264 - {{175, 18}, {269, 18}} - - YES - - 67108864 - 0 - Проверять наличие новых сообщений - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{17, 44}, {155, 17}} - - YES - - 67108864 - 71303168 - Сервер списка комнат: - - - - - - NO - 1 - - - - 264 - {{174, 38}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {504, 92} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 679ffba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 2b718f8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1228 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{27, 183}, {140, 17}} - - YES - - 67108864 - 71303168 - Имя пользователя: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{172, 181}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{42, 20}, {374, 139}} - - YES - - 71303168 - 4194304 - Правильно сконфигурированный Kerberos необходим для работы Zephyr. Zephyr использует UNIX UID или имя Kerberos; имя пользователя выше необходимо исключительно для внутреннего использования в Adium. Не рекомендуется использовать больше одного соединения Zephyr в одно время. Использование внутреннего менеджера хостов вызовет конфликт с другими инстанциями 'zhm', запущенными на этом компьютере. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 203} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Экспортировать в .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Экспортировать в .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Экспозиция: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Кодировка: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Экспорт: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Сервер - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Серверы: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Менеджер хостов: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {308, 18}} - - YES - - 67108864 - 0 - Использовать внутренний менеджер хостов - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 35c5aa0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/Localizable.strings deleted file mode 100644 index 5a5abf6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/ru.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 231e75c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Meno chatu: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Obslúžiť: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddeliť mená kontaktov čiarkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvať kontakty: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - So správou: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 3e6b4a0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index eee0590..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Téma: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddeliť mená kontaktov čiarkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvať kontakty: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 243f4ee..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index b0984dd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Meno chatu: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - So správou: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvať kontakty: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddeliť mená kontaktov čiarkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 810e8cb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 0fb289d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Meno chatu: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - So správou: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Oddeliť mená kontaktov čiarkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Pozvať kontakty: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ff0b6bd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 33ee568..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Trieda: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Inštancia: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Príjemca: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e237d92..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index dd36fad..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-59, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-59, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Prezývka: - - - - - - NO - 1 - - - - 264 - {{86, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - prezývka - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{86, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (voliteľné) - - YES - - - - NO - 1 - - - - 264 - {{86, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{9, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Hostname: - - - - - - NO - 1 - - - {326, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Šifrovať spojenie pomocou SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Jeden na riadok, / je voliteľný. $ bude vymenený vašou terajšou prezývkou. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Vykonať príkaz po pripojení: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódovanie - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 35}, {116, 17}} - - YES - - 68157504 - 272630784 - Skutočné meno: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Meno (Ident): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 270e29d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 157f5f5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Prezývka: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Skontrolovať nový mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Používať proxy pre prenos súborov a priame správy - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Prihlasovací server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Bezpečnosť: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 028e2fd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index f97e6e8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Vec1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Šifrovanie: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživateľské meno: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrovať nový účet - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5141c1a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 27c9a09..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1462 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódovanie: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Prihlasovací server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Používať proxy pre prenos súborov - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Umožniť ostatným vidieť kedy píšem - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Píše: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Umožniť všetkým vidieť môj status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web vedo Web Aware - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Šifrovanie: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Vec1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 73bb08c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 46bbccf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Password: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - User Name: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registering… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Connect Server: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - File Transfer Proxies: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resource: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Mail: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Security: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - Available Priority: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - Away Priority: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ask What To Do - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Accept - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Accept and Add To List - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Deny - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Presence Subscriptions: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...add to list in group: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Emoticons: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Music: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Either enter your XMPP server address here: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - or select a public server from the list: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7fac0e7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index e610fea..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1514 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Prihlasovací server: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - Smajlíci: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Zobraziť meno: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Píše: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Šifrovanie: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Vec1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - Hudba: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 676ac92..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index f189447..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Užívateľ: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Prihlásenie: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {374, 18}} - - YES - - 67108864 - 0 - Vynútené prihlásenie (ignorovať presmerovania servera) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Skryť identitu klienta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {512, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4f4e7bc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 0d4b399..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživateľské meno: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index be28852..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 06d5fae..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Zverejniť status každému - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - Použiť UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - Použiť SIP proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Pripojenie: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorizovaný užívateľ: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Autorizovaná doména: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Heslo: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Prezývka: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 432e80d..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 8f306e8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - Email: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Prihlasovací server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {173, 18}} - - YES - - 67108864 - 0 - Skontrolovať nový mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Room List Server: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Vec1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - InéZobrazenie - - - - - Vec2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Vec3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 112a44e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index ca8e9cb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1227 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Uživateľské meno: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr vyžaduje správnu konfiguráciu Kerber-u. Zephyr používa vašu UNIX UID alebo vaše Kerberos meno, užívateľské meno vyššie je určené výhradne pre interné použitie Adium-u. Iba jedno simultánne Zephyr pripojenie je odporúčané. Používaním interného host manažéra budú v konflikte s inými 'zhm' inštanciami bežiacimi na tomto stroji. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Exportovať do .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Exportovať .všetkým - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Miesto: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Kódovanie - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Exportovať: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servery: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Host manažér: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Použiť vnútorného host manažera - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index b261577..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/Localizable.strings deleted file mode 100644 index 8527468..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sk.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index bb48d17..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - Za povezavo s Facebookovim klepetom morate Adiumu dovoliti dostop. Ko boste izbrali "Dovoli dostop", se bo prikazalo varno Facebookovo prijavno okno. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Trenutno stanje bo prikazano tu. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Dovoli dostop - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index d434b54..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 5fb0416..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Ime klepetalnice: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Strežnik: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Nosilec: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Geslo: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Imena stikov ločite z vejicami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Povabi stike: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - S sporočilom: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 58cacc7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index bb72bea..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Tema: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Imena stikov ločite z vejicami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Povabi stike: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 29733b4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index da24b4f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Ime klepetalnice: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - S sporočilom: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Povabi stike: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Imena stikov ločite z vejicami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c37c5ba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 2f36c41..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Ime klepetalnice: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - S sporočilom: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Imena stikov ločite z vejicami. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Povabi stike: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 791e293..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 93f1429..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Razred: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Primerek: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Prejemnik: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index bc7b246..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index ec7362f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1418 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - - YES - - 67108864 - 71303168 - Geslo: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - - YES - - 67108864 - 71303168 - Vzdevek: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - vzdevek - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (neobvezno) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - - YES - - 67108864 - 71303168 - Gostitelj: - - - - - - NO - 1 - - - {315, 78} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {239, 18}} - - YES - - 67108864 - 0 - Šifriraj povezavo z uporabo SSL-ja - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{95, 236}, {42, 17}} - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Eden na vrstico, / je neobvezno, $me bo zamenjano z vašim vzdevkom. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {409, 131} - - - - - - - - - - - - - 38 - - - - 409 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {409, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Ob priklopu izvedi ukaze: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodna tabela: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Pravo ime: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 71304192 - Up. ime: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4e8861c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 80dfc6b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1439 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{79, 125}, {286, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {77, 17}} - - - YES - - 67108864 - 71303168 - Psevdonim: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{22, 102}, {52, 17}} - - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{79, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {365, 147} - - - NSView - - NSResponder - - - - 256 - - - - 268 - {{190, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Brez šifriranja - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Uporabi šifriranje, ko je na voljo - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Zahtevaj šifriranje - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{190, -2}, {306, 18}} - - YES - - 67108864 - 0 - Dovoli večkratno prijavo - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{47, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Večkratne prijave: - - - - - - NO - 1 - - - - 264 - {{190, 112}, {306, 18}} - - YES - - 67108864 - 0 - Preveri novo pošto - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{190, 87}, {486, 18}} - - YES - - 67108864 - 0 - Uporabi namestniški strežnik za vso komunikacijo - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{47, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Prijavni strežnik: - - - - - - NO - 1 - - - - 264 - {{192, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{444, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{397, 140}, {42, 17}} - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{47, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - E-naslov: - - - - - - NO - 1 - - - - 264 - {{-3, 88}, {190, 17}} - - YES - - 67108864 - 71303168 - Namestniški strežnik za AOL: - - - - - - NO - 1 - - - - 264 - {{47, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Šifriranje: - - - - - - NO - 1 - - - {532, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index a09f5b5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index f94c216..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,726 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Šifriranje: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Geslo: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Uporabniško ime: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registriraj nov račun - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 02ba030..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index d92eb3a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1476 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{191, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Brez šifriranja - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Uporabi šifriranje, ko je na voljo - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Zahtevaj šifriranje - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{48, 40}, {140, 17}} - - - YES - - 67108864 - 71303168 - Šifriranje: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{48, 93}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kodna tabela: - - - - - - NO - 1 - - - - 264 - {{190, 87}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{398, 121}, {42, 17}} - - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{193, 119}, {200, 22}} - - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{445, 119}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{48, 121}, {140, 17}} - - - YES - - 67108864 - 71303168 - Prijavni strežnik: - - - - - - NO - 1 - - - - 264 - {{192, 64}, {376, 18}} - - - YES - - 67108864 - 0 - Vedno uporabi namestniški strežnik za prenose datotek - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 65}, {191, 17}} - - - YES - - 67108864 - 71303168 - Namestniški strežnik za AOL: - - - - - - NO - 1 - - - {566, 141} - - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Drugi naj vedo, kdaj tipkate - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Tipkanje: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {329, 18}} - - YES - - 67108864 - 0 - Dovoli prikaz mojega stanja komurkoli na spletu - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 0}, {149, 17}} - - YES - - 67108864 - 71303168 - Stanje vidno na spletu: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Šifriranje: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {476, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 89f8f6a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 505b088..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Geslo: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - Up. ime: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - uporabnisko_ime@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registriraj nov račun - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registracija ... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{260, 113}, {292, 18}} - - YES - - 67108864 - 0 - Dovoli avtentikacijo z navadnim besedilom - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{260, 93}, {170, 18}} - - YES - - 67108864 - 0 - Zahtevaj stari način SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{260, 160}, {223, 18}} - - YES - - 67108864 - 0 - Pokaži obvestila o prispeli pošti - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{262, 283}, {287, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{117, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - Strežnik BOSH: - - - - - - NO - 1 - - - - 264 - {{262, 311}, {287, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{117, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Prijavni strežnik: - - - - - - NO - 1 - - - - 264 - {{262, 253}, {287, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 255}, {260, 17}} - - YES - - 67108864 - 71303168 - Posredniški strežniki za prenos datotek: - - - - - - NO - 1 - - - - 264 - {{476, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{427, 225}, {44, 17}} - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{262, 223}, {160, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{117, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Vir: - - - - - - NO - 1 - - - - 264 - {{117, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - E-naslov: - - - - - - NO - 1 - - - - 264 - {{117, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Varnost: - - - - - - NO - 1 - - - - 256 - {{117, 192}, {140, 17}} - - YES - - 67108864 - 71303168 - Prioriteta prisotnosti: - - - - - - NO - 1 - - - - 256 - {{262, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{331, 192}, {140, 17}} - - YES - - 67108864 - 71303168 - Prioriteta odsotnosti: - - - - - - NO - 1 - - - - 256 - {{476, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{259, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Vprašaj - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Sprejmi - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Sprejmi in dodaj na seznam - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Zavrni - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{-57, 29}, {314, 17}} - - YES - - 67108864 - 71303168 - Zahteve po deljenju vaše prisotnosti: - - - - - - NO - 1 - - - - 268 - {{168, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - … dodaj na seznam v skupini: - - - - - - NO - 1 - - - - 266 - {{315, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{260, 73}, {170, 18}} - - YES - - 67108864 - 0 - Zahtevaj SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{260, 53}, {274, 18}} - - YES - - 67108864 - 0 - Uporabi striktno preverjanje certifikatov - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{183, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Smejčki: - - - - - - NO - 1 - - - - 268 - {{260, 137}, {188, 18}} - - YES - - 67108864 - 0 - Pokaži smejčke po meri - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {550, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{70, 24}, {331, 18}} - - YES - - 67108864 - 0 - Drugi naj vedo, kdaj tipkate - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{4, 25}, {63, 17}} - - YES - - 67108864 - 71303168 - Tipkanje: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {70, 17}} - - YES - - 67108864 - 71303168 - Šifriranje: - - - - - - NO - 1 - - - - 264 - {{69, 48}, {333, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{15, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Glasba: - - - - - - NO - 1 - - - - 264 - {{70, -1}, {331, 18}} - - YES - - 67108864 - 0 - Drugi naj vedo, katero glasbo vrtite na iTunes-ih - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {399, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Vnesite naslov svojega strežnika XMPP: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Strežnik: - - - - - - NO - 1 - - - - 265 - {{346, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {42, 17}} - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - ali izberite javen strežnik s seznama: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Ime strežnika - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {217, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Zahtevaj nov račun - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Prekliči - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {186, 228} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 186 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.68859649122807021 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{232, 58}, {203, 19}} - - YES - - -2080374784 - 134217728 - Obiščite domačo stran strežnika - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1280, 778}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5ad735c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 76b3923..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1526 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - - YES - - 67108864 - 0 - Dovoli direktne povezave - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{394, 85}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 87}, {120, 17}} - - - YES - - 67108864 - 71303168 - Prijavni strežnik: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - - YES - - 67108864 - 0 - Preveri novo pošto - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - - YES - - 67108864 - 71303168 - E-naslov: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {42, 17}} - - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - - YES - - 67108864 - 0 - Poveži se preko HTTP-ja - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - - YES - - 68157504 - 71304192 - Smejčki: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Prikaži smejčke po meri - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {445, 107} - - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {98, 17}} - - YES - - 67108864 - 4194304 - Prikazano ime: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Drugi naj vedo, kdaj tipkate - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{11, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Tipkanje: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Šifriranje: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{11, 0}, {75, 17}} - - YES - - 67108864 - 71303168 - Glasba: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Drugi naj vedo, kaj poslušate na iTunes-ih - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index c982283..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index ec41f64..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - - YES - - 67108864 - 71303168 - Uporabnik: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - - YES - - 67108864 - 71303168 - Geslo: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - - YES - - 67108864 - 71303168 - Strežnik: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Prijava: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {295, 18}} - - YES - - 67108864 - 0 - Vsili prijavo (prezri preusmeritve strežnika) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Skrij identiteto klienta - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {453, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2e36367..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 1f710de..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,524 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - - YES - - 67108864 - 71303168 - Uporabniško ime: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - - YES - - 67108864 - 71303168 - Geslo: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - - YES - - 67108864 - 71303168 - Strežnik: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {42, 17}} - - - YES - - 67108864 - 71303168 - Vrata: - - - - - - NO - 1 - - - - 264 - {{400, 37}, {48, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {468, 89} - - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index de7995f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index db0e505..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1054 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{170, -1}, {188, 18}} - - YES - - 67108864 - 0 - Stanje naj bo vidno vsem - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{170, 78}, {315, 18}} - - - YES - - 67108864 - 0 - Uporabi UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{170, 104}, {249, 18}} - - - YES - - 67108864 - 0 - Uporabi posredniški strežnik za SIP: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{425, 102}, {160, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 105}, {123, 17}} - - - YES - - 67108864 - 71303168 - Povezava: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {170, 17}} - - - YES - - 67108864 - 71303168 - Uporabnik za avtorizacijo: - - - - - - NO - 1 - - - - 264 - {{-3, 0}, {170, 17}} - - - YES - - 67108864 - 71303168 - Stanje: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {170, 17}} - - - YES - - 67108864 - 71303168 - Domena za avtorizacijo: - - - - - - NO - 1 - - - - 256 - {{172, 50}, {195, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{172, 23}, {195, 22}} - - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {585, 124} - - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Geslo: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Prikazano ime: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Strežnik: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index b3aefed..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 28204e4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{396, 70}, {42, 17}} - - - YES - - 67108864 - 71303168 - Vrata: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{443, 68}, {51, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{46, 17}, {140, 17}} - - - YES - - 67108864 - 71303168 - E-naslov: - - - - - - NO - 1 - - - - 264 - {{191, 68}, {200, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{46, 70}, {140, 17}} - - - YES - - 67108864 - 71303168 - Prijavni strežnik: - - - - - - NO - 1 - - - - 264 - {{189, 16}, {147, 18}} - - YES - - 67108864 - 0 - Preveri novo pošto - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{17, 42}, {169, 17}} - - - YES - - 67108864 - 71303168 - Strežnik s klepetalnicami: - - - - - - NO - 1 - - - - 264 - {{188, 36}, {206, 26}} - - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {514, 90} - - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 978e41f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index d79701a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1305 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - - YES - - 67108864 - 71303168 - Uporabniško ime: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr potrebuje pravilno konfiguracijo Kerberosa. Zephyr uporablja vaš UNIX UID ali vaše uporabniško ime za Kerberos; zgornje uporabniško ime je zgolj za interno uporabo v Adium-u. Priporočena je uporaba ene same Zephyrove povezave naenkrat. Uporaba internega upravljalca gostiteljev ni združljiva z nobenim drugim procesom 'zhm' (zephyr host manager), ki bi utegnil teči na istem računalniku. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Izvozi v .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Izvozi v .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Izpostavljenost: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Kodna tabela: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Izvozi: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Strežnik - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Strežniki: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Upravljalec gostiteljev: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {259, 18}} - - - YES - - 67108864 - 0 - Uporabi interni upravljalec gostiteljev - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7c30808..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/Localizable.strings deleted file mode 100644 index 7bc29dd..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sl.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 79d793d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - För att ansluta till Facebook chatt, måste du ge Adium tillåtelse. Ett säkert Facebook inloggningsfönster visas när du klickar på Tillåt åtkomst. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Senaste statusinformation visas här. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Tillåt åtkomst - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 476f4d3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 6d57ae8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,749 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Chattrum: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Användarnamn: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {273, 14}} - - YES - - 67108864 - 4194304 - Skilj kontakternas namn åt med kommatecken. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjud in kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Med meddelande: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 73d51fe..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index aa83e39..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,376 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Ämne: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {272, 14}} - - YES - - 67108864 - 4194304 - Skilj kontakternas namn åt med kommatecken. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjud in kontakter: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a81dcb3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index ee3fe65..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,469 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Chattrum: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Med meddelande: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjud in kontakter: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {272, 14}} - - YES - - 67108864 - 4194304 - Skilj kontakternas namn åt med kommatecken. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index f32af69..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 423704c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,459 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Chattrum: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Med meddelande: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {272, 14}} - - YES - - 67108864 - 4194304 - Skilj kontakternas namn åt med kommatecken. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Bjud in kontakter: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c4be9b4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 334131b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Klass: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instans: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Mottagare: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 54c168a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 90d028d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 0}, {160, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 56}, {160, 17}} - - YES - - 67108864 - 71303168 - Smeknamn: - - - - - - NO - 1 - - - - 264 - {{95, 54}, {245, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{95, -2}, {245, 22}} - - YES - - -1804599231 - 4195328 - - - (valfritt) - - YES - - - - NO - 1 - - - - 264 - {{95, 26}, {245, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 28}, {92, 17}} - - YES - - 67108864 - 71303168 - Värdnamn: - - - - - - NO - 1 - - - {340, 76} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Kryptera anslutning med SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - Ett per rad, / är valfritt. $me kommer att ersättas med ditt smeknamn. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Utför kommandon vid anslutning: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Textkodning: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 26}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{41, 28}, {89, 17}} - - YES - - 68157504 - 272630784 - Riktigt namn: - - - - - - NO - 1 - - - - 268 - {{135, -2}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{13, 0}, {117, 17}} - - YES - - 68157504 - 272630784 - Anv.namn (Ident): - - - - - - NO - 1 - - - {340, 48} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1474dc9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 28cee2b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Alias: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Ingen kryptering - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Använd kryptering när tillgängligt - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Kräv kryptering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -1}, {306, 18}} - - YES - - 67108864 - 0 - Tillåt flera samtidiga inloggningar - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Flera inloggningar: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Sök efter ny e-post - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Använd alltid proxy för filöverföringar - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index ae78744..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index b3a00cf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,726 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Användarnamn: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrera nytt konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESPurpleGaduGaduAccountViewController - PurpleAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 72ae8c4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 9c7ac94..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - Ingen kryptering - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Använd kryptering när tillgängligt - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Kräv kryptering - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodning: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Använd alltid proxy för filöverföringar - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Låt andra veta när jag skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Tillåt vem som helst att se min status - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Webb: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index ad1a140..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 63cc200..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 90}, {104, 17}} - - YES - - 67108864 - 71303168 - Användarnamn: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - användarnamn@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Registrera nytt konto - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - Registrerar… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {246, 18}} - - YES - - 67108864 - 0 - Tillåt autentisering utan krypering - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {196, 18}} - - YES - - 67108864 - 0 - Tvinga gammal typ av SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {227.25390625, 18}} - - YES - - 67108864 - 0 - Visa meddelande för ny e-post - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Server: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Anslutningsserver: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - Filöverföringsproxy: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Resurs: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Säkerhet: - - - - - - NO - 1 - - - - 256 - {{17, 192}, {140, 17}} - - YES - - 67108864 - 71303168 - Tillgänglig prioritet: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{221.28125, 192}, {102.71875, 17}} - - YES - - 67108864 - 71303168 - Borta prioritet: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Fråga - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Acceptera - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Acceptera och lägg till - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Neka - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Prenumration närvaro: - - - - - - NO - 1 - - - - 268 - {{50.78515625, 2}, {159.21484375, 17}} - - YES - - 67108864 - 71303168 - ...lägg till i lista i grupp: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Kräv SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Gör strikt cerifikatkontroll - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 138}, {140, 17}} - - YES - - 67108864 - 71303168 - Smileys: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Visa personliga smileys - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Låt andra veta när jag skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{40.265625, 0}, {46.734375, 17}} - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Låt andra veta vad jag lyssnar på - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {316, 17}} - - YES - - 67108864 - 272629760 - Antingen skriv in din XMPP serveradress här: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - eller välj en publik server från listan: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Servernamn - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Begär nytt konto - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Avbryt - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Besök serverns hemsida - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1042, 406}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 8dc2c26..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index a5e7bee..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 41}, {279, 18}} - - YES - - 67108864 - 0 - Tillåt direkt anslutning - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{10.4140625, 87}, {126.5859375, 17}} - - YES - - 67108864 - 71303168 - Inloggningsserver: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - Sök efter ny e-post - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 22}, {120, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{140, 61}, {279, 18}} - - YES - - 67108864 - 0 - Anslut via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{17, 2}, {120, 17}} - - YES - - 68157504 - 71304192 - Smileys: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {279, 18}} - - YES - - 67108864 - 0 - Visa personliga smileys - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Smeknamn: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Låt andra veta när jag skriver - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Skriver: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Kryptering: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{34, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Musik: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Låt andra veta vad jag lyssnar på - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0a19bf4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 0a52bde..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,691 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Användare: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Inloggning: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - Tvinga inloggning - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - Göm klientens identitet - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 3430635..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 7f970d5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Användarnamn: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index fc5b84a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 7f9d479..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1044 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, 1}, {260, 18}} - - YES - - 67108864 - 0 - Skicka min status till alla användare - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 84}, {200, 18}} - - YES - - 67108864 - 0 - Använd UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - SIP-proxy: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Anslutning: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 58}, {148, 17}} - - YES - - 67108864 - 71303168 - Användare: - - - - - - NO - 1 - - - - 264 - {{22, 2}, {123, 17}} - - YES - - 67108864 - 71303168 - Status: - - - - - - NO - 1 - - - - 264 - {{-3, 27}, {148, 17}} - - YES - - 67108864 - 71303168 - Domän: - - - - - - NO - 1 - - - - 256 - {{150, 56}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 25}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Lösenord: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Smeknamn: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7e5f209..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 224785e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-post: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Server: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Sök efter ny e-post - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Server för rumslista: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - -1 - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index e4ee7c0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index efe5015..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1307 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Användarnamn: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - WmVwaHlyIGtyw6R2ZXIgYXR0IGVuIGtvcnJla3Qga29uZmlndXJlcmFkICJaZXBoeXIgaG9zdCBtYW5h -Z2VyIi1kZW1vbiAoemhtKSBrw7ZyczsgZGV0dGEga3LDpHZlciBpbmRpcmVrdCBvY2tzw6UgZW4ga29y -cmVrdCBLZXJiZXJvcy1rb25maWd1cmVyaW5nLgpaZXBoeXIgYW52w6RuZGVyIGRpdHQgVU5JWCBVSUQg -ZWxsZXIgZGl0dCBLZXJiZXJvcy1uYW1uOyBhbnbDpG5kYXJuYW1uZXQgb3ZhbiBhbnbDpG5kcyBlbmJh -cnQgaW50ZXJudCBhdiBBZGl1bS4gRW5kYXN0IGVuIFplcGh5ci11cHBrb3BwbGluZyDDpXQgZ8Olbmdl -biByZWtvbW1lbmRlcmFzLg - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - Exportera till .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - Exportera till .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exponering: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - Teckenkodning: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - Exportera: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - Servrar: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - Värdhanterare: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - Använd intern värdhanterare - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7a4c4de..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/Localizable.strings deleted file mode 100644 index 50e0e27..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/sv.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index df1fb1e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Sohbet Odası: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Handle: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Parola: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - Kişi isimlerini virgül ile ayırın. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Kişileri Davet Et: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Şu Mesajla: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index bb8b393..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 2d8f1cb..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Konu: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - Kişi isimlerini virgülle ayırabilirsiniz. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Kişileri Davet Et: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index e4a0395..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index ee34b32..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,468 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - Sohbet Odası Adı: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - Şu mesajla: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - Kişileri Davet Et: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - Kişi isimlerini virgülle ayırabilirsiniz. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index b987751..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 91ad6c7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,458 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - Sohbet Odası Adı: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Şu mesajl: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - Kişi isimlerini virgülle ayırabilirsiniz. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Kişileri Davet Et: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0157d94..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index be1df16..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Class: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Instance: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Alıcı: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 04bc93a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index ce8749e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Parola: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - Rumuz: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - nick - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (isteğe bağlı) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - Sunucu adı: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - Bağlantıyı SSL ile şifrele - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{103, 236}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {417, 17}} - - YES - - 68157504 - 272761856 - Her satıra bir adet, / işareti isteğe bağlı. $me rumuzunuzla değiştirilecektir. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - Bağlanınca komutları uygula: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodlama: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - Gerçe Ad: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - Kullanıcı adı (Tanıtma): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index ffbe6ad..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index df407a8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - Rumuz: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - Profil: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - Yeni Posta için denetle - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - Dosya aktarımı ve doğrudan konuşma için her zaman proxy kullan - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - Oturum Açma Sunucusu: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Eposta: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Sunucusu: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - Güvenlik - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4701d5a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index af3e548..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Şifreleme: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Parola: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı Adı: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Yeni Hesap Aç - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 4f47e81..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 4ba5a90..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Metin Kodlaması: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Oturum Açma Sunucusu: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Dosya aktırmları için her zaman proxy kullan - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOLProxy Sunucusu: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Yazdığınızdan diğerlerinin haberi olsun - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Yazı: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Diğerleri web'te durumumu görebilsin - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Farkındalığı: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Şifreleme: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5442a0a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 08f0e5d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - Parola: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{10, 90}, {111, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı Adı: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - kullaniciadi@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {96, 14}} - - YES - - 67108864 - 272629760 - Kayıt Olunuyor - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {239, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {183, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {246, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH Sunucusu: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - Sunucuya Bağlan: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-22, 255}, {179, 17}} - - YES - - 67108864 - 71303168 - Dosya Aktarımı Proxy'leri: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - Kaynak: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - Posta: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - Güvenlik: - - - - - - NO - 1 - - - - 256 - {{-3, 192}, {160, 17}} - - YES - - 67108864 - 71303168 - Çevrimiçi Önceliği: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {54, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{200, 192}, {124, 17}} - - YES - - 67108864 - 71303168 - Uzakta Önceliği: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {233, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Ne Yapılması Gerektiğini Sor - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Kabul Et - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Kabul Et ve Listeye Ekle - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Reddet - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - Varlık Abonelikleri: - - - - - - NO - 1 - - - - 268 - {{36, 2}, {174, 17}} - - YES - - 67108864 - 71303168 - ...şu gruptaki listeye ekle: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {246, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - Mimikler: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Yazı: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Şifreleme: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{35, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Müzik: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Buraya XMPP sunucu adresini girin: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - ya da listeden açık bir sunucu seçin: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {197, 204} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 197 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {186, 157} - - - - {{1, 1}, {186, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.76960784313725494 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133842 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index b735ad8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index 78bdf41..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {163, 17}} - - YES - - 67108864 - 71303168 - Oturum Açma Sunucusu: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{165, 71}, {177, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{163, 23}, {198, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{20, 25}, {140, 17}} - - YES - - 67108864 - 71303168 - Eposta: - - - - - - NO - 1 - - - - 264 - {{347, 73}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{163, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{97, 1}, {63, 17}} - - YES - - 68157504 - 272630784 - Mimikler: - - - - - - NO - 1 - - - - 268 - {{163, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - Görünen İsim: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{34, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - Yazı: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Şifreleme: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{34, 0}, {52, 17}} - - YES - - 67108864 - 71303168 - Müzik: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index c979343..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 8d3d3b1..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Parola: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Oturum Açma: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {370, 18}} - - YES - - 67108864 - 0 - Zorla oturum aç (sunucu yönlendirmelerini gözardı et) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - İstemci kimliğini gizle - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {528, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index 1b537c9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index a21d958..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı Adı: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Parola: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 264 - {{347, 39}, {40, 17}} - - YES - - 67108864 - 71303168 - Kapı: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0f43a68..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 2188d0b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - Durumumu Herkese Yayınla - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - UDP kullan - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {136, 18}} - - YES - - 67108864 - 0 - SIP Proxy Kullan: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{295, 102}, {131, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - Bağlantı: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Durum: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - Yetki Alan Adı: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Parola: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Görünen İsim: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index 398fb9b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 20fcae2..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,599 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{347, 70}, {40, 17}} - - YES - - 67108864 - 71303168 - Kapı: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{392, 68}, {45, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - E-posta: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - Sunucu: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - Yeni eposta denetle - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - Oda Liste Sunucusu: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 031ffca..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index fe6ea27..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1035 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - Kullanıcı Adı: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr doğru ayarlanmış bir Zephyr host manager (zhm) daemon'un çalışmasını gerektirir; bu aynı zamanda düzgün kurulmuş bir Kerberos konfigurasyonuna bağımlılık anlımanı gelmektedir. Zephyr sizin UNIX UID veya Kerberos isminizi kullanmaktadır; yukarıda girdiğiniz isim sadece sizin Adium içi kullanımınız içindir. Aynı anda sadece bir Zephyr bağlantısı kurulması tavsiye edilir. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Exposure: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Kodlama: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Dışa Aktar... - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Servers: - - - - - - NO - 1 - - - - 36 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 36 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Host Manager: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - Use internal host manager - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0ced1d5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/Localizable.strings deleted file mode 100644 index 1dc0535..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/tr.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index aa8c5ba..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,854 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - Назв. кімнати: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - Псевдонім: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {273, 14}} - - YES - - 67108864 - 4194304 - Розділяйте імена співрозмовників комами. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - Запросити: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - Повідомлення: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimJabberJoinChatViewController - DCJoinChatViewController - - browse: - id - - - browse: - - browse: - id - - - - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - - - - textField_handle - NSTextField - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_password - NSTextField - - - textField_roomName - NSTextField - - - textField_server - NSTextField - - - - IBProjectSource - ./Classes/DCGaimJabberJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 2f6549f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index 1ac2dd8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,450 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - Тема: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {272, 14}} - - YES - - 67108864 - 4194304 - Розділяйте імена співрозмовників комами. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - Запросити: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimMeanwhileJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteUsers - NSTextField - - - textField_topic - NSTextField - - - - IBProjectSource - ./Classes/DCGaimMeanwhileJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 65904c3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index c94fef5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,577 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 159}, {132, 17}} - - YES - - 67108864 - 71303168 - Назв. кімнати: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{134, 157}, {254, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{134, 10}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {132, 17}} - - YES - - 67108864 - 71303168 - Повідомлення: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {132, 17}} - - YES - - 67108864 - 71303168 - Запросити: - - - - - - NO - 1 - - - - 256 - {{134, 89}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{131, 75}, {260, 14}} - - YES - - 67108864 - 4194304 - Розділяйте імена співрозмовників комами. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - - - AICompletingTextField - AITextFieldWithDraggingDelegate - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - AITextFieldWithDraggingDelegate - NSTextField - - dragDelegate - id - - - dragDelegate - - dragDelegate - id - - - - IBProjectSource - ./Classes/AITextFieldWithDraggingDelegate.h - - - - DCGaimOscarJoinChatViewController - DCJoinChatViewController - - NSScrollView - NSTableView - NSTextField - NSTextField - NSTextField - - - - scrollView_inviteUsers - NSScrollView - - - tableView_inviteUsers - NSTableView - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - textField_roomName - NSTextField - - - - IBProjectSource - ./Classes/DCGaimOscarJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a20fdd4..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index f923f79..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,538 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-2, 149}, {132, 17}} - - YES - - 67108864 - 71303168 - Назв. кімнати: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{135, 147}, {254, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{135, 1}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{10, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - Повідомлення: - - - - - - NO - 1 - - - - 256 - {{132, 65}, {260, 14}} - - YES - - 67108864 - 4194304 - Розділяйте імена співрозмовників комами. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{135, 79}, {254, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{10, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - Запросити: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - - - AICompletingTextField - NSTextField - - IBProjectSource - ./Classes/AICompletingTextField.h - - - - DCGaimYahooJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - - - - textField_inviteMessage - NSTextField - - - textField_inviteUsers - NSTextField - - - - IBProjectSource - ./Classes/DCGaimYahooJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSTextField - NSView - NSView - - - - popUp_service - NSPopUpButton - - - textField_roomName - NSTextField - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c20c9a8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 34ce679..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,499 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - Клас: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - Екземпляр: - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - Одержувач: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - - - DCGaimZephyrJoinChatViewController - DCJoinChatViewController - - NSTextField - NSTextField - NSTextField - - - - textField_class - NSTextField - - - textField_instance - NSTextField - - - textField_recipient - NSTextField - - - - IBProjectSource - ./Classes/DCGaimZephyrJoinChatViewController.h - - - - DCJoinChatViewController - NSWindowController - - id - id - - - - closeWindow: - id - - - joinChat: - id - - - - NSPopUpButton - NSView - NSView - - - - popUp_service - NSPopUpButton - - - view - NSView - - - view_customView - NSView - - - - IBProjectSource - ./Classes/DCJoinChatViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 951c871..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 3a00456..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {157, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {157, 17}} - - YES - - 67108864 - 71303168 - Псевдонім: - - - - - - NO - 1 - - - - 264 - {{92, 56}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - псевдонім - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{92, 0}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - (не обов'язково) - - YES - - - - NO - 1 - - - - 264 - {{92, 28}, {223, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {89, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{172, 236}, {264, 18}} - - YES - - 67108864 - 0 - Захистити з'єднання використовуючи SSL - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{115, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{68, 236}, {42, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {469, 17}} - - YES - - 68157504 - 272761856 - Одна команда в стрічку, / необов. $me буде замінена вашим псевдонімом. - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {446, 131} - - - - - - - - - - - - - 38 - - - - 446 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {805, 10000000} - - - - {{1, 1}, {446, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{447, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {463, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {499, 182}} - - - - {{-2, -4}, {501, 198}} - - {0, 0} - - 67108864 - 0 - Виконати команди при з'єднанні: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{23, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрування: - - - - - - NO - 1 - - - - 264 - {{164, 202}, {273, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {496, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{144, 32}, {196, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{23, 34}, {116, 17}} - - YES - - 68157504 - 71304192 - Справжнє ім'я: - - - - - - NO - 1 - - - - 268 - {{144, 0}, {196, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {125, 17}} - - YES - - 68157504 - 272630784 - Ім'я користувача: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 84eb83b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 2bdf824..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1210 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{87, 125}, {253, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {85, 17}} - - YES - - 67108864 - 71303168 - Псевдонім: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {85, 17}} - - YES - - 67108864 - 71303168 - Профіль: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {251, 115} - - - - - - - - - - - - - 38 - - - - 251 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {570, 10000000} - - - - {{1, 1}, {251, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{87, 0}, {253, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{160, 48}, {269, 18}} - - YES - - 67108864 - 0 - Перевіряти наявність нових повідомлень - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 23}, {425, 18}} - - YES - - 67108864 - 0 - Завжди використовувати проксі для передачі файлів і Direct IM - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, -2}, {284, 18}} - - YES - - 67108864 - 0 - Захистити з'єднання використовуючи SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 77}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер входу: - - - - - - NO - 1 - - - - 264 - {{162, 74}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{421, 74}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{367, 76}, {49, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{17, 49}, {140, 17}} - - YES - - 67108864 - 71303168 - Електронна пошта: - - - - - - NO - 1 - - - - 264 - {{17, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Проксі-сервер AOL: - - - - - - NO - 1 - - - - 264 - {{17, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - Безпека: - - - - - - NO - 1 - - - {603, 96} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - changedPreference: - - - - 207 - - - - checkBox_SSL - - - - 225 - - - - checkBox_proxyServer - - - - 226 - - - - delegate - - - - 150 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 239 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 242 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index b83ad20..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index e9479da..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,699 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрування - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - Ім'я користувача: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{139, 12}, {252, 32}} - - YES - - 67108864 - 134217728 - Зареєструвати обліковий запис - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESPurpleGaduGaduAccountViewController - AIAccountViewController - - registerNewAccount: - id - - - registerNewAccount: - - registerNewAccount: - id - - - - IBProjectSource - ./Classes/ESPurpleGaduGaduAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index b29fd70..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index fe1cee8..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1403 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-1, 53}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрування: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{141, 47}, {198, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{341, 81}, {42, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{144, 79}, {192, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{388, 79}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-1, 81}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер входу: - - - - - - NO - 1 - - - - 264 - {{143, 24}, {352, 18}} - - YES - - 67108864 - 0 - Завжди використовувати проксі для передачі файлів - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, -1}, {284, 18}} - - YES - - 67108864 - 0 - Захистити з'єднання використовуючи SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-1, 25}, {140, 17}} - - YES - - 67108864 - 71303168 - Проксі-сервер AOL: - - - - - - NO - 1 - - - - 264 - {{-1, 0}, {140, 17}} - - YES - - 67108864 - 71303168 - Безпека: - - - - - - NO - 1 - - - {498, 101} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{134, 24}, {256, 18}} - - YES - - 67108864 - 0 - Сповіщати співрозмовників про набір тексту - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{33, 25}, {98, 17}} - - YES - - 67108864 - 71303168 - Набір тексту: - - - - - - NO - 1 - - - - 264 - {{134, -1}, {305, 18}} - - YES - - 67108864 - 0 - Показувати мій статус через веб-сторінку - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{7, 0}, {124, 17}} - - YES - - 67108864 - 71303168 - Текстовий статус: - - - - - - NO - 1 - - - - 264 - {{33, 54}, {98, 17}} - - YES - - 67108864 - 71303168 - Шифрування - - - - - - NO - 1 - - - - 264 - {{133, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_SSL - - - - 291 - - - - checkBox_proxyServer - - - - 292 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 266 - - - - - - - - 267 - - - - - - - - 268 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 302 - - - - - 303 - - - - - 304 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 310 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSButton - NSButton - NSPopUpButton - - - - checkBox_SSL - NSButton - - - checkBox_proxyServer - NSButton - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - checkBox_broadcastMusic - NSButton - - - checkBox_broadcastMusic - - checkBox_broadcastMusic - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index c145de8..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 077a37c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3761 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{17, 66}, {134, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 91}, {134, 17}} - - YES - - 67108864 - 71303168 - Ім'я користувача: - - - - - - NO - 1 - - - - 264 - {{156, 89}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{156, 61}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 13}, {252, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 20}, {110, 17}} - - YES - - 67108864 - 272629760 - Реєструю… - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{195, 112}, {242, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{195, 92}, {198, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{195, 159}, {264, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{197, 282}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{52, 284}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер BOSH: - - - - - - NO - 1 - - - - 264 - {{197, 310}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{40, 312}, {152, 17}} - - YES - - 67108864 - 71303168 - Сервер з'єднання: - - - - - - NO - 1 - - - - 264 - {{197, 252}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 254}, {175, 17}} - - YES - - 67108864 - 71303168 - Проксі передачі файлів: - - - - - - NO - 1 - - - - 264 - {{364, 222}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{318, 224}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{197, 222}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{52, 224}, {140, 17}} - - YES - - 67108864 - 71303168 - Ресурс: - - - - - - NO - 1 - - - - 264 - {{52, 160}, {140, 17}} - - YES - - 67108864 - 71303168 - Пошта: - - - - - - NO - 1 - - - - 264 - {{52, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - Безпека: - - - - - - NO - 1 - - - - 256 - {{17, 191}, {175, 17}} - - YES - - 67108864 - 71303168 - Пріоритет доступності: - - - - - - NO - 1 - - - - 256 - {{197, 188}, {76, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{278, 191}, {81, 17}} - - YES - - 67108864 - 71303168 - Відсутність: - - - - - - NO - 1 - - - - 256 - {{364, 187}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{194, 22}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Запитати, що робити - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Прийняти - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - Прийняти і додати в список - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - Відхилити - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{10, 28}, {182, 17}} - - YES - - 67108864 - 71303168 - Підписки на присутність: - - - - - - NO - 1 - - - - 268 - {{104, 1}, {161, 17}} - - YES - - 67108864 - 71303168 - ...додати до групи: - - - - - - NO - 1 - - - - 266 - {{268, -4}, {172, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{195, 72}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{195, 52}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{110, 137}, {82, 17}} - - YES - - 68157504 - 272630784 - Смайлики: - - - - - - NO - 1 - - - - 268 - {{195, 136}, {244, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {457, 332} - NSView - NSResponder - - - - 256 - - - - 264 - {{115, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{13, 25}, {99, 17}} - - YES - - 67108864 - 71303168 - Набір тексту: - - - - - - NO - 1 - - - - 264 - {{20, 54}, {92, 17}} - - YES - - 67108864 - 71303168 - Шифрування - - - - - - NO - 1 - - - - 264 - {{114, 48}, {365, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{32, 0}, {80, 17}} - - YES - - 67108864 - 71303168 - Музика: - - - - - - NO - 1 - - - - 264 - {{115, -1}, {363, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {496, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - Введіть адресу XMPP-сервера: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 265 - {{347, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {421, 17}} - - YES - - 67108864 - 272629760 - Або виберіть публічний сервер із списку: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{198, 12}, {243, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {103, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {208, 204} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 208 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - {{5, 0}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.76960784313725494 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133842 - - - - 0.25 - 4 - 1 - - - - 265 - {{247, 58}, {188, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - NSObject - - selectServiceType: - id - - - selectServiceType: - - selectServiceType: - id - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 08e534a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index dfff169..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1439 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер входу: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {191, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - Електронна пошта: - - - - - - NO - 1 - - - - 264 - {{338, 73}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{55, 0}, {82, 17}} - - YES - - 68157504 - 272630784 - Смайлики: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {242, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {322, 17}} - - YES - - 67108864 - 4194304 - Ім'я для відображення: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{102, 23}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 25}, {102, 17}} - - YES - - 67108864 - 71303168 - Набір тексту: - - - - - - NO - 1 - - - - 264 - {{-3, 54}, {102, 17}} - - YES - - 67108864 - 71303168 - Шифрування - - - - - - NO - 1 - - - - 264 - {{101, 47}, {365, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{-3, 0}, {102, 17}} - - YES - - 67108864 - 71303168 - Музика: - - - - - - NO - 1 - - - - 264 - {{102, -2}, {363, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {469, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 301 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 61a4e1b..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 95666d4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,837 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{123, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{17, 69}, {101, 17}} - - YES - - 67108864 - 71303168 - Користувач: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{17, 9}, {101, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{123, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{123, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 39}, {101, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{329, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{380, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{-3, 39}, {104, 17}} - - YES - - 67108864 - 71303168 - Вхід: - - - - - - NO - 1 - - - - 264 - {{104, 18}, {293, 18}} - - YES - - 67108864 - 0 - Ігнорувати перенаправлення сервера - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{104, 38}, {250, 18}} - - YES - - 67108864 - 0 - Приховувати назву програми - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {395, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimMeanwhileAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_fakeClientId - NSButton - - - checkBox_forceLogin - NSButton - - - - IBProjectSource - ./Classes/ESGaimMeanwhileAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index f1aae74..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 8e8a988..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,613 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{142, 67}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - Ім'я користувача: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {199, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{341, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - Порт: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimNovellAccountViewController - AIAccountViewController - - IBProjectSource - ./Classes/ESGaimNovellAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7beeb6f..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index e5dc141..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1190 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 256 - {{141, -2}, {188, 18}} - - YES - - 67108864 - 0 - Опублікувати для всіх - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{141, 77}, {315, 18}} - - YES - - 67108864 - 0 - Використовувати UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{141, 103}, {190, 18}} - - YES - - 67108864 - 0 - Використовувати SIP-проксі: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{337, 101}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{15, 104}, {123, 17}} - - YES - - 67108864 - 71303168 - З'єднання: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 49}, {141, 17}} - - YES - - 67108864 - 71303168 - Користувач: - - - - - - NO - 1 - - - - 264 - {{15, -1}, {123, 17}} - - YES - - 67108864 - 71303168 - Статус: - - - - - - NO - 1 - - - - 264 - {{-3, 24}, {141, 17}} - - YES - - 67108864 - 71303168 - Домен авторизації: - - - - - - NO - 1 - - - - 256 - {{143, 49}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{143, 22}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {497, 123} - NSView - NSResponder - - - - 256 - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - Пароль: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Ім'я для відображення: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервер: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimSimpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_publishStatus - NSButton - - - checkBox_useUDP - NSButton - - - - IBProjectSource - ./Classes/ESGaimSimpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index d24bf33..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 922dd76..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,710 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{382, 72}, {43, 17}} - - YES - - 67108864 - 71303168 - Порт: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{430, 70}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{17, 19}, {155, 17}} - - YES - - 67108864 - 71303168 - Електронна пошта: - - - - - - NO - 1 - - - - 264 - {{177, 70}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{25, 72}, {147, 17}} - - YES - - 67108864 - 71303168 - Сервер входу: - - - - - - NO - 1 - - - - 264 - {{175, 18}, {269, 18}} - - YES - - 67108864 - 0 - Перевіряти наявність нових повідомлень - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{17, 44}, {155, 17}} - - YES - - 67108864 - 71303168 - Сервер списку кімнат: - - - - - - NO - 1 - - - - 264 - {{174, 38}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {504, 92} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - ESGaimYahooAccountViewController - AIAccountViewController - - popUp_chatServer - NSPopUpButton - - - popUp_chatServer - - popUp_chatServer - NSPopUpButton - - - - IBProjectSource - ./Classes/ESGaimYahooAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index eef0edb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index 6b0b444..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1228 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{27, 183}, {140, 17}} - - YES - - 67108864 - 71303168 - Ім'я користувача: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{172, 181}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{42, 20}, {374, 139}} - - YES - - 71303168 - 4194304 - Правильно налаштований Kerberos потрібен для роботи Zephyr. Zephyr використовує UNIX UID або ім'я Kerberos; ім'я користувача вище необхідне виключно для внутрішнього використання в Adium. Не рекомендується використовувати більше ніж одне з'єднання Zephyr одночасно. Використання внутрішнього менеджера хостів викличе конфлікт з іншими інстанціями 'zhm', які запущені на цьому комп'ютері. - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 203} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - Експортувати в .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - Експортувати в .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - Експозиція: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - Шифрування: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - Експорт: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Сервер - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - Сервери: - - - - - - NO - 1 - - - - 292 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 292 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - Менеджер хостів: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {308, 18}} - - YES - - 67108864 - 0 - Використовувати внутрішній менеджер хостів - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 270 - - - - - AIAccountViewController - AIObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - AIObject - NSObject - - IBProjectSource - ./Classes/AIObject.h - - - - AIPlasticButton - NSPopUpButton - - IBProjectSource - ./Classes/AIPlasticButton.h - - - - AIPlasticMinusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticMinusButton.h - - - - AIPlasticPlusButton - AIPlasticButton - - IBProjectSource - ./Classes/AIPlasticPlusButton.h - - - - ESGaimZephyrAccountViewController - AIAccountViewController - - id - id - - - - addRowToServerList: - id - - - removeSelectedRowFromServerList: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - minus_servers - NSButton - - - plus_servers - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESGaimZephyrAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 00e97a9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/Localizable.strings deleted file mode 100644 index 31379e0..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/uk.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2e1aebd..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - To connect to Facebook Chat, you must give Adium permission. A secure Facebook login screen will be shown when you click Allow Access. - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - Current status information will go here. - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - Allow Access - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index c09b3cc..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 05b0b99..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,748 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{122, 242}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 247}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名称: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 212}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 217}, {120, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 256 - {{122, 182}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 187}, {120, 17}} - - YES - - 67108864 - 71303168 - 处理: - - - - - - NO - 1 - - - - 256 - {{122, 152}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 157}, {120, 17}} - - YES - - 67108864 - 71303168 - 密码: - - - - - - NO - 1 - - - - 256 - {{119, 71}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗号分隔联系人的名称。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 124}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀请联系人: - - - - - - NO - 1 - - - - 256 - {{122, 84}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 46}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用信息: - - - - - - NO - 1 - - - - 256 - {{122, 6}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {393, 264} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 29f2d85..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index f4fe147..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,375 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - 主题: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗号分隔联系人的名称。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀请联系人: - - - - - - NO - 1 - - - - 256 - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index a8a51b5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 880bde6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,468 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名称: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用信息: - - - - - - NO - 1 - - - - 256 - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀请联系人: - - - - - - NO - 1 - - - - 256 - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗号分隔联系人的名称。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 352ec22..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 470cb8d..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,458 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名称: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用信息: - - - - - - NO - 1 - - - - 256 - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗号分隔联系人的名称。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀请联系人: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index ff6b9ba..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 9682a22..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,427 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - 类别 (class): - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 256 - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - 范例 (instance): - - - - - - NO - 1 - - - - 256 - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - 256 - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - 接收人: - - - - - - NO - 1 - - - - 256 - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 47a72fa..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index b89f326..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1410 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - 密码: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - 昵称: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - 昵称 - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (可选) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - 主机名: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - 使用 SSL 加密连接 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{92, 236}, {45, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - 每行一个命令, / 可选。 $me 将被你当前的昵称替换。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - - {394, 131} - - - - - - - - - - - - - 38 - - - - 394 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 128}} - - NO - - _doScroller: - 0.98639458417892456 - - - - 256 - {{-100, -100}, {410, 15}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133138 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - 执行连接命令: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-4, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - 编码: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - 真实姓名: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{36, 4}, {116, 17}} - - YES - - 68157504 - 272630784 - 用户名 (身份): - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index ecaa831..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index efa7fb3..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1605 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{54, 125}, {286, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {52, 17}} - - YES - - 67108864 - 71303168 - 别名: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {52, 17}} - - YES - - 67108864 - 71303168 - 概况: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {284, 115} - - - - - - - - - - - - - 38 - - - - 284 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {284, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{54, 0}, {286, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, -84}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - - - - - - 264 - {{123, -108}, {306, 18}} - - YES - - 67108864 - 0 - Allow multiple logins - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -107}, {140, 17}} - - YES - - 67108864 - 71303168 - Multiple Logins: - - - - - - NO - 1 - - - - 264 - {{140, 6}, {273, 18}} - - YES - - 67108864 - 0 - 核查新邮件 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, -19}, {326, 18}} - - YES - - 67108864 - 0 - 总是使用代理服务器进行文件及远程信息传输 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-3, 35}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入服务器: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{386, 32}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{347, 34}, {43, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 264 - {{-3, 7}, {140, 17}} - - YES - - 67108864 - 71303168 - 电子邮件: - - - - - - NO - 1 - - - - 264 - {{-20, -18}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL 代理服务器: - - - - - - NO - 1 - - - - 264 - {{-20, -43}, {140, 17}} - - YES - - 67108864 - 71303168 - 安全: - - - - - - NO - 1 - - - {460, 54} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index f8b2880..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index 3ea182f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,546 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2076180416 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - 加密: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - 密码: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - 用户名: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - 注册新账号 - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index f874b02..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 5ef5538..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1641 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - No encryption - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - Use encryption when available - - - 1 - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAwYAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMGGFw -cGwCAAAAbW50clJHQiBYWVogB9YABAADABMALAASYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1hcHBsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA -AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA -BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAAubW1vZAAAC8AAAAAoY3BydAAAC+gAAAAtWFlaIAAA -AAAAAF1KAAA0kQAACCVYWVogAAAAAAAAdCAAALRgAAAjPVhZWiAAAAAAAAAlbAAAFyoAAKfDWFlaIAAA -AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 -cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD -AQAAAQACBAUGBwkKCw0ODxASExQWFxgaGxweHyAiIyQmJygpKywtLzAxMjM1Njc4OTs8PT5AQUJDREZH -SElKS0xOT1BRUlNUVVZXWFlaW1xdXl9hYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ent8fX5/gIGCg4SF -hoeIiYqLjI2Oj5CRkpOUlZaXmJmam5ydnZ6foKGio6SlpqanqKmqq6ytra6vsLGysrO0tba3uLi5uru8 -vL2+v8DBwcLDxMXGxsfIycrKy8zNzs7P0NHS0tPU1dbW19jZ2drb3Nzd3t/g4eLi4+Tl5ufo6enq6+zt -7u/w8fHy8/T19vf4+fr7/P3+/v8AAgMEBQYHCAkKCwwNDg8QERITFBUWFxgZGhscHR8gISIjJCUnKCkq -Ky0uLzAxMzQ1Njc4OTo7PD0/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaWltcXV5fYGFiY2RlZmdo -aWprbG1ub3BxcnN0dXZ3d3h5ent8fH1+f4CBgoKDhIWGh4iIiYqLjI2Oj5CRkpOUlJWWl5iZmpucnZ2e -n6ChoqOkpaamp6ipqqusra6vsLCxsrO0tba3uLm5uru8vb6/wMHCw8TFx8jJysvMzc7P0NDR0tPU1dbX -2Nna29ze3+Dh4uPk5ebn6err7O3u7/Hy8/T19vf5+vv8/f7/AAIDAwQFBgcICQoKCwwNDg8QERITFBUW -FxgZGhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTY3ODg5Ojs8PT4+P0BBQkNDREVGR0hJSUpLTE1O -Tk9QUVJSU1RVVVZXWFhZWltbXF1eXl9gYWFiY2RkZWZnZ2hpaWprbGxtbm5vcHFxcnNzdHV1dnd4eHl6 -ent8fH1+fn+AgYGCg4SEhYaHiImJiouMjY6Oj5CRkpOTlJWWl5iZmZqbnJ2en6ChoqOkpaanqKmqq6yt -rq+xsrO0tba3uLq7vL2+wMHDxMbHycrMzs/R0tTW19nb3d7g4uTm6Ors7vDy9Pb4+vz+/wAAbmRpbgAA -AAAAAAY2AACXGgAAVjoAAFPKAACJ3gAAJ8IAABaoAABQDQAAVDkAAiuFAAIZmQABeFEAAwEAAAIAAAAA -AAEABgANABcAIwAxAEAAUgBlAHsAkwCrAMUA4gD/AR8BPwFhAYUBqgHQAfgCIAJLAncCpQLSAwIDMwNl -A5gDzgQFBD0EdQSvBOsFKQVnBacF6AYqBm4GtQb8B0UHkgfkCDkIkAjnCT4JmAn0ClAKrQsLC2sLygwq -DIwM8Q1XDcAOKA6SDv4PbA/bEE0QxBE7EbQSMRKwEzITuRREFNAVYBXxFocXHhfAGGIZBBmsGlQa+RuU -HC4czh1yHhQeux9jIA0gvCFoIhkizyOJJEEk+SW6JnknOygFKMspkypiKzIsASzXLawuhy9gMD4xGzH8 -MtszvzSgNYY2cjdcOEw5OTorOxs8CD0EPfU+6z/nQOFB2ELUQ9VE00XcRttH5EjxSgBLCUwdTTFOUE9v -UI9Rt1LdVAVVNlZsV6VY4FohW21ct135X09goGH0Y0tkqGYFZ19oxGova5ptCG54b/BxbnLsdG119Xd/ -eQh6knwqfcV/W4D4gpSEO4Xih4CJKorYjIqOOY/jkZuTWJUOlsyYiZpSnB6d4Z+soX+jWqUvpxOo+6rj -rMuuwLC4sra0rra0uL+60LzfvwDBHcLdxLXGhchYyi7MCs3lz7rRmtOA1WPXR9kq2xPc/97s4M/iveSn -5o3obupT7ELuLPAM8fLz0PW396H5f/tZ/T3//wAAAAEAAwALABYAJQA3AE0AZQCBAJ8AwQDlAQsBNQFh -AZABwQH1AisCZAKfAtwDHANfA6MD6gQ0BH8EzQT1BR0FcAXEBhsGdAbPBy0HXAeMB+4IUgi4CSAJVAmK -CfYKZArVC0cLgQu8DDIMqw0mDaIOIQ6hDyQPqRAvELgQ/RFDEc8SXRLuE4AUFRSrFUMV3RZ5FxcXthhY -GPwZoRpIGvEbnBxJHPgdqB5bHw8fxSB9ITch8iKwJDAk8yW3Jn4nRigQKNwpqSp5K0osHCzxLccuoC95 -MFUxMzISMvMz1TS5NaA2hzdxOFw5STo4Oyg8Gj4DPvs/9EDuQepD6ETpRexG8Uf3SP9LFEwhTTBOQE9S -UGZSklOrVMVV4Vb/WB5ZP1phW4Vcq13SXvthUmJ/Y69k4GYSZ0dofGm0au1tZG6ib+FxInJlc6l073Y2 -d396FXtjfLJ+A39VgKmB/4NWhK+GCYjCiiGLgYzjjkePrJESknuT5Ja8mCuZm5sMnH+d9J9qoOGiWqPV -pVGmz6eOqE6pzqtRrNSuWq/gsWmy8rR+tgu5Kbq6vE294b93wQ7Cp8RBxd3He8kZyrrLisxbzf/Po9FK -0vHUm9ZF1/HZn9tO3Cbc/96x4GTiGePQ5YjnQegf6Pzquex27jbv9/G583z0X/VC9wj40Pqa/GX+Mf// -AAAAAQADAAsAJQA3AE0AZQCBAJ8AwQELATUBYQGQAcEB9QIrAmQCnwLcAxwDXwOjA+oENAR/BM0FHQVw -BcQGGwZ0Bs8HLQeMB+4IUgi4CSAJign2CmQK1QtHC7wMMgyrDSYNog4hDqEPJA+pEC8QuBFDEl0S7hOA -FBUUqxVDFnkXFxe2GFgY/BpIGvEbnBxJHPgdqB8PH8UgfSE3IfIjbyQwJPMltydGKBAo3Cp5K0osHC3H -LqAveTEzMhIy8zS5NaA2hzhcOUk6ODwaPQ4+Az/0QO5C6EPoROlG8Uf3SglLFEwhTkBPUlF7UpJUxVXh -Vv9ZP1phXKtd0mAlYVJjr2TgZhJofGm0au1tZG6ib+FxInJldO92Nnd/eMl6FXyyfgN/VYCpgf+Er4YJ -h2WIwoohi4GOR4+skRKSe5PklVCWvJgrmZubDJx/nfSfaqDholqj1aVRps+oTqnOq1Gs1K2Xrlqv4LFp -svK0frYLt5m5Kbnxurq8Tb3hv3fBDsHawqfEQcUPxd3He8hKyRnKusuKzFvN/87Rz6PQdtFK0vHTxtSb -1kXXG9fx2MjZn9tO3Cbc/93Y3rHfiuBk4hni9ePQ5KzliOZk50HoH+j86drqueuX7HbtVu427xbv9/DX -8bnymvN89F/1QvYl9wj37PjQ+bX6mvt//GX9S/4x//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAAEAAAAMZW5VUwAAABIAAAAcAEMAbwBsAG8AcgAgAEwAQwBE -AABtbW9kAAAAAAAABhAAAJxOAAAAAL5zkQAAAAAAAAAAAAAAAAAAAAAAdGV4dAAAAABDb3B5cmlnaHQg -QXBwbGUgQ29tcHV0ZXIsIEluYy4sIDIwMDUAAAAAA - - - - - - 3 - MCAwAA - - - - 400 - 75 - - - 67108864 - 0 - Require encryption - - - 2 - 1211912448 - 0 - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - 549453824 - {18, 18} - - - - - - TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw -IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ -29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 -dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA -AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG -AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ -0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ -7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ -5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ -3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD -AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns -AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ -6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ -/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ -///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl -YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA -AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD -AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu -AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB -AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS -AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp -bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA -AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA -AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA -A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA -BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3 -bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA -AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA -b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA -ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA -AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx -OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2 -LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl -c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA -AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA -AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM -CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1 -cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3 -AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET -ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp -AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML -AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+ -BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI -BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu -CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz -CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e -DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx -EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw -FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg -GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D -HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd -IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx -KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C -Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT -NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn -PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA -RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi -TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP -VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J -XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT -Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw -cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh -fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp -iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK -lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH -obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h -rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb -vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2 -y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2 -2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb -6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn -+3f8B/yY/Sn9uv5L/tz/bf//A - - - - - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - Encoding: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - Port: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - Login Server: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - Always use proxy for file transfers - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL Proxy Server: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - Typing: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - Let anyone view my status from the Web - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web Aware: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - Encryption: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index bf7910a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index 07b6a6c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3741 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - 密码: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{44, 90}, {77, 17}} - - YES - - 67108864 - 71303168 - 用户名: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - Register New Account - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - 正在注册... - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - Allow plaintext authentication - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - Force old-style SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - Display new mail notifications - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH 服务器: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - 连接服务器: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - 文件传输协议: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - 来源: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - 邮件: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - 安全: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - 可用优先级: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{233, 192}, {91, 17}} - - YES - - 67108864 - 71303168 - 离开优先级: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - 询问怎么做 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 接受 - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - 接受并加入列表 - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - 拒绝 - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - 现有订阅: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ...在群组里加入列表: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - Require SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - Do strict certificate checks - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 272630784 - 表情符号: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{35, 25}, {52, 17}} - - YES - - 67108864 - 71303168 - 键入: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - 加密: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - 音乐: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - Panel - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - 在这里输入你的 XMPP 服务器地址: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - 或者从列表里选择公共服务器: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - Server Name - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - Request New Account - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - Cancel - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - Visit Server Homepage - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1680, 1028}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5c5c6ee..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index b23cd7c..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1516 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{140, 27}, {279, 18}} - - YES - - 67108864 - 0 - Allow direct connections - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{386, 71}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 73}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入服务器: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 71}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 23}, {273, 18}} - - YES - - 67108864 - 0 - Check for new mail - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-8, 24}, {140, 17}} - - YES - - 67108864 - 71303168 - 电子邮件: - - - - - - NO - 1 - - - - 264 - {{349, 73}, {44, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 264 - {{140, 47}, {273, 18}} - - YES - - 67108864 - 0 - Connect via HTTP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 0}, {74, 17}} - - YES - - 68157504 - 272630784 - 表情符号: - - - - - - NO - 1 - - - - 268 - {{140, -1}, {188, 18}} - - YES - - 67108864 - 0 - Display custom emoticons - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 93} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - 显示姓名: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - Let others know when you are typing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{29, 25}, {57, 17}} - - YES - - 67108864 - 71303168 - 键入: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - 加密: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - 音乐: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - Let others know what iTunes is playing - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_allowDirectConnections - - - - 304 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 198 - - - - - - - - 199 - - - - - - - - 200 - - - - - - - - 201 - - - - - - - - 202 - - - - - - - - 203 - - - - - - - - 258 - - - - - - - - 260 - - - - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 186 - - - - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 224 - - - - - - - - 225 - - - - - - - - 285 - - - - - 286 - - - - - 287 - - - - - 288 - - - - - 289 - - - - - 290 - - - - - 291 - - - - - 292 - - - - - 293 - - - - - 294 - - - - - 295 - - - - - 296 - - - - - 297 - - - - - 298 - - - - - 299 - - - - - - - - 300 - - - - - 301 - - - - - 222 - - - - - - - - 223 - - - - - 302 - - - - - - - - 303 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 304 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - NSObject - - id - RBSplitView - SS_PrefsController - id - id - id - id - id - id - id - RBSplitView - - - - adiumPrint: - id - - - didAdjustSubviews: - RBSplitView - - - prefsWindowWillClose: - SS_PrefsController - - - selectAction: - id - - - selectEvent: - id - - - selectGroup: - id - - - selectServiceType: - id - - - selectStatus: - id - - - selectedEncryptionPreference: - id - - - toggleFindPanel: - id - - - willAdjustSubviews: - RBSplitView - - - - IBProjectSource - ./Classes/NSObject.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - RBSplitSubview - NSView - - IBProjectSource - ./Classes/RBSplitSubview.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/RBSplitView.h - - - - SS_PrefsController - NSObject - - delegate - id - - - delegate - - delegate - id - - - - IBProjectSource - ./Classes/SS_PrefsController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 28d892c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index c0326b9..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,689 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - 用户: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - 密码: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 登录: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - 强制登录 (忽略服务器定向) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - 隐藏客户端身份 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index d8688a5..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index c0b1dca..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - 用户名称: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - 密码: - - - - - - NO - 1 - - - - 264 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 264 - {{353, 39}, {43, 17}} - - YES - - 67108864 - 71303168 - 端口: - - - - - - NO - 1 - - - - 264 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 19faa59..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index e4c7509..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 2 - - - - 256 - {{148, -1}, {278, 18}} - - YES - - 67108864 - 0 - 发布状态 (注意: 任何人都能看到你) - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - 使用 UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {114, 18}} - - YES - - 67108864 - 0 - 使用 SIP 代理: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - 连接: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - 批准用户: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - 状态: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - 批准域: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - 密码: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - Screen Name: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - : - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index a78b006..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 9cb6a05..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,603 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{347, 70}, {46, 17}} - - YES - - 67108864 - 71303168 - 端口: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - 电子邮件: - - - - - - NO - 1 - - - - 264 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入服务器: - - - - - - NO - 1 - - - - 264 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - 检查新邮件 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - 聊天室列表服务器: - - - - - - NO - 1 - - - - 264 - {{139, 36}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index 7c40681..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index a609fcf..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1035 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - 用户名称: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr 需要经过适当设定的 Zephyr 主机管理员 (zhm) 后台程序执行;这也意味着会适当依赖 Kerberos 的设定。Zephyr 使用您的UNIX UID 或您的 Kerberos 名称;上面的用户名称仅推荐作为 Adium 内部使用。我们建议同一时间里仅使用一项 Zephyr 连接。 - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - - - - 264 - {{140, 94}, {244, 18}} - - YES - - 67108864 - 0 - 输出到 .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - YES - - 67108864 - 0 - 输出到 .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - YES - - 67108864 - 71303168 - 显示: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - YES - - 67108864 - 71303168 - 编码: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - YES - - 67108864 - 71303168 - 输出: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - Server - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - NO - - _doScroller: - 0.22631579637527466 - - - - 256 - {{-100, -100}, {128, 15}} - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - YES - - 67108864 - 71303168 - 服务器: - - - - - - NO - 1 - - - - 36 - {{111, 13}, {23, 22}} - - AIPlasticMinusButton - NSPopUpButton - - - - 36 - {{88, 13}, {23, 22}} - - AIPlasticPlusButton - NSPopUpButton - - - - 268 - {{-3, 67}, {140, 17}} - - YES - - 67108864 - 71303168 - 主机管理器: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - YES - - 67108864 - 0 - 使用内部主机管理器 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - addRowToServerList: - - - - 244 - - - - removeSelectedRowFromServerList: - - - - 245 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - plus_servers - - - - 251 - - - - minus_servers - - - - 252 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 240 - - - - - 241 - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 270 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index d829ec7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings deleted file mode 100644 index b4805f2..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_CN.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/designable.nib deleted file mode 100644 index 2a36c37..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/designable.nib +++ /dev/null @@ -1,618 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSProgressIndicator - NSTextField - NSTextFieldCell - NSView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIFacebookXMPPAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{8, 147}, {378, 51}} - - YES - - 67108864 - 272891904 - 若要連接 Facebook Chat,您必須提供權限給 Adium。當您按一下“允許取用”時,將會顯示 Facebook 安全登入的畫面。 - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 268 - {{8, 22}, {347, 17}} - - YES - - 67108864 - 272891904 - 目前的狀態資訊將會在這裡顯示。 - - - - - - NO - 1 - - - - 269 - {{119, 99}, {157, 32}} - - YES - - 67108864 - 134217728 - 允許取用 - - - -2038284288 - 129 - - - 200 - 25 - - NO - - - - -2147482356 - {{189, 71}, {16, 16}} - - 20746 - 16 - 100 - - - - 268 - {{361, 16}, {25, 25}} - - YES - - 67108864 - 134217728 - - - - -2038415360 - 161 - - - 200 - 25 - - NO - - - {394, 201} - - - - - - - changedPreference: - - - - 51 - - - - textField_OAuthStatus - - - - 52 - - - - button_OAuthStart - - - - 53 - - - - spinner - - - - 54 - - - - view_setup - - - - 55 - - - - button_help - - - - 97 - - - - showHelp: - - - - 98 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 43 - - - - - - - - - - Setup - - - 44 - - - - - - - - 45 - - - - - - - - 46 - - - - - - - - 47 - - - - - 48 - - - - - 49 - - - - - 50 - - - - - 95 - - - - - - - - 96 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 98 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIFacebookXMPPAccountViewController - PurpleAccountViewController - - showHelp: - id - - - showHelp: - - showHelp: - id - - - - NSButton - NSButton - NSProgressIndicator - NSTextField - - - - button_OAuthStart - NSButton - - - button_help - NSButton - - - spinner - NSProgressIndicator - - - textField_OAuthStatus - NSTextField - - - - IBProjectSource - ./Classes/AIFacebookXMPPAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib deleted file mode 100644 index 2c9aa78..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/AIFacebookXMPPAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/designable.nib deleted file mode 100644 index 8e2a2ad..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/designable.nib +++ /dev/null @@ -1,748 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimJabberJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{122, 259}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 256 - {{-3, 264}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名稱: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 256 - {{122, 229}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 234}, {120, 17}} - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 256 - {{122, 199}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 204}, {120, 17}} - - YES - - 67108864 - 71303168 - 處理: - - - - - - NO - 1 - - - - 256 - {{122, 169}, {267, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 174}, {120, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - - - - - NO - 1 - - - - 256 - {{119, 88}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗號分隔聯絡人的名稱。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 256 - {{-3, 141}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀請聯絡人: - - - - - - NO - 1 - - - - 256 - {{122, 101}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 256 - {{-3, 63}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用訊息: - - - - - - NO - 1 - - - - 256 - {{122, 20}, {267, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - {409, 281} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 40 - - - - textField_server - - - - 41 - - - - textField_handle - - - - 42 - - - - textField_password - - - - 43 - - - - textField_inviteUsers - - - - 57 - - - - textField_inviteMessage - - - - 58 - - - - nextKeyView - - - - 48 - - - - nextKeyView - - - - 44 - - - - delegate - - - - 63 - - - - nextKeyView - - - - 45 - - - - delegate - - - - 64 - - - - nextKeyView - - - - 46 - - - - delegate - - - - 65 - - - - nextKeyView - - - - 59 - - - - delegate - - - - 66 - - - - nextKeyView - - - - 60 - - - - nextKeyView - - - - 61 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - - - - - - - View - - - 32 - - - - - - - - 33 - - - - - - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 51 - - - - - - - - 52 - - - - - - - - 53 - - - - - - - - 54 - - - - - - - - 56 - - - - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - 75 - - - - - 76 - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 80 - - - - - 81 - - - - - 82 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 82 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 0820dcb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleJabberJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib deleted file mode 100644 index c42ac6a..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/designable.nib +++ /dev/null @@ -1,370 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimMeanwhileJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - {{0, 91}, {120, 17}} - - YES - - 67108864 - 71303168 - 主題: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - {{122, 7}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗號分隔聯絡人的名稱。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - {{125, 21}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - {{0, 64}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀請聯絡人: - - - - - - NO - 1 - - - - {{125, 89}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {399, 112} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_topic - - - - 40 - - - - textField_inviteUsers - - - - 41 - - - - nextKeyView - - - - 43 - - - - nextKeyView - - - - 39 - - - - delegate - - - - 42 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - View - - - 34 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 45 - - - - - 46 - - - - - 47 - - - - - 48 - - - - - 49 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 49 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index b303922..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleMeanwhileJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/designable.nib deleted file mode 100644 index 7976c11..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/designable.nib +++ /dev/null @@ -1,461 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimOscarJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - {{-3, 159}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名稱: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - {{122, 157}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - {{122, 10}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - {{-3, 50}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用訊息: - - - - - - NO - 1 - - - - {{-3, 132}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀請聯絡人: - - - - - - NO - 1 - - - - {{122, 89}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - {{119, 75}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗號分隔聯絡人的名稱。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {395, 180} - - NSView - - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 32 - - - - textField_inviteMessage - - - - 44 - - - - textField_inviteUsers - - - - 50 - - - - nextKeyView - - - - 34 - - - - nextKeyView - - - - 54 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 56 - - - - nextKeyView - - - - 55 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 35 - - - - - - - - 36 - - - - - - - - 41 - - - - - - - - 48 - - - - - - - - 49 - - - - - - - - 59 - - - - - 60 - - - - - 61 - - - - - 62 - - - - - 63 - - - - - 64 - - - - - 65 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 65 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 1e64dd9..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleOscarJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/designable.nib deleted file mode 100644 index 41d9664..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/designable.nib +++ /dev/null @@ -1,451 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimYahooJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - {{-2, 149}, {120, 17}} - - YES - - 67108864 - 71303168 - 聊天室名稱: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - {{123, 147}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - {{123, 1}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - {{-2, 41}, {120, 17}} - - YES - - 67108864 - 71303168 - 使用訊息: - - - - - - NO - 1 - - - - {{120, 65}, {224, 14}} - - YES - - 67108864 - 4194304 - 以逗號分隔聯絡人的名稱。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - {{123, 79}, {266, 60}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - {{-2, 119}, {120, 17}} - - YES - - 67108864 - 71303168 - 邀請聯絡人: - - - - - - NO - 1 - - - {394, 170} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_roomName - - - - 35 - - - - textField_inviteUsers - - - - 41 - - - - textField_inviteMessage - - - - 42 - - - - nextKeyView - - - - 43 - - - - delegate - - - - 47 - - - - nextKeyView - - - - 45 - - - - nextKeyView - - - - 44 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - - View - - - 33 - - - - - - - - 34 - - - - - - - - 36 - - - - - - - - 37 - - - - - - - - 38 - - - - - - - - 39 - - - - - - - - 40 - - - - - - - - 49 - - - - - 50 - - - - - 51 - - - - - 52 - - - - - 53 - - - - - 54 - - - - - 55 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AICompletingTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 55 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index 772daa7..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleYahooJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib deleted file mode 100644 index 5e956c5..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/designable.nib +++ /dev/null @@ -1,421 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - DCGaimZephyrJoinChatViewController - - - FirstResponder - - - NSApplication - - - - - - - {{-3, 69}, {120, 17}} - - YES - - 67108864 - 71303168 - 類別: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - {{122, 67}, {266, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - {{-3, 39}, {120, 17}} - - YES - - 67108864 - 71303168 - 執行項: - - - - - - NO - 1 - - - - {{122, 37}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - - {{-3, 9}, {120, 17}} - - YES - - 67108864 - 71303168 - 接收者: - - - - - - NO - 1 - - - - {{122, 7}, {266, 22}} - - YES - - -1804599231 - 4195328 - * - - - YES - - - - NO - 1 - - - {397, 90} - NSView - NSResponder - - - - - - - view - - - - 31 - - - - textField_recipient - - - - 62 - - - - textField_instance - - - - 63 - - - - textField_class - - - - 64 - - - - nextKeyView - - - - 34 - - - - delegate - - - - 57 - - - - nextKeyView - - - - 65 - - - - nextKeyView - - - - 66 - - - - nextKeyView - - - - 67 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 27 - - - - - - - - - - - View - - - 28 - - - - - - - - 29 - - - - - - - - 58 - - - - - - - - 59 - - - - - - - - 60 - - - - - - - - 61 - - - - - - - - 69 - - - - - 70 - - - - - 71 - - - - - 72 - - - - - 73 - - - - - 74 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 74 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib deleted file mode 100644 index c372d9a..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/DCPurpleZephyrJoinChatView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/designable.nib deleted file mode 100644 index 2f849d4..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/designable.nib +++ /dev/null @@ -1,1413 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSBox - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - NSUserDefaultsController - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESIRCAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-70, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-70, 58}, {140, 17}} - - YES - - 67108864 - 71303168 - 暱稱: - - - - - - NO - 1 - - - - 264 - {{75, 56}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - 暱稱 - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{75, 0}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - (可留空) - - YES - - - - NO - 1 - - - - 264 - {{75, 28}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - irc.server.com - - YES - - - - NO - 1 - - - - 264 - {{-2, 30}, {72, 17}} - - YES - - 67108864 - 71303168 - 主機名稱: - - - - - - NO - 1 - - - {315, 78} - - NSView - - NSResponder - - - - 256 - - - - 264 - {{199, 236}, {207, 18}} - - YES - - 67108864 - 0 - 使用 SSL 加密連線 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{142, 234}, {51, 22}} - - YES - - -1804599231 - 4195328 - 6667 - - - YES - - - - NO - 1 - - - - 264 - {{63, 236}, {74, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 4362 - - - - 274 - - - - 268 - {{15, 155}, {413, 17}} - - YES - - 68157504 - 272761856 - 一行一個。/ 為選用性項目。$me 將會以您目前的暱稱取代。 - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {409, 131} - - - - - - - - - - - - - 38 - - - - 409 - 1 - - - 117583619 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {394, 131} - - - - {{1, 1}, {394, 131}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{395, 1}, {15, 131}} - - NO - - _doScroller: - 0.98639458417892456 - - - - -2147483392 - {{-100, -100}, {410, 15}} - - YES - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{18, 14}, {411, 133}} - - - 133266 - - - - 0.25 - 4 - 1 - - - {{1, 1}, {443, 182}} - - - - {{-2, -4}, {445, 198}} - - {0, 0} - - 67108864 - 0 - 連線時執行指令: - - - - 3 - MCAwLjgwMDAwMDAxAA - - - - 1 - 0 - 2 - NO - - - - 264 - {{-2, 209}, {140, 17}} - - YES - - 67108864 - 71303168 - 編碼: - - - - - - NO - 1 - - - - 264 - {{139, 202}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {440, 258} - NSView - NSResponder - - - - 268 - - - - 268 - {{135, 32}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{60, 35}, {70, 17}} - - YES - - 68157504 - 272630784 - 真實名稱: - - - - - - NO - 1 - - - - 268 - {{135, 0}, {205, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{14, 4}, {116, 17}} - - YES - - 68157504 - 71304192 - 使用者名稱: - - - - - - NO - 1 - - - {340, 57} - NSView - - - YES - - - - - - - changedPreference: - - - - 163 - - - - view_setup - - - - 167 - - - - view_options - - - - 168 - - - - textField_password - - - - 175 - - - - label_password - - - - 176 - - - - textField_connectPort - - - - 180 - - - - checkbox_useSSL - - - - 181 - - - - textField_connectHost - - - - 195 - - - - textfield_Nick - - - - 207 - - - - textView_commands - - - - 227 - - - - changedPreference: - - - - 263 - - - - textField_realname - - - - 265 - - - - textField_username - - - - 266 - - - - view_profile - - - - 267 - - - - changedPreference: - - - - 268 - - - - changedPreference: - - - - 269 - - - - textField_accountUID - - - - 293 - - - - textField_accountUIDLabel - - - - 294 - - - - popUp_encoding - - - - 320 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - - - Setup - - - 169 - - - - - - - - 170 - - - - - - - - 171 - - - - - - - - 172 - - - - - - - - 191 - - - - - - - - 192 - - - - - - - - 130 - - - - - - - - - - - Options - - - 154 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 253 - - - - - - - - - 314 - - - - - - - - 315 - - - - - - - - 264 - - - - - - - - - Personal - - - 249 - - - - - - - - 251 - - - - - - - - 255 - - - - - - - - 257 - - - - - - - - 272 - - - Shared User Defaults Controller - - - 324 - - - - - 325 - - - - - 326 - - - - - 327 - - - - - 328 - - - - - 329 - - - - - 330 - - - - - 331 - - - - - 332 - - - - - 334 - - - - - 335 - - - - - - - - 336 - - - - - 337 - - - - - 338 - - - - - 339 - - - - - 317 - - - - - - - - 318 - - - - - 247 - - - - - - - - 333 - - - - - 223 - - - - - - - - - - 341 - - - - - 340 - - - - - 226 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - 341 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - ESIRCAccountViewController - PurpleAccountViewController - - NSButton - NSPopUpButton - NSTextField - NSTextField - NSTextView - - - - checkbox_useSSL - NSButton - - - popUp_encoding - NSPopUpButton - - - textField_realname - NSTextField - - - textField_username - NSTextField - - - textView_commands - NSTextView - - - - IBProjectSource - ./Classes/ESIRCAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5c4e8da..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESIRCAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/designable.nib deleted file mode 100644 index 01ac57b..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/designable.nib +++ /dev/null @@ -1,1432 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSScrollView - NSScroller - NSTextField - NSTextFieldCell - NSTextView - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - AIPurpleAIMAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{70, 125}, {270, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 127}, {68, 17}} - - YES - - 67108864 - 71303168 - 別名: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 102}, {68, 17}} - - YES - - 67108864 - 71303168 - 資料檔: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {268, 115} - - - - - - - - - - - - - 38 - - - - 268 - 1 - - - 117583847 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - - - - - 1 - - 6 - {353, 10000000} - - - - {{1, 1}, {268, 115}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 210}} - - NO - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{70, 0}, {270, 117}} - - - 133650 - - - - 0.25 - 4 - 1 - - - {340, 147} - - NSView - - NSResponder - - - - 256 - - - - 268 - {{123, 22}, {322, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - 無加密保護 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - 適用時使用加密保護 - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - 要求加密保護 - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {322, 18} - {4, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - - - - - - 264 - {{123, -2}, {306, 18}} - - YES - - 67108864 - 0 - 允許多重登入 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-20, -1}, {140, 17}} - - YES - - 67108864 - 71303168 - 多重登入: - - - - - - NO - 1 - - - - 264 - {{123, 112}, {306, 18}} - - YES - - 67108864 - 0 - 檢查新郵件 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{123, 87}, {326, 18}} - - YES - - 67108864 - 0 - 一律使用代理來進行檔案傳輸與直接即時傳訊 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{-20, 141}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入伺服器: - - - - - - NO - 1 - - - - 264 - {{125, 138}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{369, 138}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{330, 140}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 264 - {{-20, 113}, {140, 17}} - - YES - - 67108864 - 71303168 - 電子郵件: - - - - - - NO - 1 - - - - 264 - {{-20, 88}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL 代理伺服器: - - - - - - NO - 1 - - - - 264 - {{-20, 63}, {140, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - - - NO - 1 - - - {447, 160} - - NSView - - NSResponder - - - - - - - view_options - - - - 144 - - - - view_profile - - - - 145 - - - - textField_alias - - - - 148 - - - - textView_textProfile - - - - 149 - - - - changedPreference: - - - - 151 - - - - textField_connectHost - - - - 160 - - - - textField_connectPort - - - - 161 - - - - changedPreference: - - - - 162 - - - - changedPreference: - - - - 163 - - - - changedPreference: - - - - 164 - - - - checkBox_checkMail - - - - 165 - - - - changedPreference: - - - - 206 - - - - checkBox_proxyServer - - - - 226 - - - - checkbox_multipleLogins - - - - 247 - - - - changedPreference: - - - - 248 - - - - radio_Encryption - - - - 260 - - - - delegate - - - - 150 - - - - view_anchorToLeftSide - - - - 261 - - - - view_anchorToLeftSide - - - - 262 - - - - view_anchorToLeftSide - - - - 264 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 121 - - - - - - - - - Profile - - - 122 - - - - - - - - 123 - - - - - - - - 124 - - - - - - - - 126 - - - - - - - - - - 125 - - - - - 130 - - - - - - - - - - - - - - - - - Options - - - 154 - - - - - - - - 156 - - - - - - - - 157 - - - - - - - - 158 - - - - - - - - 159 - - - - - - - - 166 - - - - - - - - 179 - - - - - - - - 181 - - - - - - - - 185 - - - - - - - - 228 - - - - - 229 - - - - - 230 - - - - - 231 - - - - - 232 - - - - - 233 - - - - - 234 - - - - - 235 - - - - - 236 - - - - - 237 - - - - - 238 - - - - - 240 - - - - - 241 - - - - - 242 - - - - - 243 - - - - - - - - 244 - - - - - - - - 245 - - - - - 246 - - - - - 255 - - - - - - - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIMessageEntryTextView - com.apple.InterfaceBuilder.CocoaPlugin - AIAutoScrollView - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 264 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIAutoScrollView - NSScrollView - - IBProjectSource - ./Classes/AIAutoScrollView.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AIMessageEntryTextView - AISendingTextView - - IBProjectSource - ./Classes/AIMessageEntryTextView.h - - - - AIPurpleAIMAccountViewController - AIPurpleOscarAccountViewController - - textView_textProfile - NSTextView - - - textView_textProfile - - textView_textProfile - NSTextView - - - - IBProjectSource - ./Classes/AIPurpleAIMAccountViewController.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - AISendingTextView - AITextViewWithPlaceholder - - sendContent: - id - - - sendContent: - - sendContent: - id - - - - IBProjectSource - ./Classes/AISendingTextView.h - - - - AITextViewWithPlaceholder - NSTextView - - IBProjectSource - ./Classes/AITextViewWithPlaceholder.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0cbbafb..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleAIMAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib deleted file mode 100644 index f18ae24..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/designable.nib +++ /dev/null @@ -1,544 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleGaduGaduAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 256 - {{142, 16}, {307, 26}} - - YES - - -2080374720 - 1024 - - .LucidaGrandeUI - 13 - 1044 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{0, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - {466, 42} - - NSView - - NSResponder - - - - - - - 264 - {{0, 62}, {140, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - - - - - NO - 1 - - - - 264 - {{0, 92}, {140, 17}} - - YES - - 67108864 - 71303168 - 使用者名稱: - - - - - - NO - 1 - - - - 264 - {{145, 90}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{145, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{165, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - 註冊新的帳號 - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - {405, 112} - - NSView - - NSResponder - - - - - - - view_privacy - - - - 183 - - - - changedPreference: - - - - 188 - - - - popUp_encryption - - - - 189 - - - - view_setup - - - - 191 - - - - textField_accountUID - - - - 197 - - - - textField_accountUIDLabel - - - - 198 - - - - textField_password - - - - 200 - - - - registerNewAccount: - - - - 201 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 141 - - - - - - - Privacy - - - 185 - - - - - - - - 187 - - - - - - - - 190 - - - - - - - - - - setup - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 195 - - - - - - - - 196 - - - - - - - - 203 - - - - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - 186 - - - - - - - - 184 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0cf38e6..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleGaduGaduAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/designable.nib deleted file mode 100644 index 66fad02..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/designable.nib +++ /dev/null @@ -1,1466 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMatrix - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleICQAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 268 - {{125, 0}, {302, 58}} - - YES - NO - 3 - 1 - - - -2080374784 - 0 - 無加密保護 - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 0 - - NSImage - NSRadioButton - - - NSRadioButton - - - - 200 - 25 - - - 67108864 - 0 - 適用時使用加密保護 - - - 1 - 1211912448 - 0 - - - - 400 - 75 - - - 67108864 - 0 - 要求加密保護 - - - 2 - 1211912448 - 0 - - - - 400 - 75 - - - {302, 18} - {0, 2} - 1151868928 - NSActionCell - - 67108864 - 0 - Radio - - 1211912448 - 0 - - - - 400 - 75 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 3 - MQA - - - - - - 264 - {{-18, 40}, {140, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-18, 93}, {140, 17}} - - YES - - 67108864 - 71303168 - 編碼: - - - - - - NO - 1 - - - - 264 - {{124, 87}, {206, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - - - 400 - 75 - - - IA - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{332, 121}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 264 - {{127, 119}, {200, 22}} - - YES - - 342884417 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{371, 119}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-18, 121}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入伺服器: - - - - - - NO - 1 - - - - 264 - {{126, 64}, {283, 18}} - - YES - - 67108864 - 0 - 一律使用代理伺服器進行檔案傳輸 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-18, 65}, {140, 17}} - - YES - - 67108864 - 71303168 - AOL 代理伺服器: - - - - - - NO - 1 - - - {427, 141} - - NSView - - NSResponder - - - - 258 - - - - 264 - {{149, 24}, {256, 18}} - - YES - - 67108864 - 0 - 允許其他人知道您正在輸入文字 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{71, 25}, {75, 17}} - - YES - - 67108864 - 71303168 - 輸入狀態: - - - - - - NO - 1 - - - - 264 - {{149, -1}, {277, 18}} - - YES - - 67108864 - 0 - 允許所有人從 Web 檢視我的狀態 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{23, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - Web 檢視: - - - - - - NO - 1 - - - - 264 - {{71, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - - - NO - 1 - - - - 264 - {{148, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - {452, 73} - - NSView - - NSResponder - - - - - - - textField_connectHost - - - - 176 - - - - textField_connectPort - - - - 177 - - - - popUp_encoding - - - - 178 - - - - changedPreference: - - - - 179 - - - - changedPreference: - - - - 180 - - - - changedPreference: - - - - 181 - - - - view_options - - - - 182 - - - - view_privacy - - - - 204 - - - - label_encryption - - - - 205 - - - - popUp_encryption - - - - 206 - - - - changedPreference: - - - - 207 - - - - changedPreference: - - - - 208 - - - - checkBox_sendTyping - - - - 209 - - - - label_typing - - - - 210 - - - - checkBox_webAware - - - - 219 - - - - changedPreference: - - - - 220 - - - - checkBox_proxyServer - - - - 292 - - - - radio_Encryption - - - - 321 - - - - view_anchorToRightSide - - - - 211 - - - - view_anchorToRightSide - - - - 212 - - - - view_anchorToLeftSide - - - - 201 - - - - view_anchorToLeftSide - - - - 217 - - - - view_anchorToRightSide - - - - 218 - - - - view_anchorToLeftSide - - - - 320 - - - - view_anchorToLeftSide - - - - 319 - - - - view_anchorToLeftSide - - - - 318 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 141 - - - - - - - - - - - - - - - Options - - - 159 - - - - - - - - 163 - - - - - - - - 172 - - - - - - - - 173 - - - - - - - - 174 - - - - - - - - 175 - - - - - - - - 265 - - - - - - - - 267 - - - - - - - - 190 - - - - - - - - - - - Privacy - - - 191 - - - - - - - - 192 - - - - - - - - 193 - - - - - - - - 194 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 295 - - - - - 296 - - - - - - - - 297 - - - - - 298 - - - - - 299 - - - - - 300 - - - - - 301 - - - - - 303 - - - - - 305 - - - - - - - - 306 - - - - - 307 - - - - - 308 - - - - - 309 - - - - - 310 - - - - - 164 - - - - - - - - 160 - - - - - 199 - - - - - - - - 200 - - - - - 311 - - - - - - - - 312 - - - - - - - - - - - 313 - - - - - 314 - - - - - 315 - - - - - 316 - - - - - 317 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButtonCell - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 321 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationButtonCell - NSButtonCell - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButtonCell.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - AIPurpleOscarAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSMatrix - - - - checkBox_proxyServer - NSButton - - - checkbox_multipleLogins - NSButton - - - radio_Encryption - NSMatrix - - - - IBProjectSource - ./Classes/AIPurpleOscarAccountViewController.h - - - - ESPurpleICQAccountViewController - AIPurpleOscarAccountViewController - - NSButton - NSPopUpButton - - - - checkBox_webAware - NSButton - - - popUp_encoding - NSPopUpButton - - - - IBProjectSource - ./Classes/ESPurpleICQAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {16, 15} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib deleted file mode 100644 index b24037e..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleICQAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/designable.nib deleted file mode 100644 index f0336b7..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/designable.nib +++ /dev/null @@ -1,3742 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSComboBox - NSComboBoxCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSNumberFormatter - NSPopUpButton - NSPopUpButtonCell - NSProgressIndicator - NSScrollView - NSScroller - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - NSTextView - NSView - NSWindowTemplate - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleJabberAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{53, 65}, {68, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 90}, {99, 17}} - - YES - - 67108864 - 71303168 - 使用者名稱: - - - - - - NO - 1 - - - - 264 - {{126, 88}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - username@jabber.org - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{126, 60}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 12}, {200, 32}} - - YES - - 67108864 - 134217728 - 註冊新的帳號 - - - -2038284288 - 1 - - - - - - 200 - 25 - - NO - - - - -2147482368 - {{20, 22}, {16, 16}} - - 28938 - 100 - - - - -2147483392 - {{41, 23}, {76, 14}} - - YES - - 67108864 - 272629760 - 註冊中⋯ - - .LucidaGrandeUI - 11 - 3100 - - - - - - NO - 1 - - - {457, 127} - NSView - NSResponder - - - - 256 - - - - 264 - {{160, 113}, {212, 18}} - - YES - - 67108864 - 0 - 允許純文字認證 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{160, 93}, {143, 18}} - - YES - - 67108864 - 0 - 強制使用舊式 SSL - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 160}, {211, 18}} - - YES - - 67108864 - 0 - 顯示新郵件通知 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{162, 283}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 285}, {140, 17}} - - YES - - 67108864 - 71303168 - BOSH 伺服器: - - - - - - NO - 1 - - - - 264 - {{162, 311}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 313}, {140, 17}} - - YES - - 67108864 - 71303168 - 連線伺服器: - - - - - - NO - 1 - - - - 264 - {{162, 253}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 255}, {140, 17}} - - YES - - 67108864 - 71303168 - 檔案傳輸代理: - - - - - - NO - 1 - - - - 264 - {{329, 223}, {73, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{286, 225}, {38, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 264 - {{162, 223}, {119, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{17, 225}, {140, 17}} - - YES - - 67108864 - 71303168 - 資源: - - - - - - NO - 1 - - - - 264 - {{17, 161}, {140, 17}} - - YES - - 67108864 - 71303168 - 郵件: - - - - - - NO - 1 - - - - 264 - {{17, 114}, {140, 17}} - - YES - - 67108864 - 71303168 - 安全性: - - - - - - NO - 1 - - - - 256 - {{43, 192}, {114, 17}} - - YES - - 67108864 - 71303168 - 線上優先順序: - - - - - - NO - 1 - - - - 256 - {{162, 189}, {61, 23}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{223, 192}, {101, 17}} - - YES - - 67108864 - 71303168 - 暫離優先順序: - - - - - - NO - 1 - - - - 256 - {{329, 188}, {73, 24}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{159, 23}, {198, 26}} - - YES - - -2080374720 - 2048 - - - 109199360 - 1 - - - - - - 400 - 75 - - - 詢問執行動作 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 接受 - - 1048576 - 2147483647 - - - _popUpItemAction: - 1 - - - - - 接受並加入列表 - - 1048576 - 2147483647 - - - _popUpItemAction: - 2 - - - - - 拒絕 - - 1048576 - 2147483647 - - - _popUpItemAction: - 3 - - - - - -1 - 3 - YES - YES - 1 - - NO - - - - 256 - {{1, 29}, {156, 17}} - - YES - - 67108864 - 71303168 - 現身訂閱: - - - - - - NO - 1 - - - - 268 - {{68, 2}, {142, 17}} - - YES - - 67108864 - 71303168 - ⋯加入群組列表: - - - - - - NO - 1 - - - - 266 - {{215, -3}, {190, 26}} - - YES - - 342884416 - 272630784 - - - - YES - - - 5 - YES - YES - YES - - - - - 274 - {15, 0} - - - YES - NO - YES - - - 12 - 10 - 1000 - - 75497472 - 0 - - - - - LucidaGrande - 12 - 16 - - - 3 - MC4zMzMzMzI5OQA - - - - - 338690112 - 268436480 - - - YES - - 6 - System - controlBackgroundColor - - - - - 3 - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 19 - tableViewAction: - -767524864 - - - 1 - 15 - 0 - YES - 0 - 1 - - - NO - 1 - - - - - 264 - {{160, 73}, {143, 18}} - - YES - - 67108864 - 0 - 須有 SSL/TLS - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{160, 53}, {244, 18}} - - YES - - 67108864 - 0 - 執行嚴密憑證檢查 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{83, 138}, {74, 17}} - - YES - - 68157504 - 71304192 - 表情符號: - - - - - - NO - 1 - - - - 268 - {{160, 137}, {188, 18}} - - YES - - 67108864 - 0 - 顯示自定表情符號 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {424, 333} - NSView - NSResponder - - - - 256 - - - - 264 - {{90, 24}, {309, 18}} - - YES - - 67108864 - 0 - 允許其他人知道您正在輸入文字 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {70, 17}} - - YES - - 67108864 - 71303168 - 輸入狀態: - - - - - - NO - 1 - - - - 264 - {{12, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - - - NO - 1 - - - - 264 - {{89, 48}, {307, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{42, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - 音樂: - - - - - - NO - 1 - - - - 264 - {{90, -1}, {312, 18}} - - YES - - 67108864 - 0 - 允許其他人知道 iTunes 正在播放音樂 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {393, 75} - - NSView - - NSResponder - - - 3 - 2 - {{179, 356}, {455, 344}} - 1886912512 - 面板 - NSPanel - - View - - - {213, 107} - - - 256 - - - - 268 - {{17, 307}, {280, 17}} - - YES - - 67108864 - 272629760 - 在此輸入您的 XMPP 伺服器位址: - - - - - - NO - 1 - - - - 266 - {{101, 277}, {193, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 268 - {{17, 280}, {79, 17}} - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 265 - {{338, 278}, {60, 22}} - - YES - - -1804599231 - 272630784 - - - - - - 0 - - - , - - . - - 0 - 1 - NO - YES - 1 - //8AAAAAAAAAAAAAAAAAAA - - - 0 - 1 - NO - YES - 1 - AQAAAAAAAAAAAAAAAAAAAA - - -0 - 0 - - - 0 - -0 - - - - - - - - NaN - - - - - - , - . - NO - YES - YES - - 5222 - - YES - - - - NO - 1 - - - - 265 - {{299, 280}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 268 - {{17, 252}, {242, 17}} - - YES - - 67108864 - 272629760 - 或從列表中選取一個公共伺服器: - - - - - - NO - 1 - - - - 258 - - - - 2304 - - - - 256 - {243, 157} - - YES - NO - YES - - - 256 - {{436, 0}, {12, 17}} - - - - servername - 240 - 40 - 1000 - - 75497536 - 2048 - 伺服器名稱 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - - - - - - - 3 - 2 - - - 17 - 39845888 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {206, 157}} - - - - - 4 - - - - 256 - {{207, 1}, {11, 157}} - - NO - 256 - - _doScroller: - 0.82631576061248779 - - - - -2147483392 - {{-100, -100}, {431, 15}} - - YES - NO - 257 - - _doScroller: - 0.99047619104385376 - - - {{20, 85}, {219, 159}} - - - 133266 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 289 - {{264, 12}, {177, 32}} - - YES - - 67108864 - 134217728 - 申請新的帳號 - - - -2038284288 - 1 - - - DQ - 200 - 25 - - NO - - - - 292 - {{14, 12}, {91, 32}} - - YES - - 67108864 - 134217728 - 取消 - - - -2038284288 - 1 - - - Gw - 200 - 25 - - NO - - - - 274 - - - - 2304 - - - - 2322 - - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - CorePasteboardFlavorType 0x75726C20 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - {175, 240} - - - - - - Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum Et harumd und lookum like Greek to me, dereud facilis est er expedit distinct. Nam liber te conscient to factor tum poen legum odioque civiuda - - - - - .LucidaGrandeUI - 10 - 2843 - - - 3 - - - 0.0 - - - 56 - - - 112 - - - 168 - - - 224 - - - 280 - - - 336 - - - 392 - - - 448 - - - 504 - - - 560 - - - 616 - - - 672 - - - 728 - - - 784 - - - 840 - - - 896 - - - 952 - - - 1008 - - - 1064 - - - 1120 - - - 1176 - - - 1232 - - - 1288 - - - 1344 - - - 1400 - - - 1456 - - - 1512 - - - 1568 - - - 1624 - - - 1680 - - - 1736 - - - - - - - LucidaGrande-Bold - 10 - 16 - - - 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GQAEAQgADAEiAAcBhAQAA - - - - - - - 38 - - - - 175 - 1 - - - 117582823 - 0 - - - - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - 1 - MCAwIDEAA - - - - - - 1 - - 6 - {463, 10000000} - {175, 157} - - - - {{1, 1}, {175, 157}} - - - - - - {4, 5} - - 12582912 - - - - - - TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym -SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA -AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA -AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA -AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA - - - - - - 3 - MCAwAA - - - - 4 - - - - 256 - {{176, 1}, {11, 157}} - - YES - NO - 256 - - _doScroller: - 0.65416663885116577 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - NO - 1 - - _doScroller: - 1 - 0.94565218687057495 - - - {{247, 85}, {188, 159}} - - - 133714 - - - - 0.25 - 4 - 1 - - - - 265 - {{281, 58}, {154, 19}} - - YES - - -2080374784 - 134217728 - 造訪伺服器首頁 - - .LucidaGrandeUI - 12 - 4883 - - - -2038153216 - 164 - - - 400 - 75 - - NO - - - {455, 344} - - {{0, 0}, {1280, 778}} - {213, 129} - {10000000000000, 10000000000000} - YES - - - - - - - view_setup - - - - 145 - - - - view_options - - - - 149 - - - - checkBox_allowPlaintext - - - - 191 - - - - checkBox_forceOldSSL - - - - 192 - - - - checkBox_checkMail - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - changedPreference: - - - - 200 - - - - textField_connectServer - - - - 217 - - - - textField_connectPort - - - - 218 - - - - changedPreference: - - - - 219 - - - - changedPreference: - - - - 220 - - - - changedPreference: - - - - 221 - - - - textField_resource - - - - 222 - - - - textField_priorityAvailable - - - - 231 - - - - textField_priorityAway - - - - 232 - - - - textField_connectHost - - - - 233 - - - - popup_subscriptionBehavior - - - - 277 - - - - comboBox_subscriptionGroup - - - - 281 - - - - textField_subscriptionModeLabel - - - - 282 - - - - subscriptionModeDidChange: - - - - 283 - - - - checkBox_requireTLS - - - - 286 - - - - checkBox_checkCertificates - - - - 330 - - - - changedPreference: - - - - 342 - - - - changedPreference: - - - - 343 - - - - popUp_encryption - - - - 344 - - - - checkBox_sendTyping - - - - 345 - - - - label_encryption - - - - 346 - - - - label_typing - - - - 347 - - - - view_privacy - - - - 348 - - - - checkBox_broadcastMusic - - - - 352 - - - - changedPreference: - - - - 353 - - - - window_registerServer - - - - 391 - - - - registerCancel: - - - - 400 - - - - registerRequestAccount: - - - - 401 - - - - textField_registerServerName - - - - 402 - - - - textField_registerServerPort - - - - 403 - - - - tableview_servers - - - - 404 - - - - textField_accountUIDLabel - - - - 412 - - - - textField_accountUID - - - - 413 - - - - textField_password - - - - 414 - - - - registerNewAccount: - - - - 415 - - - - textField_registering - - - - 418 - - - - progressIndicator_registering - - - - 419 - - - - button_register - - - - 420 - - - - textView_serverDescription - - - - 473 - - - - button_serverHomepage - - - - 476 - - - - visitServerHomepage: - - - - 477 - - - - checkBox_displayCustomEmoticons - - - - 531 - - - - textField_ftProxies - - - - 587 - - - - changedPreference: - - - - 645 - - - - textField_BOSHserver - - - - 646 - - - - dataSource - - - - 284 - - - - nextKeyView - - - - 354 - - - - view_anchorToLeftSide - - - - 340 - - - - nextKeyView - - - - 358 - - - - view_anchorToRightSide - - - - 339 - - - - nextKeyView - - - - 357 - - - - view_anchorToRightSide - - - - 341 - - - - nextKeyView - - - - 355 - - - - nextKeyView - - - - 356 - - - - nextKeyView - - - - 359 - - - - delegate - - - - 392 - - - - initialFirstResponder - - - - 393 - - - - nextKeyView - - - - 394 - - - - nextKeyView - - - - 395 - - - - nextKeyView - - - - 396 - - - - nextKeyView - - - - 397 - - - - delegate - - - - 405 - - - - dataSource - - - - 406 - - - - nextKeyView - - - - 398 - - - - nextKeyView - - - - 399 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 39 - - - - - - - - - - - - setup - - - 407 - - - - - - - - 408 - - - - - - - - 409 - - - - - - - - 410 - - - - - - - - 411 - - - - - - - - 416 - - - - - 417 - - - - - - - - 146 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Options - - - 158 - - - - - - - - 167 - - - - - - - - 190 - - - - - - - - 208 - - - - - - - - 210 - - - - - - - - 211 - - - - - - - - 212 - - - - - - - - 213 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 270 - - - - - - - - 275 - - - - - - - - 279 - - - - - - - - 280 - - - - - - - - 285 - - - - - - - - 328 - - - - - - - - 527 - - - - - - - - 528 - - - - - - - - 583 - - - - - - - - 584 - - - - - - - - 332 - - - - - - - - - - - Privacy - - - 333 - - - - - - - - 334 - - - - - - - - 335 - - - - - - - - 336 - - - - - - - - 350 - - - - - - - - 351 - - - - - - - - 375 - - - - - - Registration Server panel - - - 376 - - - - - - - - - - - - - - - - - - 377 - - - - - - - - 378 - - - - - - - - 379 - - - - - - - - 380 - - - - - - - - 382 - - - - - - - - 384 - - - - - - - - 385 - - - - - - - - - - 386 - - - - - - - - 388 - - - - - - - - 389 - - - - - - - - 390 - - - - - - - - 469 - - - - - - - - - - 472 - - - - - 474 - - - - - - - - 590 - - - - - 591 - - - - - 592 - - - - - 593 - - - - - 594 - - - - - 595 - - - - - 596 - - - - - 597 - - - - - 598 - - - - - 599 - - - - - 601 - - - - - 602 - - - - - 603 - - - - - 604 - - - - - 605 - - - - - 606 - - - - - 607 - - - - - 608 - - - - - 609 - - - - - 610 - - - - - 611 - - - - - - - - 612 - - - - - 613 - - - - - 614 - - - - - 615 - - - - - 616 - - - - - 617 - - - - - 618 - - - - - 619 - - - - - 620 - - - - - 621 - - - - - 622 - - - - - 623 - - - - - 624 - - - - - - - - 625 - - - - - 626 - - - - - 627 - - - - - 628 - - - - - 629 - - - - - 630 - - - - - - - - 631 - - - - - 632 - - - - - 633 - - - - - 634 - - - - - 635 - - - - - 636 - - - - - 381 - - - - - 271 - - - - - - - - - - - 276 - - - - - 274 - - - - - 273 - - - - - 272 - - - - - 337 - - - - - - - - 338 - - - - - 637 - - - - - 638 - - - - - 639 - - - - - 640 - - - - - 209 - - - - - - - - 600 - - - - - 641 - - - - - - - - 642 - - - - - - - - 643 - - - - - 644 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{83, 662}, {455, 344}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 646 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleJabberAccountViewController - PurpleAccountViewController - - id - id - id - id - id - - - - registerCancel: - id - - - registerNewAccount: - id - - - registerRequestAccount: - id - - - subscriptionModeDidChange: - id - - - visitServerHomepage: - id - - - - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSButton - NSComboBox - NSPopUpButton - NSTableView - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextView - NSPanel - - - - button_register - NSButton - - - button_serverHomepage - NSButton - - - checkBox_allowPlaintext - NSButton - - - checkBox_checkCertificates - NSButton - - - checkBox_forceOldSSL - NSButton - - - checkBox_requireTLS - NSButton - - - checkBox_useTLS - NSButton - - - comboBox_subscriptionGroup - NSComboBox - - - popup_subscriptionBehavior - NSPopUpButton - - - tableview_servers - NSTableView - - - textField_BOSHserver - NSTextField - - - textField_connectServer - NSTextField - - - textField_ftProxies - NSTextField - - - textField_priorityAvailable - NSTextField - - - textField_priorityAway - NSTextField - - - textField_registerServerName - NSTextField - - - textField_registerServerPort - NSTextField - - - textField_resource - NSTextField - - - textField_subscriptionModeLabel - NSTextField - - - textView_serverDescription - NSTextView - - - window_registerServer - NSPanel - - - - IBProjectSource - ./Classes/ESPurpleJabberAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib deleted file mode 100644 index e8fa5e3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleJabberAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/designable.nib deleted file mode 100644 index e332b4f..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/designable.nib +++ /dev/null @@ -1,1422 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleMSNAccountViewController - - - FirstResponder - - - NSApplication - - - - 258 - - - - 264 - {{386, 85}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{-3, 87}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入伺服器: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{142, 85}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{140, 21}, {273, 18}} - - YES - - 67108864 - 0 - 檢查新郵件 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{-3, 22}, {140, 17}} - - YES - - 67108864 - 71303168 - 電子郵件: - - - - - - NO - 1 - - - - 264 - {{347, 87}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 264 - {{140, 41}, {273, 18}} - - YES - - 67108864 - 0 - 允許直接連線 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{140, 61}, {273, 18}} - - YES - - 67108864 - 0 - 透過 HTTP 連線 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 268 - {{63, 2}, {74, 17}} - - YES - - 68157504 - 71304192 - 表情符號: - - - - - - NO - 1 - - - - 268 - {{140, 1}, {188, 18}} - - YES - - 67108864 - 0 - 顯示自定表情符號 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {437, 107} - NSView - NSResponder - - - - 258 - - - - 264 - {{0, 20}, {340, 59}} - - YES - - -1805647871 - 4194304 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 87}, {97, 17}} - - YES - - 67108864 - 4194304 - 顯示名稱: - - - - - - NO - 1 - - - {341, 104} - NSView - NSResponder - - - - 256 - - - - 264 - {{89, 24}, {309, 18}} - - YES - - 67108864 - 0 - 允許其他人知道您正在輸入文字 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{17, 25}, {69, 17}} - - YES - - 67108864 - 71303168 - 輸入狀態: - - - - - - NO - 1 - - - - 264 - {{11, 54}, {75, 17}} - - YES - - 67108864 - 71303168 - 加密保護: - - - - - - NO - 1 - - - - 264 - {{88, 48}, {307, 26}} - - YES - - -2076180416 - 1024 - - - 109199360 - 1 - - - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - 3 - YES - YES - 1 - - NO - - - - 264 - {{41, 0}, {45, 17}} - - YES - - 67108864 - 71303168 - 音樂: - - - - - - NO - 1 - - - - 264 - {{89, -1}, {312, 18}} - - YES - - 67108864 - 0 - 允許其他人知道 iTunes 正在播放音樂 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {392, 72} - - NSView - - NSResponder - - - - - - - view_profile - - - - 204 - - - - textField_alias - - - - 205 - - - - changedPreference: - - - - 206 - - - - view_options - - - - 207 - - - - textField_connectHost - - - - 208 - - - - textField_connectPort - - - - 209 - - - - checkBox_HTTPConnectMethod - - - - 210 - - - - checkBox_checkMail - - - - 211 - - - - changedPreference: - - - - 212 - - - - changedPreference: - - - - 213 - - - - changedPreference: - - - - 214 - - - - changedPreference: - - - - 215 - - - - view_privacy - - - - 217 - - - - label_encryption - - - - 234 - - - - label_typing - - - - 235 - - - - popUp_encryption - - - - 236 - - - - checkBox_sendTyping - - - - 237 - - - - checkBox_broadcastMusic - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - checkBox_displayCustomEmoticons - - - - 282 - - - - checkbox_AllowDirectConnections - - - - 305 - - - - changedPreference: - - - - 306 - - - - checkbox_allowDirectConnections - - - - 307 - - - - nextKeyView - - - - 227 - - - - view_anchorToLeftSide - - - - 231 - - - - nextKeyView - - - - 228 - - - - view_anchorToRightSide - - - - 230 - - - - view_anchorToRightSide - - - - 229 - - - - nextKeyView - - - - 233 - - - - nextKeyView - - - - 226 - - - - nextKeyView - - - - 232 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 29 - - - - - - - - - - - - - - - Options - - - 197 - - - - - - - - 285 - - - - - 198 - - - - - - - - 286 - - - - - 199 - - - - - - - - 287 - - - - - 200 - - - - - - - - 288 - - - - - 201 - - - - - - - - 289 - - - - - 202 - - - - - - - - 290 - - - - - 203 - - - - - - - - 291 - - - - - 258 - - - - - - - - 292 - - - - - 260 - - - - - - - - 293 - - - - - 302 - - - - - - - - 303 - - - - - 187 - - - - - - - Profile - - - 183 - - - - - - - - 294 - - - - - 186 - - - - - - - - 295 - - - - - 216 - - - - - - - - - - - Privacy - - - 218 - - - - - - - - 296 - - - - - 219 - - - - - - - - 297 - - - - - 220 - - - - - - - - 298 - - - - - 221 - - - - - - - - 299 - - - - - - - - 222 - - - - - - - - 223 - - - - - 224 - - - - - - - - 300 - - - - - 225 - - - - - - - - 301 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationTextField - com.apple.InterfaceBuilder.CocoaPlugin - AILocalizationButton - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 312 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AILocalizationButton - NSButton - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationButton.h - - - - AILocalizationTextField - NSTextField - - NSView - NSView - NSWindow - NSWindow - - - - view_anchorToLeftSide - NSView - - - view_anchorToRightSide - NSView - - - window_anchorOnLeftSide - NSWindow - - - window_anchorOnRightSide - NSWindow - - - - IBProjectSource - ./Classes/AILocalizationTextField.h - - - - ESPurpleMSNAccountViewController - PurpleAccountViewController - - NSButton - NSButton - NSTextField - - - - checkBox_HTTPConnectMethod - NSButton - - - checkbox_allowDirectConnections - NSButton - - - textField_friendlyName - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleMSNAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib deleted file mode 100644 index 352f4ca..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMSNAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib deleted file mode 100644 index 14c114e..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/designable.nib +++ /dev/null @@ -1,689 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimMeanwhileAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 264 - {{145, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{0, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - 使用者: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{0, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - - - - - NO - 1 - - - - 264 - {{145, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{145, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{0, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 264 - {{351, 39}, {46, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 264 - {{397, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {450, 89} - - NSView - - NSResponder - - - - - - - 264 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入: - - - - - - NO - 1 - - - - 264 - {{140, 18}, {250, 18}} - - YES - - 67108864 - 0 - 強制登入 (忽略伺服器重新導向) - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 38}, {250, 18}} - - YES - - 67108864 - 0 - 隱藏用戶端身分 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {408, 56} - - NSView - - NSResponder - - - - - - - textField_accountUID - - - - 232 - - - - textField_accountUIDLabel - - - - 233 - - - - textField_connectHost - - - - 234 - - - - textField_connectPort - - - - 235 - - - - textField_password - - - - 236 - - - - view_setup - - - - 237 - - - - changedPreference: - - - - 238 - - - - changedPreference: - - - - 239 - - - - changedPreference: - - - - 240 - - - - changedPreference: - - - - 241 - - - - view_options - - - - 243 - - - - checkBox_fakeClientId - - - - 248 - - - - checkBox_forceLogin - - - - 249 - - - - changedPreference: - - - - 250 - - - - changedPreference: - - - - 251 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 223 - - - - - - - - - - - - - Setup - - - 224 - - - - - - - - 225 - - - - - - - - 226 - - - - - - - - 227 - - - - - - - - 228 - - - - - - - - 229 - - - - - - - - 230 - - - - - - - - 231 - - - - - - - - 242 - - - - - - - - Options - - - 245 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 253 - - - - - 254 - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 263 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib deleted file mode 100644 index f9ea453..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleMeanwhileAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/designable.nib deleted file mode 100644 index 91cd128..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/designable.nib +++ /dev/null @@ -1,515 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimNovellAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 8 - {{142, 67}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - .LucidaGrandeUI - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 8 - {{-3, 69}, {140, 17}} - - YES - - 67108864 - 71303168 - 使用者名稱: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 8 - {{-3, 9}, {140, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - - - - - NO - 1 - - - - 8 - {{142, 7}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 8 - {{142, 37}, {206, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 8 - {{-3, 39}, {140, 17}} - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 8 - {{353, 39}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - - - - - NO - 1 - - - - 8 - {{392, 37}, {50, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {460, 89} - - NSView - - NSResponder - - - - - - - view_setup - - - - 190 - - - - textField_accountUID - - - - 191 - - - - textField_accountUIDLabel - - - - 192 - - - - textField_connectHost - - - - 193 - - - - textField_connectPort - - - - 194 - - - - textField_password - - - - 195 - - - - changedPreference: - - - - 196 - - - - changedPreference: - - - - 197 - - - - changedPreference: - - - - 198 - - - - changedPreference: - - - - 199 - - - - view_options - - - - 200 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 184 - - - - - - - - - - - - - Setup - - - 181 - - - - - - - - 182 - - - - - - - - 183 - - - - - - - - 185 - - - - - - - - 186 - - - - - - - - 187 - - - - - - - - 188 - - - - - - - - 189 - - - - - - - - 202 - - - - - 203 - - - - - 204 - - - - - 205 - - - - - 206 - - - - - 207 - - - - - 208 - - - - - 209 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 209 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib deleted file mode 100644 index 0e7c149..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleNovellAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/designable.nib deleted file mode 100644 index 9f69a25..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/designable.nib +++ /dev/null @@ -1,1043 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimSimpleAccountViewController - - - FirstResponder - - - NSApplication - - - - 2 - - - - 256 - {{148, -1}, {188, 18}} - - YES - - 67108864 - 0 - 允許所有人取得狀態資訊 - - .LucidaGrandeUI - 13 - 1044 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 256 - {{148, 78}, {315, 18}} - - YES - - 67108864 - 0 - 使用 UDP - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{148, 104}, {112, 18}} - - YES - - 67108864 - 0 - 使用 SIP 代理: - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 256 - {{266, 102}, {160, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{22, 105}, {123, 17}} - - YES - - 67108864 - 71303168 - 連線: - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - - - NO - 1 - - - - 264 - {{-3, 50}, {148, 17}} - - YES - - 67108864 - 71303168 - 認證使用者: - - - - - - NO - 1 - - - - 264 - {{22, 0}, {123, 17}} - - YES - - 67108864 - 71303168 - 狀態: - - - - - - NO - 1 - - - - 264 - {{-3, 25}, {148, 17}} - - YES - - 67108864 - 71303168 - 認證網域: - - - - - - NO - 1 - - - - 256 - {{150, 50}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - - 256 - {{150, 23}, {195, 22}} - - YES - - -1804599231 - 272630784 - - - - YES - - - - NO - 1 - - - {426, 124} - NSView - NSResponder - - - - - - - 264 - {{-3, 2}, {140, 17}} - - YES - - 67108864 - 71303168 - 密碼: - - - - - - NO - 1 - - - - 264 - {{-3, 66}, {140, 17}} - - YES - - 67108864 - 71303168 - 用戶名稱: - - - - - - NO - 1 - - - - 264 - {{142, 64}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{142, 0}, {260, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 34}, {140, 17}} - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 264 - {{142, 32}, {198, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 256 - {{345, 35}, {9, 17}} - - YES - - 67108864 - 272629760 - - - - - - - NO - 1 - - - - 264 - {{359, 32}, {43, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - {402, 86} - - NSView - - NSResponder - - - - - - - view_options - - - - 207 - - - - view_setup - - - - 224 - - - - textField_accountUID - - - - 225 - - - - textField_accountUIDLabel - - - - 226 - - - - textField_connectHost - - - - 227 - - - - textField_password - - - - 228 - - - - label_password - - - - 229 - - - - checkBox_publishStatus - - - - 232 - - - - checkBox_useUDP - - - - 233 - - - - changedPreference: - - - - 245 - - - - textField_connectPort - - - - 246 - - - - changedPreference: - - - - 254 - - - - value: publishStatus - - - - - - value: publishStatus - value - publishStatus - 2 - - - 253 - - - - value: useUDP - - - - - - value: useUDP - value - useUDP - 2 - - - 250 - - - - value: useSIPProxy - - - - - - value: useSIPProxy - value - useSIPProxy - 2 - - - 247 - - - - value: sipProxy - - - - - - value: sipProxy - value - sipProxy - - NSConditionallySetsEditable - - - 2 - - - 257 - - - - editable: useSIPProxy - - - - - - editable: useSIPProxy - editable - useSIPProxy - 2 - - - 258 - - - - enabled: useSIPProxy - - - - - - enabled: useSIPProxy - enabled - useSIPProxy - - 2 - - - 260 - - - - value: authUser - - - - - - value: authUser - value - authUser - 2 - - - 251 - - - - value: authDomain - - - - - - value: authDomain - value - authDomain - 2 - - - 252 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 29 - - - - - - - - - - - - - - - Options - - - 230 - - - - - - - - 231 - - - - - - - - 236 - - - - - - - - 237 - - - - - - - - 239 - - - - - - - - 240 - - - - - - - - 241 - - - - - - - - 242 - - - - - - - - 243 - - - - - - - - 244 - - - - - - - - 216 - - - - - - - - - - - - - setup - - - 217 - - - - - - - - 218 - - - - - - - - 219 - - - - - - - - 220 - - - - - - - - 221 - - - - - - - - 222 - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - 271 - - - - - 272 - - - - - 273 - - - - - 274 - - - - - 275 - - - - - 276 - - - - - 277 - - - - - 278 - - - - - 279 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 279 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - NSSwitch - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib deleted file mode 100644 index e4e664c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleSimpleAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/designable.nib deleted file mode 100644 index 9310a52..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/designable.nib +++ /dev/null @@ -1,601 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSMenu - NSMenuItem - NSPopUpButton - NSPopUpButtonCell - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESGaimYahooAccountViewController - - - FirstResponder - - - NSApplication - - - - - - - 8 - {{347, 70}, {34, 17}} - - YES - - 67108864 - 71303168 - 埠: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 8 - {{386, 68}, {51, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 8 - {{-3, 17}, {140, 17}} - - YES - - 67108864 - 71303168 - 電子郵件: - - - - - - NO - 1 - - - - 8 - {{142, 68}, {200, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 8 - {{-3, 70}, {140, 17}} - - YES - - 67108864 - 71303168 - 登入伺服器: - - - - - - NO - 1 - - - - 8 - {{140, 16}, {147, 18}} - - YES - - 67108864 - 0 - 檢查新郵件 - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 8 - {{-3, 42}, {140, 17}} - - YES - - 67108864 - 71303168 - 聊天室列表伺服器: - - - - - - NO - 1 - - - - 8 - {{139, 36}, {206, 26}} - - YES - - -2080374720 - 1024 - - - 109199360 - 1 - - LucidaGrande - 13 - 16 - - - - - - 400 - 75 - - - Item1 - - 1048576 - 2147483647 - 1 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - _popUpItemAction: - - - YES - - - OtherViews - - - - - - Item2 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - Item3 - - 1048576 - 2147483647 - - - _popUpItemAction: - - - - - 3 - YES - YES - 1 - - NO - - - {457, 90} - NSView - NSResponder - - - - - - - view_options - - - - 96 - - - - textField_connectHost - - - - 97 - - - - textField_connectPort - - - - 98 - - - - checkBox_checkMail - - - - 99 - - - - changedPreference: - - - - 100 - - - - changedPreference: - - - - 101 - - - - changedPreference: - - - - 102 - - - - popUp_chatServer - - - - 109 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 54 - - - - - - - - - - - - - Options - - - 90 - - - - - - - - 91 - - - - - - - - 92 - - - - - - - - 93 - - - - - - - - 94 - - - - - - - - 95 - - - - - - - - 103 - - - - - - - - 108 - - - - - - - - 111 - - - - - 112 - - - - - 113 - - - - - 114 - - - - - 115 - - - - - 116 - - - - - 117 - - - - - 118 - - - - - - - - 104 - - - - - - - - - - 107 - - - - - 106 - - - - - 105 - - - - - -3 - - - Application - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 118 - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {11, 11} - {10, 3} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib deleted file mode 100644 index e976d14..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleYahooAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/designable.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/designable.nib deleted file mode 100644 index b860204..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/designable.nib +++ /dev/null @@ -1,1302 +0,0 @@ - - - - 1060 - 13C64 - 5056 - 1265.19 - 697.40 - - com.apple.InterfaceBuilder.CocoaPlugin - 5056 - - - NSButton - NSButtonCell - NSCustomObject - NSCustomView - NSScrollView - NSScroller - NSSegmentedCell - NSSegmentedControl - NSTableColumn - NSTableView - NSTextField - NSTextFieldCell - - - com.apple.InterfaceBuilder.CocoaPlugin - - - PluginDependencyRecalculationVersion - - - - - ESPurpleZephyrAccountViewController - - - FirstResponder - - - NSApplication - - - - 256 - - - - 264 - {{-3, 156}, {140, 17}} - - YES - - 67108864 - 71303168 - 使用者名稱: - - .LucidaGrandeUI - 13 - 1044 - - - - 6 - System - controlColor - - 3 - MC42NjY2NjY2NjY3AA - - - - 6 - System - controlTextColor - - 3 - MAA - - - - NO - 1 - - - - 264 - {{142, 154}, {240, 22}} - - YES - - -1804599231 - 4195328 - - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - - - NO - 1 - - - - 264 - {{48, 20}, {364, 112}} - - YES - - 71303168 - 4194304 - Zephyr 需要進行適當的 Kerberos 設定。Zephyr 會使用您的 UNIX UID 或 Kerberos 名稱;上述使用者名稱僅供 Adium 內部使用。建議您同時間僅使用一組 Zephyr 連線。使用內部主機管理程式將會與此機器上正在執行的其他 'zhm' 執行項發生衝突。 - - .LucidaGrandeUI - 12 - 4883 - - - YES - - 1 - MSAxIDEAA - - - - NO - 1 - - - {460, 176} - - NSView - - NSResponder - - - - 256 - - - - 292 - {{85, 13}, {49, 23}} - - - YES - - 67108864 - 0 - - - - - 23 - - NSImage - NSAddTemplate - - - 0 - - - 23 - - NSImage - NSRemoveTemplate - - - 1 - 0 - - - 1 - 2 - 6 - - NO - - - - 264 - {{140, 94}, {244, 18}} - - - YES - - 67108864 - 0 - 輸出至 .zephyr.subs - - - 1211912448 - 2 - - NSImage - NSSwitch - - - NSSwitch - - - - 200 - 25 - - NO - - - - 264 - {{140, 116}, {244, 18}} - - - YES - - 67108864 - 0 - 輸出至 .anyone - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - - 264 - {{142, 176}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 178}, {140, 17}} - - - YES - - 67108864 - 71303168 - 曝光: - - - - - - NO - 1 - - - - 264 - {{142, 146}, {240, 22}} - - - YES - - -1804599231 - 4195328 - - - - YES - - - - NO - 1 - - - - 264 - {{-3, 148}, {140, 17}} - - - YES - - 67108864 - 71303168 - 編碼: - - - - - - NO - 1 - - - - 264 - {{-3, 117}, {140, 17}} - - - YES - - 67108864 - 71303168 - 輸出: - - - - - - NO - 1 - - - - 274 - - - - 2304 - - - - 256 - {238, 58} - - - YES - NO - YES - - - 256 - {{129, 0}, {16, 17}} - - - - 234.87646484375 - 40 - 1000 - - 75497536 - 2048 - 伺服器 - - .LucidaGrandeUI - 11 - 3100 - - - 3 - MC4zMzMzMzI5OQA - - - 6 - System - headerTextColor - - - - - 337641536 - 2048 - - - - 6 - System - controlBackgroundColor - - - - - YES - - - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 17 - 314572800 - - - 4 - 15 - 0 - YES - 0 - 1 - - - {{1, 1}, {238, 58}} - - - - - 4 - - - - -2147483392 - {{-30, 1}, {15, 58}} - - - NO - - _doScroller: - 0.22631579637527466 - - - - -2147483392 - {{-100, -100}, {128, 15}} - - - NO - 1 - - _doScroller: - 0.99047619104385376 - - - {{142, 0}, {240, 60}} - - - 133650 - - - - QSAAAEEgAABBmAAAQZgAAA - 0.25 - 4 - 1 - - - - 268 - {{-3, 43}, {140, 17}} - - - YES - - 67108864 - 71303168 - 伺服器: - - - - - - NO - 1 - - - - 268 - {{-3, 67}, {140, 17}} - - - YES - - 67108864 - 71303168 - 主機管理程式: - - - - - - NO - 1 - - - - 268 - {{140, 66}, {207, 18}} - - - YES - - 67108864 - 0 - 使用內部主機管理程式 - - - 1211912448 - 2 - - - - - 200 - 25 - - NO - - - {460, 198} - - NSView - NSResponder - - - - - - - view_setup - - - - 219 - - - - view_options - - - - 220 - - - - textField_accountUID - - - - 221 - - - - textField_accountUIDLabel - - - - 223 - - - - changedPreference: - - - - 224 - - - - textField_exposure - - - - 225 - - - - textField_encoding - - - - 226 - - - - checkBox_exportAnyone - - - - 227 - - - - checkBox_exportSubs - - - - 228 - - - - changedPreference: - - - - 229 - - - - changedPreference: - - - - 230 - - - - changedPreference: - - - - 231 - - - - changedPreference: - - - - 232 - - - - tableView_servers - - - - 243 - - - - changedPreference: - - - - 248 - - - - checkBox_launchZhm - - - - 249 - - - - button_addRemoveServers - - - - 274 - - - - button_addOrRemoveServer - - - - 275 - - - - addOrRemoveRowToServerList: - - - - 276 - - - - dataSource - - - - 242 - - - - delegate - - - - 253 - - - - - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 202 - - - - - - - - setup - - - 198 - - - - - - - - 201 - - - - - - - - 205 - - - - - - - - 208 - - - - - - - - - - - - - - - - - Options - - - 206 - - - - - - - - 207 - - - - - - - - 210 - - - - - - - - 212 - - - - - - - - 214 - - - - - - - - 215 - - - - - - - - 216 - - - - - - - - 233 - - - - - - - - - - 234 - - - - - - - - 235 - - - - - - - - 239 - - - - - - - - 246 - - - - - - - - 247 - - - - - - - - 255 - - - - - 256 - - - - - 257 - - - - - 258 - - - - - 259 - - - - - 260 - - - - - 261 - - - - - 262 - - - - - 263 - - - - - 264 - - - - - 265 - - - - - 266 - - - - - 267 - - - - - 268 - - - - - 269 - - - - - 270 - - - - - -3 - - - Application - - - 271 - - - - - - - - 272 - - - - - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - AIDelayedTextField - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - 276 - - - - - AIAccountViewController - NSObject - - changedPreference: - id - - - changedPreference: - - changedPreference: - id - - - - NSButton - NSButton - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSPopUpButton - NSProgressIndicator - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTextField - NSTabView - NSView - NSView - NSView - NSView - - - - checkBox_checkMail - NSButton - - - checkBox_sendTyping - NSButton - - - label_alias - NSTextField - - - label_encryption - NSTextField - - - label_password - NSTextField - - - label_port - NSTextField - - - label_server - NSTextField - - - label_typing - NSTextField - - - popUp_encryption - NSPopUpButton - - - progressIndicator_registering - NSProgressIndicator - - - textField_accountUID - NSTextField - - - textField_accountUIDLabel - NSTextField - - - textField_alias - NSTextField - - - textField_connectHost - NSTextField - - - textField_connectPort - NSTextField - - - textField_password - NSTextField - - - textField_registering - NSTextField - - - view_auxiliaryTabView - NSTabView - - - view_options - NSView - - - view_privacy - NSView - - - view_profile - NSView - - - view_setup - NSView - - - - IBProjectSource - ./Classes/AIAccountViewController.h - - - - AIDelayedTextField - NSTextField - - IBProjectSource - ./Classes/AIDelayedTextField.h - - - - ESPurpleZephyrAccountViewController - PurpleAccountViewController - - id - id - - - - addOrRemoveRowToServerList: - id - - - changedPreference: - id - - - - NSSegmentedControl - NSButton - NSButton - NSButton - NSTableView - NSTextField - NSTextField - - - - button_addOrRemoveServer - NSSegmentedControl - - - checkBox_exportAnyone - NSButton - - - checkBox_exportSubs - NSButton - - - checkBox_launchZhm - NSButton - - - tableView_servers - NSTableView - - - textField_encoding - NSTextField - - - textField_exposure - NSTextField - - - - IBProjectSource - ./Classes/ESPurpleZephyrAccountViewController.h - - - - PurpleAccountViewController - AIAccountViewController - - NSButton - NSButton - - - - checkBox_broadcastMusic - NSButton - - - checkBox_displayCustomEmoticons - NSButton - - - - IBProjectSource - ./Classes/PurpleAccountViewController.h - - - - - 0 - IBCocoaFramework - NO - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - 3 - - {8, 8} - {8, 8} - {15, 15} - - - diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib deleted file mode 100644 index 5141cf3..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/ESPurpleZephyrAccountView.nib/keyedobjects.nib and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings b/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings deleted file mode 100644 index d9a070c..0000000 Binary files a/telegram-adium/AdiumLibpurple.framework/Versions/A/Resources/zh_TW.lproj/Localizable.strings and /dev/null differ diff --git a/telegram-adium/AdiumLibpurple.framework/Versions/Current b/telegram-adium/AdiumLibpurple.framework/Versions/Current deleted file mode 120000 index 8c7e5a6..0000000 --- a/telegram-adium/AdiumLibpurple.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/telegram-adium/libglib.framework/Headers b/telegram-adium/libglib.framework/Headers deleted file mode 120000 index 4879d7f..0000000 --- a/telegram-adium/libglib.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/2.38.2/Headers \ No newline at end of file diff --git a/telegram-adium/libglib.framework/Resources b/telegram-adium/libglib.framework/Resources deleted file mode 120000 index 6e553ca..0000000 --- a/telegram-adium/libglib.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/2.38.2/Resources \ No newline at end of file diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gaction.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gaction.h deleted file mode 100644 index f8e92ff..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gaction.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_ACTION_H__ -#define __G_ACTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_ACTION (g_action_get_type ()) -#define G_ACTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_ACTION, GAction)) -#define G_IS_ACTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_ACTION)) -#define G_ACTION_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), \ - G_TYPE_ACTION, GActionInterface)) - -typedef struct _GActionInterface GActionInterface; - -struct _GActionInterface -{ - GTypeInterface g_iface; - - /* virtual functions */ - const gchar * (* get_name) (GAction *action); - const GVariantType * (* get_parameter_type) (GAction *action); - const GVariantType * (* get_state_type) (GAction *action); - GVariant * (* get_state_hint) (GAction *action); - - gboolean (* get_enabled) (GAction *action); - GVariant * (* get_state) (GAction *action); - - void (* change_state) (GAction *action, - GVariant *value); - void (* activate) (GAction *action, - GVariant *parameter); -}; - -GLIB_AVAILABLE_IN_2_30 -GType g_action_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -const gchar * g_action_get_name (GAction *action); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_action_get_parameter_type (GAction *action); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_action_get_state_type (GAction *action); -GLIB_AVAILABLE_IN_ALL -GVariant * g_action_get_state_hint (GAction *action); - -GLIB_AVAILABLE_IN_ALL -gboolean g_action_get_enabled (GAction *action); -GLIB_AVAILABLE_IN_ALL -GVariant * g_action_get_state (GAction *action); - -GLIB_AVAILABLE_IN_ALL -void g_action_change_state (GAction *action, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -void g_action_activate (GAction *action, - GVariant *parameter); - -GLIB_AVAILABLE_IN_2_28 -gboolean g_action_name_is_valid (const gchar *action_name); - -GLIB_AVAILABLE_IN_2_38 -gboolean g_action_parse_detailed_name (const gchar *detailed_name, - gchar **action_name, - GVariant **target_value, - GError **error); - -GLIB_AVAILABLE_IN_2_38 -gchar * g_action_print_detailed_name (const gchar *action_name, - GVariant *parameter); - -G_END_DECLS - -#endif /* __G_ACTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroup.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroup.h deleted file mode 100644 index 9fc3b2b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroup.h +++ /dev/null @@ -1,163 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_ACTION_GROUP_H__ -#define __G_ACTION_GROUP_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -#define G_TYPE_ACTION_GROUP (g_action_group_get_type ()) -#define G_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_ACTION_GROUP, GActionGroup)) -#define G_IS_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_ACTION_GROUP)) -#define G_ACTION_GROUP_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), \ - G_TYPE_ACTION_GROUP, GActionGroupInterface)) - -typedef struct _GActionGroupInterface GActionGroupInterface; - -struct _GActionGroupInterface -{ - GTypeInterface g_iface; - - /* virtual functions */ - gboolean (* has_action) (GActionGroup *action_group, - const gchar *action_name); - - gchar ** (* list_actions) (GActionGroup *action_group); - - gboolean (* get_action_enabled) (GActionGroup *action_group, - const gchar *action_name); - - const GVariantType * (* get_action_parameter_type) (GActionGroup *action_group, - const gchar *action_name); - - const GVariantType * (* get_action_state_type) (GActionGroup *action_group, - const gchar *action_name); - - GVariant * (* get_action_state_hint) (GActionGroup *action_group, - const gchar *action_name); - - GVariant * (* get_action_state) (GActionGroup *action_group, - const gchar *action_name); - - void (* change_action_state) (GActionGroup *action_group, - const gchar *action_name, - GVariant *value); - - void (* activate_action) (GActionGroup *action_group, - const gchar *action_name, - GVariant *parameter); - - /* signals */ - void (* action_added) (GActionGroup *action_group, - const gchar *action_name); - void (* action_removed) (GActionGroup *action_group, - const gchar *action_name); - void (* action_enabled_changed) (GActionGroup *action_group, - const gchar *action_name, - gboolean enabled); - void (* action_state_changed) (GActionGroup *action_group, - const gchar *action_name, - GVariant *state); - - /* more virtual functions */ - gboolean (* query_action) (GActionGroup *action_group, - const gchar *action_name, - gboolean *enabled, - const GVariantType **parameter_type, - const GVariantType **state_type, - GVariant **state_hint, - GVariant **state); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_action_group_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_action_group_has_action (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -gchar ** g_action_group_list_actions (GActionGroup *action_group); - -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_action_group_get_action_parameter_type (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_action_group_get_action_state_type (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -GVariant * g_action_group_get_action_state_hint (GActionGroup *action_group, - const gchar *action_name); - -GLIB_AVAILABLE_IN_ALL -gboolean g_action_group_get_action_enabled (GActionGroup *action_group, - const gchar *action_name); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_action_group_get_action_state (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -void g_action_group_change_action_state (GActionGroup *action_group, - const gchar *action_name, - GVariant *value); - -GLIB_AVAILABLE_IN_ALL -void g_action_group_activate_action (GActionGroup *action_group, - const gchar *action_name, - GVariant *parameter); - -/* signals */ -GLIB_AVAILABLE_IN_ALL -void g_action_group_action_added (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -void g_action_group_action_removed (GActionGroup *action_group, - const gchar *action_name); -GLIB_AVAILABLE_IN_ALL -void g_action_group_action_enabled_changed (GActionGroup *action_group, - const gchar *action_name, - gboolean enabled); - -GLIB_AVAILABLE_IN_ALL -void g_action_group_action_state_changed (GActionGroup *action_group, - const gchar *action_name, - GVariant *state); - -GLIB_AVAILABLE_IN_2_32 -gboolean g_action_group_query_action (GActionGroup *action_group, - const gchar *action_name, - gboolean *enabled, - const GVariantType **parameter_type, - const GVariantType **state_type, - GVariant **state_hint, - GVariant **state); - -G_END_DECLS - -#endif /* __G_ACTION_GROUP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroupexporter.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroupexporter.h deleted file mode 100644 index 31f21f2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactiongroupexporter.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * Copyright © 2011 Canonical Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - - -#ifndef __G_ACTION_GROUP_EXPORTER_H__ -#define __G_ACTION_GROUP_EXPORTER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_2_32 -guint g_dbus_connection_export_action_group (GDBusConnection *connection, - const gchar *object_path, - GActionGroup *action_group, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -void g_dbus_connection_unexport_action_group (GDBusConnection *connection, - guint export_id); - -G_END_DECLS - -#endif /* __G_ACTION_GROUP_EXPORTER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactionmap.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactionmap.h deleted file mode 100644 index 93451a8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gactionmap.h +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_ACTION_MAP_H__ -#define __G_ACTION_MAP_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -#define G_TYPE_ACTION_MAP (g_action_map_get_type ()) -#define G_ACTION_MAP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_ACTION_MAP, GActionMap)) -#define G_IS_ACTION_MAP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_ACTION_MAP)) -#define G_ACTION_MAP_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), \ - G_TYPE_ACTION_MAP, GActionMapInterface)) - -typedef struct _GActionMapInterface GActionMapInterface; -typedef struct _GActionEntry GActionEntry; - -struct _GActionMapInterface -{ - GTypeInterface g_iface; - - GAction * (* lookup_action) (GActionMap *action_map, - const gchar *action_name); - void (* add_action) (GActionMap *action_map, - GAction *action); - void (* remove_action) (GActionMap *action_map, - const gchar *action_name); -}; - -struct _GActionEntry -{ - const gchar *name; - - void (* activate) (GSimpleAction *action, - GVariant *parameter, - gpointer user_data); - - const gchar *parameter_type; - - const gchar *state; - - void (* change_state) (GSimpleAction *action, - GVariant *value, - gpointer user_data); - - /*< private >*/ - gsize padding[3]; -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_action_map_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -GAction * g_action_map_lookup_action (GActionMap *action_map, - const gchar *action_name); -GLIB_AVAILABLE_IN_2_32 -void g_action_map_add_action (GActionMap *action_map, - GAction *action); -GLIB_AVAILABLE_IN_2_32 -void g_action_map_remove_action (GActionMap *action_map, - const gchar *action_name); -GLIB_AVAILABLE_IN_2_32 -void g_action_map_add_action_entries (GActionMap *action_map, - const GActionEntry *entries, - gint n_entries, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_ACTION_MAP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gappinfo.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gappinfo.h deleted file mode 100644 index baed4c4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gappinfo.h +++ /dev/null @@ -1,301 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_APP_INFO_H__ -#define __G_APP_INFO_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_APP_INFO (g_app_info_get_type ()) -#define G_APP_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_APP_INFO, GAppInfo)) -#define G_IS_APP_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_APP_INFO)) -#define G_APP_INFO_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_APP_INFO, GAppInfoIface)) - -#define G_TYPE_APP_LAUNCH_CONTEXT (g_app_launch_context_get_type ()) -#define G_APP_LAUNCH_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_APP_LAUNCH_CONTEXT, GAppLaunchContext)) -#define G_APP_LAUNCH_CONTEXT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_APP_LAUNCH_CONTEXT, GAppLaunchContextClass)) -#define G_IS_APP_LAUNCH_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_APP_LAUNCH_CONTEXT)) -#define G_IS_APP_LAUNCH_CONTEXT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_APP_LAUNCH_CONTEXT)) -#define G_APP_LAUNCH_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_APP_LAUNCH_CONTEXT, GAppLaunchContextClass)) - -typedef struct _GAppLaunchContextClass GAppLaunchContextClass; -typedef struct _GAppLaunchContextPrivate GAppLaunchContextPrivate; - -/** - * GAppInfo: - * - * Information about an installed application and methods to launch - * it (with file arguments). - */ - -/** - * GAppInfoIface: - * @g_iface: The parent interface. - * @dup: Copies a #GAppInfo. - * @equal: Checks two #GAppInfos for equality. - * @get_id: Gets a string identifier for a #GAppInfo. - * @get_name: Gets the name of the application for a #GAppInfo. - * @get_description: Gets a short description for the application described by the #GAppInfo. - * @get_executable: Gets the executable name for the #GAppInfo. - * @get_icon: Gets the #GIcon for the #GAppInfo. - * @launch: Launches an application specified by the #GAppInfo. - * @supports_uris: Indicates whether the application specified supports launching URIs. - * @supports_files: Indicates whether the application specified accepts filename arguments. - * @launch_uris: Launches an application with a list of URIs. - * @should_show: Returns whether an application should be shown (e.g. when getting a list of installed applications). - * - * FreeDesktop.Org Startup Notification Specification. - * @set_as_default_for_type: Sets an application as default for a given content type. - * @set_as_default_for_extension: Sets an application as default for a given file extension. - * @add_supports_type: Adds to the #GAppInfo information about supported file types. - * @can_remove_supports_type: Checks for support for removing supported file types from a #GAppInfo. - * @remove_supports_type: Removes a supported application type from a #GAppInfo. - * @can_delete: Checks if a #GAppInfo can be deleted. Since 2.20 - * @do_delete: Deletes a #GAppInfo. Since 2.20 - * @get_commandline: Gets the commandline for the #GAppInfo. Since 2.20 - * @get_display_name: Gets the display name for the #GAppInfo. Since 2.24 - * @set_as_last_used_for_type: Sets the application as the last used. See g_app_info_set_as_last_used_for_type(). - * - * Application Information interface, for operating system portability. - */ -typedef struct _GAppInfoIface GAppInfoIface; - -struct _GAppInfoIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GAppInfo * (* dup) (GAppInfo *appinfo); - gboolean (* equal) (GAppInfo *appinfo1, - GAppInfo *appinfo2); - const char * (* get_id) (GAppInfo *appinfo); - const char * (* get_name) (GAppInfo *appinfo); - const char * (* get_description) (GAppInfo *appinfo); - const char * (* get_executable) (GAppInfo *appinfo); - GIcon * (* get_icon) (GAppInfo *appinfo); - gboolean (* launch) (GAppInfo *appinfo, - GList *files, - GAppLaunchContext *launch_context, - GError **error); - gboolean (* supports_uris) (GAppInfo *appinfo); - gboolean (* supports_files) (GAppInfo *appinfo); - gboolean (* launch_uris) (GAppInfo *appinfo, - GList *uris, - GAppLaunchContext *launch_context, - GError **error); - gboolean (* should_show) (GAppInfo *appinfo); - - /* For changing associations */ - gboolean (* set_as_default_for_type) (GAppInfo *appinfo, - const char *content_type, - GError **error); - gboolean (* set_as_default_for_extension) (GAppInfo *appinfo, - const char *extension, - GError **error); - gboolean (* add_supports_type) (GAppInfo *appinfo, - const char *content_type, - GError **error); - gboolean (* can_remove_supports_type) (GAppInfo *appinfo); - gboolean (* remove_supports_type) (GAppInfo *appinfo, - const char *content_type, - GError **error); - gboolean (* can_delete) (GAppInfo *appinfo); - gboolean (* do_delete) (GAppInfo *appinfo); - const char * (* get_commandline) (GAppInfo *appinfo); - const char * (* get_display_name) (GAppInfo *appinfo); - gboolean (* set_as_last_used_for_type) (GAppInfo *appinfo, - const char *content_type, - GError **error); - const char ** (* get_supported_types) (GAppInfo *appinfo); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_app_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GAppInfo * g_app_info_create_from_commandline (const char *commandline, - const char *application_name, - GAppInfoCreateFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -GAppInfo * g_app_info_dup (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_equal (GAppInfo *appinfo1, - GAppInfo *appinfo2); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_id (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_name (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_display_name (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_description (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_executable (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -const char *g_app_info_get_commandline (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -GIcon * g_app_info_get_icon (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_launch (GAppInfo *appinfo, - GList *files, - GAppLaunchContext *launch_context, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_supports_uris (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_supports_files (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_launch_uris (GAppInfo *appinfo, - GList *uris, - GAppLaunchContext *launch_context, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_should_show (GAppInfo *appinfo); - -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_set_as_default_for_type (GAppInfo *appinfo, - const char *content_type, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_set_as_default_for_extension (GAppInfo *appinfo, - const char *extension, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_add_supports_type (GAppInfo *appinfo, - const char *content_type, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_can_remove_supports_type (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_remove_supports_type (GAppInfo *appinfo, - const char *content_type, - GError **error); -GLIB_AVAILABLE_IN_2_34 -const char **g_app_info_get_supported_types (GAppInfo *appinfo); - -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_can_delete (GAppInfo *appinfo); -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_delete (GAppInfo *appinfo); - -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_set_as_last_used_for_type (GAppInfo *appinfo, - const char *content_type, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GList * g_app_info_get_all (void); -GLIB_AVAILABLE_IN_ALL -GList * g_app_info_get_all_for_type (const char *content_type); -GLIB_AVAILABLE_IN_ALL -GList * g_app_info_get_recommended_for_type (const gchar *content_type); -GLIB_AVAILABLE_IN_ALL -GList * g_app_info_get_fallback_for_type (const gchar *content_type); - -GLIB_AVAILABLE_IN_ALL -void g_app_info_reset_type_associations (const char *content_type); -GLIB_AVAILABLE_IN_ALL -GAppInfo *g_app_info_get_default_for_type (const char *content_type, - gboolean must_support_uris); -GLIB_AVAILABLE_IN_ALL -GAppInfo *g_app_info_get_default_for_uri_scheme (const char *uri_scheme); - -GLIB_AVAILABLE_IN_ALL -gboolean g_app_info_launch_default_for_uri (const char *uri, - GAppLaunchContext *launch_context, - GError **error); - -/** - * GAppLaunchContext: - * - * Integrating the launch with the launching application. This is used to - * handle for instance startup notification and launching the new application - * on the same screen as the launching window. - */ -struct _GAppLaunchContext -{ - GObject parent_instance; - - /*< private >*/ - GAppLaunchContextPrivate *priv; -}; - -struct _GAppLaunchContextClass -{ - GObjectClass parent_class; - - char * (* get_display) (GAppLaunchContext *context, - GAppInfo *info, - GList *files); - char * (* get_startup_notify_id) (GAppLaunchContext *context, - GAppInfo *info, - GList *files); - void (* launch_failed) (GAppLaunchContext *context, - const char *startup_notify_id); - void (* launched) (GAppLaunchContext *context, - GAppInfo *info, - GVariant *platform_data); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_app_launch_context_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GAppLaunchContext *g_app_launch_context_new (void); - -GLIB_AVAILABLE_IN_2_32 -void g_app_launch_context_setenv (GAppLaunchContext *context, - const char *variable, - const char *value); -GLIB_AVAILABLE_IN_2_32 -void g_app_launch_context_unsetenv (GAppLaunchContext *context, - const char *variable); -GLIB_AVAILABLE_IN_2_32 -char ** g_app_launch_context_get_environment (GAppLaunchContext *context); - -GLIB_AVAILABLE_IN_ALL -char * g_app_launch_context_get_display (GAppLaunchContext *context, - GAppInfo *info, - GList *files); -GLIB_AVAILABLE_IN_ALL -char * g_app_launch_context_get_startup_notify_id (GAppLaunchContext *context, - GAppInfo *info, - GList *files); -GLIB_AVAILABLE_IN_ALL -void g_app_launch_context_launch_failed (GAppLaunchContext *context, - const char * startup_notify_id); - -G_END_DECLS - -#endif /* __G_APP_INFO_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplication.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplication.h deleted file mode 100644 index 5878a7f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplication.h +++ /dev/null @@ -1,206 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_APPLICATION_H__ -#define __G_APPLICATION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_APPLICATION (g_application_get_type ()) -#define G_APPLICATION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_APPLICATION, GApplication)) -#define G_APPLICATION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_APPLICATION, GApplicationClass)) -#define G_IS_APPLICATION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_APPLICATION)) -#define G_IS_APPLICATION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_APPLICATION)) -#define G_APPLICATION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_APPLICATION, GApplicationClass)) - -typedef struct _GApplicationPrivate GApplicationPrivate; -typedef struct _GApplicationClass GApplicationClass; - -/** - * GApplication: - * - * Since: 2.28 - */ -struct _GApplication -{ - /*< private >*/ - GObject parent_instance; - - GApplicationPrivate *priv; -}; - -struct _GApplicationClass -{ - /*< private >*/ - GObjectClass parent_class; - - /*< public >*/ - /* signals */ - void (* startup) (GApplication *application); - - void (* activate) (GApplication *application); - - void (* open) (GApplication *application, - GFile **files, - gint n_files, - const gchar *hint); - - int (* command_line) (GApplication *application, - GApplicationCommandLine *command_line); - - /* vfuncs */ - - /** - * GApplicationClass::local_command_line: - * @application: a #GApplication - * @arguments: (inout) (array zero-terminated=1): array of command line arguments - * @exit_status: (out): exit status to fill after processing the command line. - * - * This virtual function is always invoked in the local instance. It - * gets passed a pointer to a %NULL-terminated copy of @argv and is - * expected to remove arguments that it handled (shifting up remaining - * arguments). - * - * The last argument to local_command_line() is a pointer to the @status - * variable which can used to set the exit status that is returned from - * g_application_run(). - * - * See g_application_run() for more details on #GApplication startup. - * - * Returns: %TRUE if the commandline has been completely handled - */ - gboolean (* local_command_line) (GApplication *application, - gchar ***arguments, - int *exit_status); - - void (* before_emit) (GApplication *application, - GVariant *platform_data); - void (* after_emit) (GApplication *application, - GVariant *platform_data); - void (* add_platform_data) (GApplication *application, - GVariantBuilder *builder); - void (* quit_mainloop) (GApplication *application); - void (* run_mainloop) (GApplication *application); - void (* shutdown) (GApplication *application); - - gboolean (* dbus_register) (GApplication *application, - GDBusConnection *connection, - const gchar *object_path, - GError **error); - void (* dbus_unregister) (GApplication *application, - GDBusConnection *connection, - const gchar *object_path); - - /*< private >*/ - gpointer padding[9]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_application_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_application_id_is_valid (const gchar *application_id); - -GLIB_AVAILABLE_IN_ALL -GApplication * g_application_new (const gchar *application_id, - GApplicationFlags flags); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_application_get_application_id (GApplication *application); -GLIB_AVAILABLE_IN_ALL -void g_application_set_application_id (GApplication *application, - const gchar *application_id); - -GLIB_AVAILABLE_IN_2_34 -GDBusConnection * g_application_get_dbus_connection (GApplication *application); -GLIB_AVAILABLE_IN_2_34 -const gchar * g_application_get_dbus_object_path (GApplication *application); - -GLIB_AVAILABLE_IN_ALL -guint g_application_get_inactivity_timeout (GApplication *application); -GLIB_AVAILABLE_IN_ALL -void g_application_set_inactivity_timeout (GApplication *application, - guint inactivity_timeout); - -GLIB_AVAILABLE_IN_ALL -GApplicationFlags g_application_get_flags (GApplication *application); -GLIB_AVAILABLE_IN_ALL -void g_application_set_flags (GApplication *application, - GApplicationFlags flags); - -GLIB_DEPRECATED -void g_application_set_action_group (GApplication *application, - GActionGroup *action_group); - -GLIB_AVAILABLE_IN_ALL -gboolean g_application_get_is_registered (GApplication *application); -GLIB_AVAILABLE_IN_ALL -gboolean g_application_get_is_remote (GApplication *application); - -GLIB_AVAILABLE_IN_ALL -gboolean g_application_register (GApplication *application, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_application_hold (GApplication *application); -GLIB_AVAILABLE_IN_ALL -void g_application_release (GApplication *application); - -GLIB_AVAILABLE_IN_ALL -void g_application_activate (GApplication *application); - -GLIB_AVAILABLE_IN_ALL -void g_application_open (GApplication *application, - GFile **files, - gint n_files, - const gchar *hint); - -GLIB_AVAILABLE_IN_ALL -int g_application_run (GApplication *application, - int argc, - char **argv); - -GLIB_AVAILABLE_IN_2_32 -void g_application_quit (GApplication *application); - -GLIB_AVAILABLE_IN_2_32 -GApplication * g_application_get_default (void); -GLIB_AVAILABLE_IN_2_32 -void g_application_set_default (GApplication *application); - -GLIB_AVAILABLE_IN_2_38 -void g_application_mark_busy (GApplication *application); -GLIB_AVAILABLE_IN_2_38 -void g_application_unmark_busy (GApplication *application); - -G_END_DECLS - -#endif /* __G_APPLICATION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplicationcommandline.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplicationcommandline.h deleted file mode 100644 index 5f70d65..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gapplicationcommandline.h +++ /dev/null @@ -1,121 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_APPLICATION_COMMAND_LINE_H__ -#define __G_APPLICATION_COMMAND_LINE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_APPLICATION_COMMAND_LINE (g_application_command_line_get_type ()) -#define G_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_APPLICATION_COMMAND_LINE, \ - GApplicationCommandLine)) -#define G_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_APPLICATION_COMMAND_LINE, \ - GApplicationCommandLineClass)) -#define G_IS_APPLICATION_COMMAND_LINE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_APPLICATION_COMMAND_LINE)) -#define G_IS_APPLICATION_COMMAND_LINE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_APPLICATION_COMMAND_LINE)) -#define G_APPLICATION_COMMAND_LINE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_APPLICATION_COMMAND_LINE, \ - GApplicationCommandLineClass)) - -typedef struct _GApplicationCommandLinePrivate GApplicationCommandLinePrivate; -typedef struct _GApplicationCommandLineClass GApplicationCommandLineClass; - -struct _GApplicationCommandLine -{ - /*< private >*/ - GObject parent_instance; - - GApplicationCommandLinePrivate *priv; -}; - -struct _GApplicationCommandLineClass -{ - /*< private >*/ - GObjectClass parent_class; - - void (* print_literal) (GApplicationCommandLine *cmdline, - const gchar *message); - void (* printerr_literal) (GApplicationCommandLine *cmdline, - const gchar *message); - GInputStream * (* get_stdin) (GApplicationCommandLine *cmdline); - - gpointer padding[11]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_application_command_line_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gchar ** g_application_command_line_get_arguments (GApplicationCommandLine *cmdline, - int *argc); - -GLIB_AVAILABLE_IN_2_36 -GInputStream * g_application_command_line_get_stdin (GApplicationCommandLine *cmdline); - -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_application_command_line_get_environ (GApplicationCommandLine *cmdline); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_application_command_line_getenv (GApplicationCommandLine *cmdline, - const gchar *name); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_application_command_line_get_cwd (GApplicationCommandLine *cmdline); - -GLIB_AVAILABLE_IN_ALL -gboolean g_application_command_line_get_is_remote (GApplicationCommandLine *cmdline); - -GLIB_AVAILABLE_IN_ALL -void g_application_command_line_print (GApplicationCommandLine *cmdline, - const gchar *format, - ...) G_GNUC_PRINTF(2, 3); -GLIB_AVAILABLE_IN_ALL -void g_application_command_line_printerr (GApplicationCommandLine *cmdline, - const gchar *format, - ...) G_GNUC_PRINTF(2, 3); - -GLIB_AVAILABLE_IN_ALL -int g_application_command_line_get_exit_status (GApplicationCommandLine *cmdline); -GLIB_AVAILABLE_IN_ALL -void g_application_command_line_set_exit_status (GApplicationCommandLine *cmdline, - int exit_status); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_application_command_line_get_platform_data (GApplicationCommandLine *cmdline); - -GLIB_AVAILABLE_IN_2_36 -GFile * g_application_command_line_create_file_for_arg (GApplicationCommandLine *cmdline, - const gchar *arg); - -G_END_DECLS - -#endif /* __G_APPLICATION_COMMAND_LINE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncinitable.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncinitable.h deleted file mode 100644 index af5cfb1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncinitable.h +++ /dev/null @@ -1,126 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_ASYNC_INITABLE_H__ -#define __G_ASYNC_INITABLE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_ASYNC_INITABLE (g_async_initable_get_type ()) -#define G_ASYNC_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ASYNC_INITABLE, GAsyncInitable)) -#define G_IS_ASYNC_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_ASYNC_INITABLE)) -#define G_ASYNC_INITABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_ASYNC_INITABLE, GAsyncInitableIface)) -#define G_TYPE_IS_ASYNC_INITABLE(type) (g_type_is_a ((type), G_TYPE_ASYNC_INITABLE)) - -/** - * GAsyncInitable: - * - * Interface for asynchronously initializable objects. - * - * Since: 2.22 - **/ -typedef struct _GAsyncInitableIface GAsyncInitableIface; - -/** - * GAsyncInitableIface: - * @g_iface: The parent interface. - * @init_async: Starts initialization of the object. - * @init_finish: Finishes initialization of the object. - * - * Provides an interface for asynchronous initializing object such that - * initialization may fail. - * - * Since: 2.22 - **/ -struct _GAsyncInitableIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - void (* init_async) (GAsyncInitable *initable, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* init_finish) (GAsyncInitable *initable, - GAsyncResult *res, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_async_initable_get_type (void) G_GNUC_CONST; - - -GLIB_AVAILABLE_IN_ALL -void g_async_initable_init_async (GAsyncInitable *initable, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_async_initable_init_finish (GAsyncInitable *initable, - GAsyncResult *res, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_async_initable_new_async (GType object_type, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data, - const gchar *first_property_name, - ...); -GLIB_AVAILABLE_IN_ALL -void g_async_initable_newv_async (GType object_type, - guint n_parameters, - GParameter *parameters, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_async_initable_new_valist_async (GType object_type, - const gchar *first_property_name, - va_list var_args, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GObject *g_async_initable_new_finish (GAsyncInitable *initable, - GAsyncResult *res, - GError **error); - - - -G_END_DECLS - - -#endif /* __G_ASYNC_INITABLE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncresult.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncresult.h deleted file mode 100644 index 9c8184f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gasyncresult.h +++ /dev/null @@ -1,87 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_ASYNC_RESULT_H__ -#define __G_ASYNC_RESULT_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_ASYNC_RESULT (g_async_result_get_type ()) -#define G_ASYNC_RESULT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ASYNC_RESULT, GAsyncResult)) -#define G_IS_ASYNC_RESULT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_ASYNC_RESULT)) -#define G_ASYNC_RESULT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_ASYNC_RESULT, GAsyncResultIface)) - -/** - * GAsyncResult: - * - * Holds results information for an asynchronous operation, - * usually passed directly to a asynchronous _finish() operation. - **/ -typedef struct _GAsyncResultIface GAsyncResultIface; - - -/** - * GAsyncResultIface: - * @g_iface: The parent interface. - * @get_user_data: Gets the user data passed to the callback. - * @get_source_object: Gets the source object that issued the asynchronous operation. - * @is_tagged: Checks if a result is tagged with a particular source. - * - * Interface definition for #GAsyncResult. - **/ -struct _GAsyncResultIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - gpointer (* get_user_data) (GAsyncResult *res); - GObject * (* get_source_object) (GAsyncResult *res); - - gboolean (* is_tagged) (GAsyncResult *res, - gpointer source_tag); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_async_result_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gpointer g_async_result_get_user_data (GAsyncResult *res); -GLIB_AVAILABLE_IN_ALL -GObject *g_async_result_get_source_object (GAsyncResult *res); - -GLIB_AVAILABLE_IN_2_34 -gboolean g_async_result_legacy_propagate_error (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_2_34 -gboolean g_async_result_is_tagged (GAsyncResult *res, - gpointer source_tag); - -G_END_DECLS - -#endif /* __G_ASYNC_RESULT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedinputstream.h deleted file mode 100644 index a4f8ef0..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedinputstream.h +++ /dev/null @@ -1,135 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_BUFFERED_INPUT_STREAM_H__ -#define __G_BUFFERED_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_BUFFERED_INPUT_STREAM (g_buffered_input_stream_get_type ()) -#define G_BUFFERED_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStream)) -#define G_BUFFERED_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStreamClass)) -#define G_IS_BUFFERED_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_BUFFERED_INPUT_STREAM)) -#define G_IS_BUFFERED_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_BUFFERED_INPUT_STREAM)) -#define G_BUFFERED_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStreamClass)) - -/** - * GBufferedInputStream: - * - * Implements #GFilterInputStream with a sized input buffer. - **/ -typedef struct _GBufferedInputStreamClass GBufferedInputStreamClass; -typedef struct _GBufferedInputStreamPrivate GBufferedInputStreamPrivate; - -struct _GBufferedInputStream -{ - GFilterInputStream parent_instance; - - /*< private >*/ - GBufferedInputStreamPrivate *priv; -}; - -struct _GBufferedInputStreamClass -{ - GFilterInputStreamClass parent_class; - - gssize (* fill) (GBufferedInputStream *stream, - gssize count, - GCancellable *cancellable, - GError **error); - - /* Async ops: (optional in derived classes) */ - void (* fill_async) (GBufferedInputStream *stream, - gssize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gssize (* fill_finish) (GBufferedInputStream *stream, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_buffered_input_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GInputStream* g_buffered_input_stream_new (GInputStream *base_stream); -GLIB_AVAILABLE_IN_ALL -GInputStream* g_buffered_input_stream_new_sized (GInputStream *base_stream, - gsize size); - -GLIB_AVAILABLE_IN_ALL -gsize g_buffered_input_stream_get_buffer_size (GBufferedInputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_buffered_input_stream_set_buffer_size (GBufferedInputStream *stream, - gsize size); -GLIB_AVAILABLE_IN_ALL -gsize g_buffered_input_stream_get_available (GBufferedInputStream *stream); -GLIB_AVAILABLE_IN_ALL -gsize g_buffered_input_stream_peek (GBufferedInputStream *stream, - void *buffer, - gsize offset, - gsize count); -GLIB_AVAILABLE_IN_ALL -const void* g_buffered_input_stream_peek_buffer (GBufferedInputStream *stream, - gsize *count); - -GLIB_AVAILABLE_IN_ALL -gssize g_buffered_input_stream_fill (GBufferedInputStream *stream, - gssize count, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_buffered_input_stream_fill_async (GBufferedInputStream *stream, - gssize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gssize g_buffered_input_stream_fill_finish (GBufferedInputStream *stream, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -int g_buffered_input_stream_read_byte (GBufferedInputStream *stream, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - -#endif /* __G_BUFFERED_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedoutputstream.h deleted file mode 100644 index 49c0fa9..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbufferedoutputstream.h +++ /dev/null @@ -1,88 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_BUFFERED_OUTPUT_STREAM_H__ -#define __G_BUFFERED_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_BUFFERED_OUTPUT_STREAM (g_buffered_output_stream_get_type ()) -#define G_BUFFERED_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_BUFFERED_OUTPUT_STREAM, GBufferedOutputStream)) -#define G_BUFFERED_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_BUFFERED_OUTPUT_STREAM, GBufferedOutputStreamClass)) -#define G_IS_BUFFERED_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_BUFFERED_OUTPUT_STREAM)) -#define G_IS_BUFFERED_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_BUFFERED_OUTPUT_STREAM)) -#define G_BUFFERED_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_BUFFERED_OUTPUT_STREAM, GBufferedOutputStreamClass)) - -/** - * GBufferedOutputStream: - * - * An implementation of #GFilterOutputStream with a sized buffer. - **/ -typedef struct _GBufferedOutputStreamClass GBufferedOutputStreamClass; -typedef struct _GBufferedOutputStreamPrivate GBufferedOutputStreamPrivate; - -struct _GBufferedOutputStream -{ - GFilterOutputStream parent_instance; - - /*< protected >*/ - GBufferedOutputStreamPrivate *priv; -}; - -struct _GBufferedOutputStreamClass -{ - GFilterOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_buffered_output_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GOutputStream* g_buffered_output_stream_new (GOutputStream *base_stream); -GLIB_AVAILABLE_IN_ALL -GOutputStream* g_buffered_output_stream_new_sized (GOutputStream *base_stream, - gsize size); -GLIB_AVAILABLE_IN_ALL -gsize g_buffered_output_stream_get_buffer_size (GBufferedOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_buffered_output_stream_set_buffer_size (GBufferedOutputStream *stream, - gsize size); -GLIB_AVAILABLE_IN_ALL -gboolean g_buffered_output_stream_get_auto_grow (GBufferedOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_buffered_output_stream_set_auto_grow (GBufferedOutputStream *stream, - gboolean auto_grow); - -G_END_DECLS - -#endif /* __G_BUFFERED_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbytesicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbytesicon.h deleted file mode 100644 index bf7753b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gbytesicon.h +++ /dev/null @@ -1,54 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_BYTES_ICON_H__ -#define __G_BYTES_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_BYTES_ICON (g_bytes_icon_get_type ()) -#define G_BYTES_ICON(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_BYTES_ICON, GBytesIcon)) -#define G_IS_BYTES_ICON(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_BYTES_ICON)) - -/** - * GBytesIcon: - * - * Gets an icon for a #GBytes. Implements #GLoadableIcon. - **/ -GLIB_AVAILABLE_IN_2_38 -GType g_bytes_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_38 -GIcon * g_bytes_icon_new (GBytes *bytes); - -GLIB_AVAILABLE_IN_2_38 -GBytes * g_bytes_icon_get_bytes (GBytesIcon *icon); - -G_END_DECLS - -#endif /* __G_BYTES_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcancellable.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcancellable.h deleted file mode 100644 index e44bbad..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcancellable.h +++ /dev/null @@ -1,120 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CANCELLABLE_H__ -#define __G_CANCELLABLE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_CANCELLABLE (g_cancellable_get_type ()) -#define G_CANCELLABLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CANCELLABLE, GCancellable)) -#define G_CANCELLABLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CANCELLABLE, GCancellableClass)) -#define G_IS_CANCELLABLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CANCELLABLE)) -#define G_IS_CANCELLABLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CANCELLABLE)) -#define G_CANCELLABLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CANCELLABLE, GCancellableClass)) - -/** - * GCancellable: - * - * Allows actions to be cancelled. - */ -typedef struct _GCancellableClass GCancellableClass; -typedef struct _GCancellablePrivate GCancellablePrivate; - -struct _GCancellable -{ - GObject parent_instance; - - /*< private >*/ - GCancellablePrivate *priv; -}; - -struct _GCancellableClass -{ - GObjectClass parent_class; - - void (* cancelled) (GCancellable *cancellable); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_cancellable_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GCancellable *g_cancellable_new (void); - -/* These are only safe to call inside a cancellable op */ -GLIB_AVAILABLE_IN_ALL -gboolean g_cancellable_is_cancelled (GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -gboolean g_cancellable_set_error_if_cancelled (GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -int g_cancellable_get_fd (GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -gboolean g_cancellable_make_pollfd (GCancellable *cancellable, - GPollFD *pollfd); -GLIB_AVAILABLE_IN_ALL -void g_cancellable_release_fd (GCancellable *cancellable); - -GLIB_AVAILABLE_IN_ALL -GSource * g_cancellable_source_new (GCancellable *cancellable); - -GLIB_AVAILABLE_IN_ALL -GCancellable *g_cancellable_get_current (void); -GLIB_AVAILABLE_IN_ALL -void g_cancellable_push_current (GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -void g_cancellable_pop_current (GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -void g_cancellable_reset (GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -gulong g_cancellable_connect (GCancellable *cancellable, - GCallback callback, - gpointer data, - GDestroyNotify data_destroy_func); -GLIB_AVAILABLE_IN_ALL -void g_cancellable_disconnect (GCancellable *cancellable, - gulong handler_id); - - -/* This is safe to call from another thread */ -GLIB_AVAILABLE_IN_ALL -void g_cancellable_cancel (GCancellable *cancellable); - -G_END_DECLS - -#endif /* __G_CANCELLABLE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcharsetconverter.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcharsetconverter.h deleted file mode 100644 index af9b989..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcharsetconverter.h +++ /dev/null @@ -1,65 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CHARSET_CONVERTER_H__ -#define __G_CHARSET_CONVERTER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_CHARSET_CONVERTER (g_charset_converter_get_type ()) -#define G_CHARSET_CONVERTER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CHARSET_CONVERTER, GCharsetConverter)) -#define G_CHARSET_CONVERTER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CHARSET_CONVERTER, GCharsetConverterClass)) -#define G_IS_CHARSET_CONVERTER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CHARSET_CONVERTER)) -#define G_IS_CHARSET_CONVERTER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CHARSET_CONVERTER)) -#define G_CHARSET_CONVERTER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CHARSET_CONVERTER, GCharsetConverterClass)) - -typedef struct _GCharsetConverterClass GCharsetConverterClass; - -struct _GCharsetConverterClass -{ - GObjectClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_charset_converter_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GCharsetConverter *g_charset_converter_new (const gchar *to_charset, - const gchar *from_charset, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_charset_converter_set_use_fallback (GCharsetConverter *converter, - gboolean use_fallback); -GLIB_AVAILABLE_IN_ALL -gboolean g_charset_converter_get_use_fallback (GCharsetConverter *converter); -GLIB_AVAILABLE_IN_ALL -guint g_charset_converter_get_num_fallbacks (GCharsetConverter *converter); - -G_END_DECLS - -#endif /* __G_CHARSET_CONVERTER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcontenttype.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcontenttype.h deleted file mode 100644 index 9ffbdeb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcontenttype.h +++ /dev/null @@ -1,73 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CONTENT_TYPE_H__ -#define __G_CONTENT_TYPE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gboolean g_content_type_equals (const gchar *type1, - const gchar *type2); -GLIB_AVAILABLE_IN_ALL -gboolean g_content_type_is_a (const gchar *type, - const gchar *supertype); -GLIB_AVAILABLE_IN_ALL -gboolean g_content_type_is_unknown (const gchar *type); -GLIB_AVAILABLE_IN_ALL -gchar * g_content_type_get_description (const gchar *type); -GLIB_AVAILABLE_IN_ALL -gchar * g_content_type_get_mime_type (const gchar *type); -GLIB_AVAILABLE_IN_ALL -GIcon * g_content_type_get_icon (const gchar *type); -GLIB_AVAILABLE_IN_2_34 -GIcon * g_content_type_get_symbolic_icon (const gchar *type); -GLIB_AVAILABLE_IN_2_34 -gchar * g_content_type_get_generic_icon_name (const gchar *type); - -GLIB_AVAILABLE_IN_ALL -gboolean g_content_type_can_be_executable (const gchar *type); - -GLIB_AVAILABLE_IN_ALL -gchar * g_content_type_from_mime_type (const gchar *mime_type); - -GLIB_AVAILABLE_IN_ALL -gchar * g_content_type_guess (const gchar *filename, - const guchar *data, - gsize data_size, - gboolean *result_uncertain); - -GLIB_AVAILABLE_IN_ALL -gchar ** g_content_type_guess_for_tree (GFile *root); - -GLIB_AVAILABLE_IN_ALL -GList * g_content_types_get_registered (void); - -G_END_DECLS - -#endif /* __G_CONTENT_TYPE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverter.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverter.h deleted file mode 100644 index 4fea64d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverter.h +++ /dev/null @@ -1,98 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CONVERTER_H__ -#define __G_CONVERTER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_CONVERTER (g_converter_get_type ()) -#define G_CONVERTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_CONVERTER, GConverter)) -#define G_IS_CONVERTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_CONVERTER)) -#define G_CONVERTER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_CONVERTER, GConverterIface)) - -/** - * GConverter: - * - * Seek object for streaming operations. - * - * Since: 2.24 - **/ -typedef struct _GConverterIface GConverterIface; - -/** - * GConverterIface: - * @g_iface: The parent interface. - * @convert: Converts data. - * @reset: Reverts the internal state of the converter to its initial state. - * - * Provides an interface for converting data from one type - * to another type. The conversion can be stateful - * and may fail at any place. - * - * Since: 2.24 - **/ -struct _GConverterIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GConverterResult (* convert) (GConverter *converter, - const void *inbuf, - gsize inbuf_size, - void *outbuf, - gsize outbuf_size, - GConverterFlags flags, - gsize *bytes_read, - gsize *bytes_written, - GError **error); - void (* reset) (GConverter *converter); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_converter_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GConverterResult g_converter_convert (GConverter *converter, - const void *inbuf, - gsize inbuf_size, - void *outbuf, - gsize outbuf_size, - GConverterFlags flags, - gsize *bytes_read, - gsize *bytes_written, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_converter_reset (GConverter *converter); - - -G_END_DECLS - - -#endif /* __G_CONVERTER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverterinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverterinputstream.h deleted file mode 100644 index 3a8f845..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverterinputstream.h +++ /dev/null @@ -1,82 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CONVERTER_INPUT_STREAM_H__ -#define __G_CONVERTER_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_CONVERTER_INPUT_STREAM (g_converter_input_stream_get_type ()) -#define G_CONVERTER_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CONVERTER_INPUT_STREAM, GConverterInputStream)) -#define G_CONVERTER_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CONVERTER_INPUT_STREAM, GConverterInputStreamClass)) -#define G_IS_CONVERTER_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CONVERTER_INPUT_STREAM)) -#define G_IS_CONVERTER_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CONVERTER_INPUT_STREAM)) -#define G_CONVERTER_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CONVERTER_INPUT_STREAM, GConverterInputStreamClass)) - -/** - * GConverterInputStream: - * - * An implementation of #GFilterInputStream that allows data - * conversion. - **/ -typedef struct _GConverterInputStreamClass GConverterInputStreamClass; -typedef struct _GConverterInputStreamPrivate GConverterInputStreamPrivate; - -struct _GConverterInputStream -{ - GFilterInputStream parent_instance; - - /*< private >*/ - GConverterInputStreamPrivate *priv; -}; - -struct _GConverterInputStreamClass -{ - GFilterInputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_converter_input_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GInputStream *g_converter_input_stream_new (GInputStream *base_stream, - GConverter *converter); -GLIB_AVAILABLE_IN_ALL -GConverter *g_converter_input_stream_get_converter (GConverterInputStream *converter_stream); - -G_END_DECLS - -#endif /* __G_CONVERTER_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverteroutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverteroutputstream.h deleted file mode 100644 index 1f91001..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gconverteroutputstream.h +++ /dev/null @@ -1,82 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_CONVERTER_OUTPUT_STREAM_H__ -#define __G_CONVERTER_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_CONVERTER_OUTPUT_STREAM (g_converter_output_stream_get_type ()) -#define G_CONVERTER_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CONVERTER_OUTPUT_STREAM, GConverterOutputStream)) -#define G_CONVERTER_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CONVERTER_OUTPUT_STREAM, GConverterOutputStreamClass)) -#define G_IS_CONVERTER_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CONVERTER_OUTPUT_STREAM)) -#define G_IS_CONVERTER_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CONVERTER_OUTPUT_STREAM)) -#define G_CONVERTER_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CONVERTER_OUTPUT_STREAM, GConverterOutputStreamClass)) - -/** - * GConverterOutputStream: - * - * An implementation of #GFilterOutputStream that allows data - * conversion. - **/ -typedef struct _GConverterOutputStreamClass GConverterOutputStreamClass; -typedef struct _GConverterOutputStreamPrivate GConverterOutputStreamPrivate; - -struct _GConverterOutputStream -{ - GFilterOutputStream parent_instance; - - /*< private >*/ - GConverterOutputStreamPrivate *priv; -}; - -struct _GConverterOutputStreamClass -{ - GFilterOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_converter_output_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GOutputStream *g_converter_output_stream_new (GOutputStream *base_stream, - GConverter *converter); -GLIB_AVAILABLE_IN_ALL -GConverter *g_converter_output_stream_get_converter (GConverterOutputStream *converter_stream); - -G_END_DECLS - -#endif /* __G_CONVERTER_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcredentials.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcredentials.h deleted file mode 100644 index ff1ae4d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gcredentials.h +++ /dev/null @@ -1,87 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_CREDENTIALS_H__ -#define __G_CREDENTIALS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#ifdef G_OS_UNIX -/* To get the uid_t type */ -#include -#include -#endif - -G_BEGIN_DECLS - -#define G_TYPE_CREDENTIALS (g_credentials_get_type ()) -#define G_CREDENTIALS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CREDENTIALS, GCredentials)) -#define G_CREDENTIALS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CREDENTIALS, GCredentialsClass)) -#define G_CREDENTIALS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CREDENTIALS, GCredentialsClass)) -#define G_IS_CREDENTIALS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CREDENTIALS)) -#define G_IS_CREDENTIALS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CREDENTIALS)) - -typedef struct _GCredentialsClass GCredentialsClass; - -GLIB_AVAILABLE_IN_ALL -GType g_credentials_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GCredentials *g_credentials_new (void); - -GLIB_AVAILABLE_IN_ALL -gchar *g_credentials_to_string (GCredentials *credentials); - -GLIB_AVAILABLE_IN_ALL -gpointer g_credentials_get_native (GCredentials *credentials, - GCredentialsType native_type); - -GLIB_AVAILABLE_IN_ALL -void g_credentials_set_native (GCredentials *credentials, - GCredentialsType native_type, - gpointer native); - -GLIB_AVAILABLE_IN_ALL -gboolean g_credentials_is_same_user (GCredentials *credentials, - GCredentials *other_credentials, - GError **error); - -#ifdef G_OS_UNIX -GLIB_AVAILABLE_IN_2_36 -pid_t g_credentials_get_unix_pid (GCredentials *credentials, - GError **error); -GLIB_AVAILABLE_IN_ALL -uid_t g_credentials_get_unix_user (GCredentials *credentials, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_credentials_set_unix_user (GCredentials *credentials, - uid_t uid, - GError **error); -#endif - -G_END_DECLS - -#endif /* __G_DBUS_PROXY_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdatainputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdatainputstream.h deleted file mode 100644 index 3ebf67a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdatainputstream.h +++ /dev/null @@ -1,182 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_DATA_INPUT_STREAM_H__ -#define __G_DATA_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DATA_INPUT_STREAM (g_data_input_stream_get_type ()) -#define G_DATA_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStream)) -#define G_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass)) -#define G_IS_DATA_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DATA_INPUT_STREAM)) -#define G_IS_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_INPUT_STREAM)) -#define G_DATA_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass)) - -/** - * GDataInputStream: - * - * An implementation of #GBufferedInputStream that allows for high-level - * data manipulation of arbitrary data (including binary operations). - **/ -typedef struct _GDataInputStreamClass GDataInputStreamClass; -typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate; - -struct _GDataInputStream -{ - GBufferedInputStream parent_instance; - - /*< private >*/ - GDataInputStreamPrivate *priv; -}; - -struct _GDataInputStreamClass -{ - GBufferedInputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_data_input_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDataInputStream * g_data_input_stream_new (GInputStream *base_stream); - -GLIB_AVAILABLE_IN_ALL -void g_data_input_stream_set_byte_order (GDataInputStream *stream, - GDataStreamByteOrder order); -GLIB_AVAILABLE_IN_ALL -GDataStreamByteOrder g_data_input_stream_get_byte_order (GDataInputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_data_input_stream_set_newline_type (GDataInputStream *stream, - GDataStreamNewlineType type); -GLIB_AVAILABLE_IN_ALL -GDataStreamNewlineType g_data_input_stream_get_newline_type (GDataInputStream *stream); -GLIB_AVAILABLE_IN_ALL -guchar g_data_input_stream_read_byte (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint16 g_data_input_stream_read_int16 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -guint16 g_data_input_stream_read_uint16 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint32 g_data_input_stream_read_int32 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -guint32 g_data_input_stream_read_uint32 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint64 g_data_input_stream_read_int64 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -guint64 g_data_input_stream_read_uint64 (GDataInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_line (GDataInputStream *stream, - gsize *length, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_30 -char * g_data_input_stream_read_line_utf8 (GDataInputStream *stream, - gsize *length, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_data_input_stream_read_line_async (GDataInputStream *stream, - gint io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_line_finish (GDataInputStream *stream, - GAsyncResult *result, - gsize *length, - GError **error); -GLIB_AVAILABLE_IN_2_30 -char * g_data_input_stream_read_line_finish_utf8(GDataInputStream *stream, - GAsyncResult *result, - gsize *length, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_until (GDataInputStream *stream, - const gchar *stop_chars, - gsize *length, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_data_input_stream_read_until_async (GDataInputStream *stream, - const gchar *stop_chars, - gint io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_until_finish (GDataInputStream *stream, - GAsyncResult *result, - gsize *length, - GError **error); - -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_upto (GDataInputStream *stream, - const gchar *stop_chars, - gssize stop_chars_len, - gsize *length, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_data_input_stream_read_upto_async (GDataInputStream *stream, - const gchar *stop_chars, - gssize stop_chars_len, - gint io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -char * g_data_input_stream_read_upto_finish (GDataInputStream *stream, - GAsyncResult *result, - gsize *length, - GError **error); - -G_END_DECLS - -#endif /* __G_DATA_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdataoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdataoutputstream.h deleted file mode 100644 index 12db684..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdataoutputstream.h +++ /dev/null @@ -1,127 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_DATA_OUTPUT_STREAM_H__ -#define __G_DATA_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DATA_OUTPUT_STREAM (g_data_output_stream_get_type ()) -#define G_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStream)) -#define G_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass)) -#define G_IS_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DATA_OUTPUT_STREAM)) -#define G_IS_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_OUTPUT_STREAM)) -#define G_DATA_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass)) - -/** - * GDataOutputStream: - * - * An implementation of #GBufferedOutputStream that allows for high-level - * data manipulation of arbitrary data (including binary operations). - **/ -typedef struct _GDataOutputStream GDataOutputStream; -typedef struct _GDataOutputStreamClass GDataOutputStreamClass; -typedef struct _GDataOutputStreamPrivate GDataOutputStreamPrivate; - -struct _GDataOutputStream -{ - GFilterOutputStream parent_instance; - - /*< private >*/ - GDataOutputStreamPrivate *priv; -}; - -struct _GDataOutputStreamClass -{ - GFilterOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_data_output_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDataOutputStream * g_data_output_stream_new (GOutputStream *base_stream); - -GLIB_AVAILABLE_IN_ALL -void g_data_output_stream_set_byte_order (GDataOutputStream *stream, - GDataStreamByteOrder order); -GLIB_AVAILABLE_IN_ALL -GDataStreamByteOrder g_data_output_stream_get_byte_order (GDataOutputStream *stream); - -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_byte (GDataOutputStream *stream, - guchar data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_int16 (GDataOutputStream *stream, - gint16 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_uint16 (GDataOutputStream *stream, - guint16 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_int32 (GDataOutputStream *stream, - gint32 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_uint32 (GDataOutputStream *stream, - guint32 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_int64 (GDataOutputStream *stream, - gint64 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_uint64 (GDataOutputStream *stream, - guint64 data, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_data_output_stream_put_string (GDataOutputStream *stream, - const char *str, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - -#endif /* __G_DATA_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusactiongroup.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusactiongroup.h deleted file mode 100644 index 4d8e168..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusactiongroup.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * Copyright © 2011 Canonical Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_DBUS_ACTION_GROUP_H__ -#define __G_DBUS_ACTION_GROUP_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include "giotypes.h" - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_ACTION_GROUP (g_dbus_action_group_get_type ()) -#define G_DBUS_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_DBUS_ACTION_GROUP, GDBusActionGroup)) -#define G_DBUS_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_DBUS_ACTION_GROUP, GDBusActionGroupClass)) -#define G_IS_DBUS_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_DBUS_ACTION_GROUP)) -#define G_IS_DBUS_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_DBUS_ACTION_GROUP)) -#define G_DBUS_ACTION_GROUP_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_DBUS_ACTION_GROUP, GDBusActionGroupClass)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_action_group_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -GDBusActionGroup * g_dbus_action_group_get (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path); - -G_END_DECLS - -#endif /* __G_DBUS_ACTION_GROUP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusaddress.h deleted file mode 100644 index 08773aa..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusaddress.h +++ /dev/null @@ -1,67 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_ADDRESS_H__ -#define __G_DBUS_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_2_36 -gchar *g_dbus_address_escape_value (const gchar *string); - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_address (const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_supported_address (const gchar *string, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_address_get_stream (const gchar *address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GIOStream *g_dbus_address_get_stream_finish (GAsyncResult *res, - gchar **out_guid, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GIOStream *g_dbus_address_get_stream_sync (const gchar *address, - gchar **out_guid, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_address_get_for_bus_sync (GBusType bus_type, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - -#endif /* __G_DBUS_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusauthobserver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusauthobserver.h deleted file mode 100644 index bc61c53..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusauthobserver.h +++ /dev/null @@ -1,53 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_AUTH_OBSERVER_H__ -#define __G_DBUS_AUTH_OBSERVER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_AUTH_OBSERVER (g_dbus_auth_observer_get_type ()) -#define G_DBUS_AUTH_OBSERVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_AUTH_OBSERVER, GDBusAuthObserver)) -#define G_IS_DBUS_AUTH_OBSERVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_AUTH_OBSERVER)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_auth_observer_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusAuthObserver *g_dbus_auth_observer_new (void); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_auth_observer_authorize_authenticated_peer (GDBusAuthObserver *observer, - GIOStream *stream, - GCredentials *credentials); - -GLIB_AVAILABLE_IN_2_34 -gboolean g_dbus_auth_observer_allow_mechanism (GDBusAuthObserver *observer, - const gchar *mechanism); - -G_END_DECLS - -#endif /* _G_DBUS_AUTH_OBSERVER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusconnection.h deleted file mode 100644 index a669953..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusconnection.h +++ /dev/null @@ -1,669 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_CONNECTION_H__ -#define __G_DBUS_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_CONNECTION (g_dbus_connection_get_type ()) -#define G_DBUS_CONNECTION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_CONNECTION, GDBusConnection)) -#define G_IS_DBUS_CONNECTION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_CONNECTION)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_connection_get_type (void) G_GNUC_CONST; - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -void g_bus_get (GBusType bus_type, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_bus_get_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_bus_get_sync (GBusType bus_type, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_new (GIOStream *stream, - const gchar *guid, - GDBusConnectionFlags flags, - GDBusAuthObserver *observer, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_connection_new_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_connection_new_sync (GIOStream *stream, - const gchar *guid, - GDBusConnectionFlags flags, - GDBusAuthObserver *observer, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_new_for_address (const gchar *address, - GDBusConnectionFlags flags, - GDBusAuthObserver *observer, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_connection_new_for_address_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_connection_new_for_address_sync (const gchar *address, - GDBusConnectionFlags flags, - GDBusAuthObserver *observer, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_start_message_processing (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_is_closed (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -GIOStream *g_dbus_connection_get_stream (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_connection_get_guid (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_connection_get_unique_name (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -GCredentials *g_dbus_connection_get_peer_credentials (GDBusConnection *connection); - -GLIB_AVAILABLE_IN_2_34 -guint32 g_dbus_connection_get_last_serial (GDBusConnection *connection); - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_get_exit_on_close (GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_set_exit_on_close (GDBusConnection *connection, - gboolean exit_on_close); -GLIB_AVAILABLE_IN_ALL -GDBusCapabilityFlags g_dbus_connection_get_capabilities (GDBusConnection *connection); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_close (GDBusConnection *connection, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_close_finish (GDBusConnection *connection, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_close_sync (GDBusConnection *connection, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_flush (GDBusConnection *connection, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_flush_finish (GDBusConnection *connection, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_flush_sync (GDBusConnection *connection, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_send_message (GDBusConnection *connection, - GDBusMessage *message, - GDBusSendMessageFlags flags, - volatile guint32 *out_serial, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_send_message_with_reply (GDBusConnection *connection, - GDBusMessage *message, - GDBusSendMessageFlags flags, - gint timeout_msec, - volatile guint32 *out_serial, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_connection_send_message_with_reply_finish (GDBusConnection *connection, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_connection_send_message_with_reply_sync (GDBusConnection *connection, - GDBusMessage *message, - GDBusSendMessageFlags flags, - gint timeout_msec, - volatile guint32 *out_serial, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_emit_signal (GDBusConnection *connection, - const gchar *destination_bus_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *signal_name, - GVariant *parameters, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_call (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - const GVariantType *reply_type, - GDBusCallFlags flags, - gint timeout_msec, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_connection_call_finish (GDBusConnection *connection, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_connection_call_sync (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - const GVariantType *reply_type, - GDBusCallFlags flags, - gint timeout_msec, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_30 -void g_dbus_connection_call_with_unix_fd_list (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - const GVariantType *reply_type, - GDBusCallFlags flags, - gint timeout_msec, - GUnixFDList *fd_list, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_30 -GVariant *g_dbus_connection_call_with_unix_fd_list_finish (GDBusConnection *connection, - GUnixFDList **out_fd_list, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_2_30 -GVariant *g_dbus_connection_call_with_unix_fd_list_sync (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - const GVariantType *reply_type, - GDBusCallFlags flags, - gint timeout_msec, - GUnixFDList *fd_list, - GUnixFDList **out_fd_list, - GCancellable *cancellable, - GError **error); - -/* ---------------------------------------------------------------------------------------------------- */ - - -/** - * GDBusInterfaceMethodCallFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that the method was invoked on. - * @interface_name: The D-Bus interface name the method was invoked on. - * @method_name: The name of the method that was invoked. - * @parameters: A #GVariant tuple with parameters. - * @invocation: A #GDBusMethodInvocation object that can be used to return a value or error. - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object(). - * - * The type of the @method_call function in #GDBusInterfaceVTable. - * - * Since: 2.26 - */ -typedef void (*GDBusInterfaceMethodCallFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - GDBusMethodInvocation *invocation, - gpointer user_data); - -/** - * GDBusInterfaceGetPropertyFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that the method was invoked on. - * @interface_name: The D-Bus interface name for the property. - * @property_name: The name of the property to get the value of. - * @error: Return location for error. - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object(). - * - * The type of the @get_property function in #GDBusInterfaceVTable. - * - * Returns: A #GVariant with the value for @property_name or %NULL if - * @error is set. If the returned #GVariant is floating, it is - * consumed - otherwise its reference count is decreased by one. - * - * Since: 2.26 - */ -typedef GVariant *(*GDBusInterfaceGetPropertyFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - const gchar *interface_name, - const gchar *property_name, - GError **error, - gpointer user_data); - -/** - * GDBusInterfaceSetPropertyFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that the method was invoked on. - * @interface_name: The D-Bus interface name for the property. - * @property_name: The name of the property to get the value of. - * @value: The value to set the property to. - * @error: Return location for error. - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_object(). - * - * The type of the @set_property function in #GDBusInterfaceVTable. - * - * Returns: %TRUE if the property was set to @value, %FALSE if @error is set. - * - * Since: 2.26 - */ -typedef gboolean (*GDBusInterfaceSetPropertyFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - const gchar *interface_name, - const gchar *property_name, - GVariant *value, - GError **error, - gpointer user_data); - -/** - * GDBusInterfaceVTable: - * @method_call: Function for handling incoming method calls. - * @get_property: Function for getting a property. - * @set_property: Function for setting a property. - * - * Virtual table for handling properties and method calls for a D-Bus - * interface. - * - * Since 2.38, if you want to handle getting/setting D-Bus properties - * asynchronously, give %NULL as your get_property() or set_property() - * function. The D-Bus call will be directed to your @method_call - * function, with the provided @interface_name set to - * "org.freedesktop.DBus.Properties". - * - * The usual checks on the validity of the calls is performed. For - * 'Get' calls, an error is automatically returned if - * the property does not exist or the permissions do not allow access. - * The same checks are performed for 'Set' calls, and - * the provided value is also checked for being the correct type. - * - * For both 'Get' and 'Set' calls, - * the #GDBusMethodInvocation passed to the method_call handler can be - * queried with g_dbus_method_invocation_get_property_info() to get a - * pointer to the #GDBusPropertyInfo of the property. - * - * If you have readable properties specified in your interface info, you - * must ensure that you either provide a non-%NULL @get_property() - * function or provide implementations of both the - * 'Get' and 'GetAll' methods on - * the 'org.freedesktop.DBus.Properties' interface in - * your @method_call function. Note that the required return type of - * the 'Get' call is (v), not the - * type of the property. 'GetAll' expects a return - * value of type a{sv}. - * - * If you have writable properties specified in your interface info, you - * must ensure that you either provide a non-%NULL @set_property() - * function or provide an implementation of the 'Set' - * call. If implementing the call, you must return the value of type - * %G_VARIANT_TYPE_UNIT. - * - * Since: 2.26 - */ -struct _GDBusInterfaceVTable -{ - GDBusInterfaceMethodCallFunc method_call; - GDBusInterfaceGetPropertyFunc get_property; - GDBusInterfaceSetPropertyFunc set_property; - - /*< private >*/ - /* Padding for future expansion - also remember to update - * gdbusconnection.c:_g_dbus_interface_vtable_copy() when - * changing this. - */ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -guint g_dbus_connection_register_object (GDBusConnection *connection, - const gchar *object_path, - GDBusInterfaceInfo *interface_info, - const GDBusInterfaceVTable *vtable, - gpointer user_data, - GDestroyNotify user_data_free_func, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_unregister_object (GDBusConnection *connection, - guint registration_id); - -/* ---------------------------------------------------------------------------------------------------- */ - -/** - * GDBusSubtreeEnumerateFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that was registered with g_dbus_connection_register_subtree(). - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree(). - * - * The type of the @enumerate function in #GDBusSubtreeVTable. - * - * This function is called when generating introspection data and also - * when preparing to dispatch incoming messages in the event that the - * %G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES flag is not - * specified (ie: to verify that the object path is valid). - * - * Hierarchies are not supported; the items that you return should not - * contain the '/' character. - * - * The return value will be freed with g_strfreev(). - * - * Returns: A newly allocated array of strings for node names that are children of @object_path. - * - * Since: 2.26 - */ -typedef gchar** (*GDBusSubtreeEnumerateFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - gpointer user_data); - -/** - * GDBusSubtreeIntrospectFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that was registered with g_dbus_connection_register_subtree(). - * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree. - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree(). - * - * The type of the @introspect function in #GDBusSubtreeVTable. - * - * Subtrees are flat. @node, if non-%NULL, is always exactly one - * segment of the object path (ie: it never contains a slash). - * - * This function should return %NULL to indicate that there is no object - * at this node. - * - * If this function returns non-%NULL, the return value is expected to - * be a %NULL-terminated array of pointers to #GDBusInterfaceInfo - * structures describing the interfaces implemented by @node. This - * array will have g_dbus_interface_info_unref() called on each item - * before being freed with g_free(). - * - * The difference between returning %NULL and an array containing zero - * items is that the standard DBus interfaces will returned to the - * remote introspector in the empty array case, but not in the %NULL - * case. - * - * Returns: A %NULL-terminated array of pointers to #GDBusInterfaceInfo, or %NULL. - * - * Since: 2.26 - */ -typedef GDBusInterfaceInfo ** (*GDBusSubtreeIntrospectFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - const gchar *node, - gpointer user_data); - -/** - * GDBusSubtreeDispatchFunc: - * @connection: A #GDBusConnection. - * @sender: The unique bus name of the remote caller. - * @object_path: The object path that was registered with g_dbus_connection_register_subtree(). - * @interface_name: The D-Bus interface name that the method call or property access is for. - * @node: A node that is a child of @object_path (relative to @object_path) or %NULL for the root of the subtree. - * @out_user_data: Return location for user data to pass to functions in the returned #GDBusInterfaceVTable (never %NULL). - * @user_data: The @user_data #gpointer passed to g_dbus_connection_register_subtree(). - * - * The type of the @dispatch function in #GDBusSubtreeVTable. - * - * Subtrees are flat. @node, if non-%NULL, is always exactly one - * segment of the object path (ie: it never contains a slash). - * - * Returns: A #GDBusInterfaceVTable or %NULL if you don't want to handle the methods. - * - * Since: 2.26 - */ -typedef const GDBusInterfaceVTable * (*GDBusSubtreeDispatchFunc) (GDBusConnection *connection, - const gchar *sender, - const gchar *object_path, - const gchar *interface_name, - const gchar *node, - gpointer *out_user_data, - gpointer user_data); - -/** - * GDBusSubtreeVTable: - * @enumerate: Function for enumerating child nodes. - * @introspect: Function for introspecting a child node. - * @dispatch: Function for dispatching a remote call on a child node. - * - * Virtual table for handling subtrees registered with g_dbus_connection_register_subtree(). - * - * Since: 2.26 - */ -struct _GDBusSubtreeVTable -{ - GDBusSubtreeEnumerateFunc enumerate; - GDBusSubtreeIntrospectFunc introspect; - GDBusSubtreeDispatchFunc dispatch; - - /*< private >*/ - /* Padding for future expansion - also remember to update - * gdbusconnection.c:_g_dbus_subtree_vtable_copy() when - * changing this. - */ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -guint g_dbus_connection_register_subtree (GDBusConnection *connection, - const gchar *object_path, - const GDBusSubtreeVTable *vtable, - GDBusSubtreeFlags flags, - gpointer user_data, - GDestroyNotify user_data_free_func, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_connection_unregister_subtree (GDBusConnection *connection, - guint registration_id); - -/* ---------------------------------------------------------------------------------------------------- */ - -/** - * GDBusSignalCallback: - * @connection: A #GDBusConnection. - * @sender_name: The unique bus name of the sender of the signal. - * @object_path: The object path that the signal was emitted on. - * @interface_name: The name of the interface. - * @signal_name: The name of the signal. - * @parameters: A #GVariant tuple with parameters for the signal. - * @user_data: User data passed when subscribing to the signal. - * - * Signature for callback function used in g_dbus_connection_signal_subscribe(). - * - * Since: 2.26 - */ -typedef void (*GDBusSignalCallback) (GDBusConnection *connection, - const gchar *sender_name, - const gchar *object_path, - const gchar *interface_name, - const gchar *signal_name, - GVariant *parameters, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -guint g_dbus_connection_signal_subscribe (GDBusConnection *connection, - const gchar *sender, - const gchar *interface_name, - const gchar *member, - const gchar *object_path, - const gchar *arg0, - GDBusSignalFlags flags, - GDBusSignalCallback callback, - gpointer user_data, - GDestroyNotify user_data_free_func); -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_signal_unsubscribe (GDBusConnection *connection, - guint subscription_id); - -/* ---------------------------------------------------------------------------------------------------- */ - -/** - * GDBusMessageFilterFunction: - * @connection: (transfer none): A #GDBusConnection. - * @message: (transfer full): A locked #GDBusMessage that the filter function takes ownership of. - * @incoming: %TRUE if it is a message received from the other peer, %FALSE if it is - * a message to be sent to the other peer. - * @user_data: User data passed when adding the filter. - * - * Signature for function used in g_dbus_connection_add_filter(). - * - * A filter function is passed a #GDBusMessage and expected to return - * a #GDBusMessage too. Passive filter functions that don't modify the - * message can simply return the @message object: - * |[ - * static GDBusMessage * - * passive_filter (GDBusConnection *connection - * GDBusMessage *message, - * gboolean incoming, - * gpointer user_data) - * { - * /* inspect @message */ - * return message; - * } - * ]| - * Filter functions that wants to drop a message can simply return %NULL: - * |[ - * static GDBusMessage * - * drop_filter (GDBusConnection *connection - * GDBusMessage *message, - * gboolean incoming, - * gpointer user_data) - * { - * if (should_drop_message) - * { - * g_object_unref (message); - * message = NULL; - * } - * return message; - * } - * ]| - * Finally, a filter function may modify a message by copying it: - * |[ - * static GDBusMessage * - * modifying_filter (GDBusConnection *connection - * GDBusMessage *message, - * gboolean incoming, - * gpointer user_data) - * { - * GDBusMessage *copy; - * GError *error; - * - * error = NULL; - * copy = g_dbus_message_copy (message, &error); - * /* handle @error being is set */ - * g_object_unref (message); - * - * /* modify @copy */ - * - * return copy; - * } - * ]| - * If the returned #GDBusMessage is different from @message and cannot - * be sent on @connection (it could use features, such as file - * descriptors, not compatible with @connection), then a warning is - * logged to standard error. Applications can - * check this ahead of time using g_dbus_message_to_blob() passing a - * #GDBusCapabilityFlags value obtained from @connection. - * - * Returns: (transfer full) (allow-none): A #GDBusMessage that will be freed with - * g_object_unref() or %NULL to drop the message. Passive filter - * functions can simply return the passed @message object. - * - * Since: 2.26 - */ -typedef GDBusMessage *(*GDBusMessageFilterFunction) (GDBusConnection *connection, - GDBusMessage *message, - gboolean incoming, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -guint g_dbus_connection_add_filter (GDBusConnection *connection, - GDBusMessageFilterFunction filter_function, - gpointer user_data, - GDestroyNotify user_data_free_func); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_connection_remove_filter (GDBusConnection *connection, - guint filter_id); - -/* ---------------------------------------------------------------------------------------------------- */ - - -G_END_DECLS - -#endif /* __G_DBUS_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbuserror.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbuserror.h deleted file mode 100644 index cc90a9e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbuserror.h +++ /dev/null @@ -1,111 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_ERROR_H__ -#define __G_DBUS_ERROR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_DBUS_ERROR: - * - * Error domain for errors generated by a remote message bus. Errors - * in this domain will be from the #GDBusError enumeration. See - * #GError for more information on error domains. - * - * Note that errors in this error domain is intended only for - * returning errors from a remote message bus process. Errors - * generated locally in-process by e.g. #GDBusConnection is from the - * %G_IO_ERROR domain. - * - * Since: 2.26 - */ -#define G_DBUS_ERROR g_dbus_error_quark() - -GLIB_AVAILABLE_IN_ALL -GQuark g_dbus_error_quark (void); - -/* Used by applications to check, get and strip the D-Bus error name */ -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_error_is_remote_error (const GError *error); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_error_get_remote_error (const GError *error); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_error_strip_remote_error (GError *error); - -/** - * GDBusErrorEntry: - * @error_code: An error code. - * @dbus_error_name: The D-Bus error name to associate with @error_code. - * - * Struct used in g_dbus_error_register_error_domain(). - * - * Since: 2.26 - */ -struct _GDBusErrorEntry -{ - gint error_code; - const gchar *dbus_error_name; -}; - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_error_register_error (GQuark error_domain, - gint error_code, - const gchar *dbus_error_name); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_error_unregister_error (GQuark error_domain, - gint error_code, - const gchar *dbus_error_name); -GLIB_AVAILABLE_IN_ALL -void g_dbus_error_register_error_domain (const gchar *error_domain_quark_name, - volatile gsize *quark_volatile, - const GDBusErrorEntry *entries, - guint num_entries); - -/* Only used by object mappings to map back and forth to GError */ -GLIB_AVAILABLE_IN_ALL -GError *g_dbus_error_new_for_dbus_error (const gchar *dbus_error_name, - const gchar *dbus_error_message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_error_set_dbus_error (GError **error, - const gchar *dbus_error_name, - const gchar *dbus_error_message, - const gchar *format, - ...) G_GNUC_PRINTF(4, 5); -GLIB_AVAILABLE_IN_ALL -void g_dbus_error_set_dbus_error_valist (GError **error, - const gchar *dbus_error_name, - const gchar *dbus_error_message, - const gchar *format, - va_list var_args) G_GNUC_PRINTF(4, 0); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_error_encode_gerror (const GError *error); - -G_END_DECLS - -#endif /* __G_DBUS_ERROR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterface.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterface.h deleted file mode 100644 index a82a757..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterface.h +++ /dev/null @@ -1,83 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_INTERFACE_H__ -#define __G_DBUS_INTERFACE_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_INTERFACE (g_dbus_interface_get_type()) -#define G_DBUS_INTERFACE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_INTERFACE, GDBusInterface)) -#define G_IS_DBUS_INTERFACE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_INTERFACE)) -#define G_DBUS_INTERFACE_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE((o), G_TYPE_DBUS_INTERFACE, GDBusInterfaceIface)) - -/** - * GDBusInterface: - * - * Base type for D-Bus interfaces. - * - * Since: 2.30 - */ - -typedef struct _GDBusInterfaceIface GDBusInterfaceIface; - -/** - * GDBusInterfaceIface: - * @parent_iface: The parent interface. - * @get_info: Returns a #GDBusInterfaceInfo. See g_dbus_interface_get_info(). - * @get_object: Gets the enclosing #GDBusObject. See g_dbus_interface_get_object(). - * @set_object: Sets the enclosing #GDBusObject. See g_dbus_interface_set_object(). - * @dup_object: Gets a reference to the enclosing #GDBusObject. See g_dbus_interface_dup_object(). Added in 2.32. - * - * Base type for D-Bus interfaces. - * - * Since: 2.30 - */ -struct _GDBusInterfaceIface -{ - GTypeInterface parent_iface; - - /* Virtual Functions */ - GDBusInterfaceInfo *(*get_info) (GDBusInterface *interface_); - GDBusObject *(*get_object) (GDBusInterface *interface_); - void (*set_object) (GDBusInterface *interface_, - GDBusObject *object); - GDBusObject *(*dup_object) (GDBusInterface *interface_); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_interface_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceInfo *g_dbus_interface_get_info (GDBusInterface *interface_); -GLIB_AVAILABLE_IN_ALL -GDBusObject *g_dbus_interface_get_object (GDBusInterface *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_set_object (GDBusInterface *interface_, - GDBusObject *object); -GLIB_AVAILABLE_IN_2_32 -GDBusObject *g_dbus_interface_dup_object (GDBusInterface *interface_); - -G_END_DECLS - -#endif /* __G_DBUS_INTERFACE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterfaceskeleton.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterfaceskeleton.h deleted file mode 100644 index ca79c53..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusinterfaceskeleton.h +++ /dev/null @@ -1,129 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_INTERFACE_SKELETON_H__ -#define __G_DBUS_INTERFACE_SKELETON_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_INTERFACE_SKELETON (g_dbus_interface_skeleton_get_type ()) -#define G_DBUS_INTERFACE_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_INTERFACE_SKELETON, GDBusInterfaceSkeleton)) -#define G_DBUS_INTERFACE_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_INTERFACE_SKELETON, GDBusInterfaceSkeletonClass)) -#define G_DBUS_INTERFACE_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_INTERFACE_SKELETON, GDBusInterfaceSkeletonClass)) -#define G_IS_DBUS_INTERFACE_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_INTERFACE_SKELETON)) -#define G_IS_DBUS_INTERFACE_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_INTERFACE_SKELETON)) - -typedef struct _GDBusInterfaceSkeletonClass GDBusInterfaceSkeletonClass; -typedef struct _GDBusInterfaceSkeletonPrivate GDBusInterfaceSkeletonPrivate; - -/** - * GDBusInterfaceSkeleton: - * - * The #GDBusInterfaceSkeleton structure contains private data and should - * only be accessed using the provided API. - * - * Since: 2.30 - */ -struct _GDBusInterfaceSkeleton -{ - /*< private >*/ - GObject parent_instance; - GDBusInterfaceSkeletonPrivate *priv; -}; - -/** - * GDBusInterfaceSkeletonClass: - * @parent_class: The parent class. - * @get_info: Returns a #GDBusInterfaceInfo. See g_dbus_interface_skeleton_get_info() for details. - * @get_vtable: Returns a #GDBusInterfaceVTable. See g_dbus_interface_skeleton_get_vtable() for details. - * @get_properties: Returns a #GVariant with all properties. See g_dbus_interface_skeleton_get_properties(). - * @flush: Emits outstanding changes, if any. See g_dbus_interface_skeleton_flush(). - * @g_authorize_method: Signal class handler for the #GDBusInterfaceSkeleton::g-authorize-method signal. - * - * Class structure for #GDBusInterfaceSkeleton. - * - * Since: 2.30 - */ -struct _GDBusInterfaceSkeletonClass -{ - GObjectClass parent_class; - - /* Virtual Functions */ - GDBusInterfaceInfo *(*get_info) (GDBusInterfaceSkeleton *interface_); - GDBusInterfaceVTable *(*get_vtable) (GDBusInterfaceSkeleton *interface_); - GVariant *(*get_properties) (GDBusInterfaceSkeleton *interface_); - void (*flush) (GDBusInterfaceSkeleton *interface_); - - /*< private >*/ - gpointer vfunc_padding[8]; - /*< public >*/ - - /* Signals */ - gboolean (*g_authorize_method) (GDBusInterfaceSkeleton *interface_, - GDBusMethodInvocation *invocation); - - /*< private >*/ - gpointer signal_padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_interface_skeleton_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceSkeletonFlags g_dbus_interface_skeleton_get_flags (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_skeleton_set_flags (GDBusInterfaceSkeleton *interface_, - GDBusInterfaceSkeletonFlags flags); -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceInfo *g_dbus_interface_skeleton_get_info (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceVTable *g_dbus_interface_skeleton_get_vtable (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_interface_skeleton_get_properties (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_skeleton_flush (GDBusInterfaceSkeleton *interface_); - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_interface_skeleton_export (GDBusInterfaceSkeleton *interface_, - GDBusConnection *connection, - const gchar *object_path, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_skeleton_unexport (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_skeleton_unexport_from_connection (GDBusInterfaceSkeleton *interface_, - GDBusConnection *connection); - -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_interface_skeleton_get_connection (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -GList *g_dbus_interface_skeleton_get_connections (GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_interface_skeleton_has_connection (GDBusInterfaceSkeleton *interface_, - GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_interface_skeleton_get_object_path (GDBusInterfaceSkeleton *interface_); - -G_END_DECLS - -#endif /* __G_DBUS_INTERFACE_SKELETON_H */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusintrospection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusintrospection.h deleted file mode 100644 index 32ee784..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusintrospection.h +++ /dev/null @@ -1,327 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_INTROSPECTION_H__ -#define __G_DBUS_INTROSPECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GDBusAnnotationInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @key: The name of the annotation, e.g. "org.freedesktop.DBus.Deprecated". - * @value: The value of the annotation. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about an annotation. - * - * Since: 2.26 - */ -struct _GDBusAnnotationInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *key; - gchar *value; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusArgInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @name: Name of the argument, e.g. @unix_user_id. - * @signature: D-Bus signature of the argument (a single complete type). - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about an argument for a method or a signal. - * - * Since: 2.26 - */ -struct _GDBusArgInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *name; - gchar *signature; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusMethodInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @name: The name of the D-Bus method, e.g. @RequestName. - * @in_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no in arguments. - * @out_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no out arguments. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about a method on an D-Bus interface. - * - * Since: 2.26 - */ -struct _GDBusMethodInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *name; - GDBusArgInfo **in_args; - GDBusArgInfo **out_args; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusSignalInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @name: The name of the D-Bus signal, e.g. "NameOwnerChanged". - * @args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no arguments. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about a signal on a D-Bus interface. - * - * Since: 2.26 - */ -struct _GDBusSignalInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *name; - GDBusArgInfo **args; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusPropertyInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @name: The name of the D-Bus property, e.g. "SupportedFilesystems". - * @signature: The D-Bus signature of the property (a single complete type). - * @flags: Access control flags for the property. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about a D-Bus property on a D-Bus interface. - * - * Since: 2.26 - */ -struct _GDBusPropertyInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *name; - gchar *signature; - GDBusPropertyInfoFlags flags; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusInterfaceInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @name: The name of the D-Bus interface, e.g. "org.freedesktop.DBus.Properties". - * @methods: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusMethodInfo structures or %NULL if there are no methods. - * @signals: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusSignalInfo structures or %NULL if there are no signals. - * @properties: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusPropertyInfo structures or %NULL if there are no properties. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about a D-Bus interface. - * - * Since: 2.26 - */ -struct _GDBusInterfaceInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *name; - GDBusMethodInfo **methods; - GDBusSignalInfo **signals; - GDBusPropertyInfo **properties; - GDBusAnnotationInfo **annotations; -}; - -/** - * GDBusNodeInfo: - * @ref_count: The reference count or -1 if statically allocated. - * @path: The path of the node or %NULL if omitted. Note that this may be a relative path. See the D-Bus specification for more details. - * @interfaces: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusInterfaceInfo structures or %NULL if there are no interfaces. - * @nodes: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusNodeInfo structures or %NULL if there are no nodes. - * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations. - * - * Information about nodes in a remote object hierarchy. - * - * Since: 2.26 - */ -struct _GDBusNodeInfo -{ - /*< public >*/ - volatile gint ref_count; - gchar *path; - GDBusInterfaceInfo **interfaces; - GDBusNodeInfo **nodes; - GDBusAnnotationInfo **annotations; -}; - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_annotation_info_lookup (GDBusAnnotationInfo **annotations, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GDBusMethodInfo *g_dbus_interface_info_lookup_method (GDBusInterfaceInfo *info, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GDBusSignalInfo *g_dbus_interface_info_lookup_signal (GDBusInterfaceInfo *info, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GDBusPropertyInfo *g_dbus_interface_info_lookup_property (GDBusInterfaceInfo *info, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_info_cache_build (GDBusInterfaceInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_info_cache_release (GDBusInterfaceInfo *info); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_info_generate_xml (GDBusInterfaceInfo *info, - guint indent, - GString *string_builder); - -GLIB_AVAILABLE_IN_ALL -GDBusNodeInfo *g_dbus_node_info_new_for_xml (const gchar *xml_data, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceInfo *g_dbus_node_info_lookup_interface (GDBusNodeInfo *info, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -void g_dbus_node_info_generate_xml (GDBusNodeInfo *info, - guint indent, - GString *string_builder); - -GLIB_AVAILABLE_IN_ALL -GDBusNodeInfo *g_dbus_node_info_ref (GDBusNodeInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceInfo *g_dbus_interface_info_ref (GDBusInterfaceInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusMethodInfo *g_dbus_method_info_ref (GDBusMethodInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusSignalInfo *g_dbus_signal_info_ref (GDBusSignalInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusPropertyInfo *g_dbus_property_info_ref (GDBusPropertyInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusArgInfo *g_dbus_arg_info_ref (GDBusArgInfo *info); -GLIB_AVAILABLE_IN_ALL -GDBusAnnotationInfo *g_dbus_annotation_info_ref (GDBusAnnotationInfo *info); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_node_info_unref (GDBusNodeInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_interface_info_unref (GDBusInterfaceInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_info_unref (GDBusMethodInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_signal_info_unref (GDBusSignalInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_property_info_unref (GDBusPropertyInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_arg_info_unref (GDBusArgInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_dbus_annotation_info_unref (GDBusAnnotationInfo *info); - -/** - * G_TYPE_DBUS_NODE_INFO: - * - * The #GType for a boxed type holding a #GDBusNodeInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_NODE_INFO (g_dbus_node_info_get_type ()) - -/** - * G_TYPE_DBUS_INTERFACE_INFO: - * - * The #GType for a boxed type holding a #GDBusInterfaceInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_INTERFACE_INFO (g_dbus_interface_info_get_type ()) - -/** - * G_TYPE_DBUS_METHOD_INFO: - * - * The #GType for a boxed type holding a #GDBusMethodInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_METHOD_INFO (g_dbus_method_info_get_type ()) - -/** - * G_TYPE_DBUS_SIGNAL_INFO: - * - * The #GType for a boxed type holding a #GDBusSignalInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_SIGNAL_INFO (g_dbus_signal_info_get_type ()) - -/** - * G_TYPE_DBUS_PROPERTY_INFO: - * - * The #GType for a boxed type holding a #GDBusPropertyInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_PROPERTY_INFO (g_dbus_property_info_get_type ()) - -/** - * G_TYPE_DBUS_ARG_INFO: - * - * The #GType for a boxed type holding a #GDBusArgInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_ARG_INFO (g_dbus_arg_info_get_type ()) - -/** - * G_TYPE_DBUS_ANNOTATION_INFO: - * - * The #GType for a boxed type holding a #GDBusAnnotationInfo. - * - * Since: 2.26 - */ -#define G_TYPE_DBUS_ANNOTATION_INFO (g_dbus_annotation_info_get_type ()) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_node_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_interface_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_method_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_signal_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_property_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_arg_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_dbus_annotation_info_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_DBUS_INTROSPECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmenumodel.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmenumodel.h deleted file mode 100644 index e0ec520..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmenumodel.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright © 2011 Canonical Ltd. - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_DBUS_MENU_MODEL_H__ -#define __G_DBUS_MENU_MODEL_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_MENU_MODEL (g_dbus_menu_model_get_type ()) -#define G_DBUS_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_DBUS_MENU_MODEL, GDBusMenuModel)) -#define G_IS_DBUS_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_DBUS_MENU_MODEL)) - -typedef struct _GDBusMenuModel GDBusMenuModel; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_menu_model_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GDBusMenuModel * g_dbus_menu_model_get (GDBusConnection *connection, - const gchar *bus_name, - const gchar *object_path); - -G_END_DECLS - -#endif /* __G_DBUS_MENU_MODEL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmessage.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmessage.h deleted file mode 100644 index bf27f7a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmessage.h +++ /dev/null @@ -1,199 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_MESSAGE_H__ -#define __G_DBUS_MESSAGE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_MESSAGE (g_dbus_message_get_type ()) -#define G_DBUS_MESSAGE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_MESSAGE, GDBusMessage)) -#define G_IS_DBUS_MESSAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_MESSAGE)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_message_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new (void); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_signal (const gchar *path, - const gchar *interface_, - const gchar *signal); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_method_call (const gchar *name, - const gchar *path, - const gchar *interface_, - const gchar *method); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_method_reply (GDBusMessage *method_call_message); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_method_error (GDBusMessage *method_call_message, - const gchar *error_name, - const gchar *error_message_format, - ...); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_method_error_valist (GDBusMessage *method_call_message, - const gchar *error_name, - const gchar *error_message_format, - va_list var_args); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_method_error_literal (GDBusMessage *method_call_message, - const gchar *error_name, - const gchar *error_message); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_message_print (GDBusMessage *message, - guint indent); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_message_get_locked (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_lock (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_copy (GDBusMessage *message, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusMessageByteOrder g_dbus_message_get_byte_order (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_byte_order (GDBusMessage *message, - GDBusMessageByteOrder byte_order); - -GLIB_AVAILABLE_IN_ALL -GDBusMessageType g_dbus_message_get_message_type (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_message_type (GDBusMessage *message, - GDBusMessageType type); -GLIB_AVAILABLE_IN_ALL -GDBusMessageFlags g_dbus_message_get_flags (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_flags (GDBusMessage *message, - GDBusMessageFlags flags); -GLIB_AVAILABLE_IN_ALL -guint32 g_dbus_message_get_serial (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_serial (GDBusMessage *message, - guint32 serial); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_message_get_header (GDBusMessage *message, - GDBusMessageHeaderField header_field); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_header (GDBusMessage *message, - GDBusMessageHeaderField header_field, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -guchar *g_dbus_message_get_header_fields (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_message_get_body (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_body (GDBusMessage *message, - GVariant *body); -GLIB_AVAILABLE_IN_ALL -GUnixFDList *g_dbus_message_get_unix_fd_list (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_unix_fd_list (GDBusMessage *message, - GUnixFDList *fd_list); - -GLIB_AVAILABLE_IN_ALL -guint32 g_dbus_message_get_reply_serial (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_reply_serial (GDBusMessage *message, - guint32 value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_interface (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_interface (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_member (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_member (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_path (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_path (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_sender (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_sender (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_destination (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_destination (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_error_name (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_error_name (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_signature (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_signature (GDBusMessage *message, - const gchar *value); - -GLIB_AVAILABLE_IN_ALL -guint32 g_dbus_message_get_num_unix_fds (GDBusMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_message_set_num_unix_fds (GDBusMessage *message, - guint32 value); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_message_get_arg0 (GDBusMessage *message); - - -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_message_new_from_blob (guchar *blob, - gsize blob_len, - GDBusCapabilityFlags capabilities, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gssize g_dbus_message_bytes_needed (guchar *blob, - gsize blob_len, - GError **error); - -GLIB_AVAILABLE_IN_ALL -guchar *g_dbus_message_to_blob (GDBusMessage *message, - gsize *out_size, - GDBusCapabilityFlags capabilities, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_message_to_gerror (GDBusMessage *message, - GError **error); - -G_END_DECLS - -#endif /* __G_DBUS_MESSAGE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmethodinvocation.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmethodinvocation.h deleted file mode 100644 index 7fd4aff..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusmethodinvocation.h +++ /dev/null @@ -1,99 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_METHOD_INVOCATION_H__ -#define __G_DBUS_METHOD_INVOCATION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_METHOD_INVOCATION (g_dbus_method_invocation_get_type ()) -#define G_DBUS_METHOD_INVOCATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_METHOD_INVOCATION, GDBusMethodInvocation)) -#define G_IS_DBUS_METHOD_INVOCATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_METHOD_INVOCATION)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_method_invocation_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_method_invocation_get_sender (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_method_invocation_get_object_path (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_method_invocation_get_interface_name (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_method_invocation_get_method_name (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -const GDBusMethodInfo *g_dbus_method_invocation_get_method_info (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_2_38 -const GDBusPropertyInfo *g_dbus_method_invocation_get_property_info (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_method_invocation_get_connection (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -GDBusMessage *g_dbus_method_invocation_get_message (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_method_invocation_get_parameters (GDBusMethodInvocation *invocation); -GLIB_AVAILABLE_IN_ALL -gpointer g_dbus_method_invocation_get_user_data (GDBusMethodInvocation *invocation); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_value (GDBusMethodInvocation *invocation, - GVariant *parameters); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_value_with_unix_fd_list (GDBusMethodInvocation *invocation, - GVariant *parameters, - GUnixFDList *fd_list); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_error (GDBusMethodInvocation *invocation, - GQuark domain, - gint code, - const gchar *format, - ...) G_GNUC_PRINTF(4, 5); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_error_valist (GDBusMethodInvocation *invocation, - GQuark domain, - gint code, - const gchar *format, - va_list var_args) - G_GNUC_PRINTF(4, 0); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_error_literal (GDBusMethodInvocation *invocation, - GQuark domain, - gint code, - const gchar *message); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_gerror (GDBusMethodInvocation *invocation, - const GError *error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_take_error (GDBusMethodInvocation *invocation, - GError *error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_method_invocation_return_dbus_error (GDBusMethodInvocation *invocation, - const gchar *error_name, - const gchar *error_message); - -G_END_DECLS - -#endif /* __G_DBUS_METHOD_INVOCATION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnameowning.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnameowning.h deleted file mode 100644 index 6e69bff..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnameowning.h +++ /dev/null @@ -1,117 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_NAME_OWNING_H__ -#define __G_DBUS_NAME_OWNING_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GBusAcquiredCallback: - * @connection: The #GDBusConnection to a message bus. - * @name: The name that is requested to be owned. - * @user_data: User data passed to g_bus_own_name(). - * - * Invoked when a connection to a message bus has been obtained. - * - * Since: 2.26 - */ -typedef void (*GBusAcquiredCallback) (GDBusConnection *connection, - const gchar *name, - gpointer user_data); - -/** - * GBusNameAcquiredCallback: - * @connection: The #GDBusConnection on which to acquired the name. - * @name: The name being owned. - * @user_data: User data passed to g_bus_own_name() or g_bus_own_name_on_connection(). - * - * Invoked when the name is acquired. - * - * Since: 2.26 - */ -typedef void (*GBusNameAcquiredCallback) (GDBusConnection *connection, - const gchar *name, - gpointer user_data); - -/** - * GBusNameLostCallback: - * @connection: The #GDBusConnection on which to acquire the name or %NULL if - * the connection was disconnected. - * @name: The name being owned. - * @user_data: User data passed to g_bus_own_name() or g_bus_own_name_on_connection(). - * - * Invoked when the name is lost or @connection has been closed. - * - * Since: 2.26 - */ -typedef void (*GBusNameLostCallback) (GDBusConnection *connection, - const gchar *name, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -guint g_bus_own_name (GBusType bus_type, - const gchar *name, - GBusNameOwnerFlags flags, - GBusAcquiredCallback bus_acquired_handler, - GBusNameAcquiredCallback name_acquired_handler, - GBusNameLostCallback name_lost_handler, - gpointer user_data, - GDestroyNotify user_data_free_func); - -GLIB_AVAILABLE_IN_ALL -guint g_bus_own_name_on_connection (GDBusConnection *connection, - const gchar *name, - GBusNameOwnerFlags flags, - GBusNameAcquiredCallback name_acquired_handler, - GBusNameLostCallback name_lost_handler, - gpointer user_data, - GDestroyNotify user_data_free_func); - -GLIB_AVAILABLE_IN_ALL -guint g_bus_own_name_with_closures (GBusType bus_type, - const gchar *name, - GBusNameOwnerFlags flags, - GClosure *bus_acquired_closure, - GClosure *name_acquired_closure, - GClosure *name_lost_closure); - -GLIB_AVAILABLE_IN_ALL -guint g_bus_own_name_on_connection_with_closures ( - GDBusConnection *connection, - const gchar *name, - GBusNameOwnerFlags flags, - GClosure *name_acquired_closure, - GClosure *name_lost_closure); - -GLIB_AVAILABLE_IN_ALL -void g_bus_unown_name (guint owner_id); - -G_END_DECLS - -#endif /* __G_DBUS_NAME_OWNING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnamewatching.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnamewatching.h deleted file mode 100644 index 85607bf..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusnamewatching.h +++ /dev/null @@ -1,104 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_NAME_WATCHING_H__ -#define __G_DBUS_NAME_WATCHING_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GBusNameAppearedCallback: - * @connection: The #GDBusConnection the name is being watched on. - * @name: The name being watched. - * @name_owner: Unique name of the owner of the name being watched. - * @user_data: User data passed to g_bus_watch_name(). - * - * Invoked when the name being watched is known to have to have a owner. - * - * Since: 2.26 - */ -typedef void (*GBusNameAppearedCallback) (GDBusConnection *connection, - const gchar *name, - const gchar *name_owner, - gpointer user_data); - -/** - * GBusNameVanishedCallback: - * @connection: The #GDBusConnection the name is being watched on, or - * %NULL. - * @name: The name being watched. - * @user_data: User data passed to g_bus_watch_name(). - * - * Invoked when the name being watched is known not to have to have a owner. - * - * This is also invoked when the #GDBusConection on which the watch was - * established has been closed. In that case, @connection will be - * %NULL. - * - * Since: 2.26 - */ -typedef void (*GBusNameVanishedCallback) (GDBusConnection *connection, - const gchar *name, - gpointer user_data); - - -GLIB_AVAILABLE_IN_ALL -guint g_bus_watch_name (GBusType bus_type, - const gchar *name, - GBusNameWatcherFlags flags, - GBusNameAppearedCallback name_appeared_handler, - GBusNameVanishedCallback name_vanished_handler, - gpointer user_data, - GDestroyNotify user_data_free_func); -GLIB_AVAILABLE_IN_ALL -guint g_bus_watch_name_on_connection (GDBusConnection *connection, - const gchar *name, - GBusNameWatcherFlags flags, - GBusNameAppearedCallback name_appeared_handler, - GBusNameVanishedCallback name_vanished_handler, - gpointer user_data, - GDestroyNotify user_data_free_func); -GLIB_AVAILABLE_IN_ALL -guint g_bus_watch_name_with_closures (GBusType bus_type, - const gchar *name, - GBusNameWatcherFlags flags, - GClosure *name_appeared_closure, - GClosure *name_vanished_closure); -GLIB_AVAILABLE_IN_ALL -guint g_bus_watch_name_on_connection_with_closures ( - GDBusConnection *connection, - const gchar *name, - GBusNameWatcherFlags flags, - GClosure *name_appeared_closure, - GClosure *name_vanished_closure); -GLIB_AVAILABLE_IN_ALL -void g_bus_unwatch_name (guint watcher_id); - -G_END_DECLS - -#endif /* __G_DBUS_NAME_WATCHING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobject.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobject.h deleted file mode 100644 index ad6c4d8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobject.h +++ /dev/null @@ -1,80 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_H__ -#define __G_DBUS_OBJECT_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT (g_dbus_object_get_type()) -#define G_DBUS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT, GDBusObject)) -#define G_IS_DBUS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT)) -#define G_DBUS_OBJECT_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE((o), G_TYPE_DBUS_OBJECT, GDBusObjectIface)) - -typedef struct _GDBusObjectIface GDBusObjectIface; - -/** - * GDBusObjectIface: - * @parent_iface: The parent interface. - * @get_object_path: Returns the object path. See g_dbus_object_get_object_path(). - * @get_interfaces: Returns all interfaces. See g_dbus_object_get_interfaces(). - * @get_interface: Returns an interface by name. See g_dbus_object_get_interface(). - * @interface_added: Signal handler for the #GDBusObject::interface-added signal. - * @interface_removed: Signal handler for the #GDBusObject::interface-removed signal. - * - * Base object type for D-Bus objects. - * - * Since: 2.30 - */ -struct _GDBusObjectIface -{ - GTypeInterface parent_iface; - - /* Virtual Functions */ - const gchar *(*get_object_path) (GDBusObject *object); - GList *(*get_interfaces) (GDBusObject *object); - GDBusInterface *(*get_interface) (GDBusObject *object, - const gchar *interface_name); - - /* Signals */ - void (*interface_added) (GDBusObject *object, - GDBusInterface *interface_); - void (*interface_removed) (GDBusObject *object, - GDBusInterface *interface_); - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_object_get_object_path (GDBusObject *object); -GLIB_AVAILABLE_IN_ALL -GList *g_dbus_object_get_interfaces (GDBusObject *object); -GLIB_AVAILABLE_IN_ALL -GDBusInterface *g_dbus_object_get_interface (GDBusObject *object, - const gchar *interface_name); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanager.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanager.h deleted file mode 100644 index bc00c5e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanager.h +++ /dev/null @@ -1,96 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_MANAGER_H__ -#define __G_DBUS_OBJECT_MANAGER_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT_MANAGER (g_dbus_object_manager_get_type()) -#define G_DBUS_OBJECT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT_MANAGER, GDBusObjectManager)) -#define G_IS_DBUS_OBJECT_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT_MANAGER)) -#define G_DBUS_OBJECT_MANAGER_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE((o), G_TYPE_DBUS_OBJECT_MANAGER, GDBusObjectManagerIface)) - -typedef struct _GDBusObjectManagerIface GDBusObjectManagerIface; - -/** - * GDBusObjectManagerIface: - * @parent_iface: The parent interface. - * @get_object_path: Virtual function for g_dbus_object_manager_get_object_path(). - * @get_objects: Virtual function for g_dbus_object_manager_get_objects(). - * @get_object: Virtual function for g_dbus_object_manager_get_object(). - * @get_interface: Virtual function for g_dbus_object_manager_get_interface(). - * @object_added: Signal handler for the #GDBusObjectManager::object-added signal. - * @object_removed: Signal handler for the #GDBusObjectManager::object-removed signal. - * @interface_added: Signal handler for the #GDBusObjectManager::interface-added signal. - * @interface_removed: Signal handler for the #GDBusObjectManager::interface-removed signal. - * - * Base type for D-Bus object managers. - * - * Since: 2.30 - */ -struct _GDBusObjectManagerIface -{ - GTypeInterface parent_iface; - - /* Virtual Functions */ - const gchar *(*get_object_path) (GDBusObjectManager *manager); - GList *(*get_objects) (GDBusObjectManager *manager); - GDBusObject *(*get_object) (GDBusObjectManager *manager, - const gchar *object_path); - GDBusInterface *(*get_interface) (GDBusObjectManager *manager, - const gchar *object_path, - const gchar *interface_name); - - /* Signals */ - void (*object_added) (GDBusObjectManager *manager, - GDBusObject *object); - void (*object_removed) (GDBusObjectManager *manager, - GDBusObject *object); - - void (*interface_added) (GDBusObjectManager *manager, - GDBusObject *object, - GDBusInterface *interface_); - void (*interface_removed) (GDBusObjectManager *manager, - GDBusObject *object, - GDBusInterface *interface_); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_manager_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_object_manager_get_object_path (GDBusObjectManager *manager); -GLIB_AVAILABLE_IN_ALL -GList *g_dbus_object_manager_get_objects (GDBusObjectManager *manager); -GLIB_AVAILABLE_IN_ALL -GDBusObject *g_dbus_object_manager_get_object (GDBusObjectManager *manager, - const gchar *object_path); -GLIB_AVAILABLE_IN_ALL -GDBusInterface *g_dbus_object_manager_get_interface (GDBusObjectManager *manager, - const gchar *object_path, - const gchar *interface_name); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_MANAGER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerclient.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerclient.h deleted file mode 100644 index 91d45a8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerclient.h +++ /dev/null @@ -1,148 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_MANAGER_CLIENT_H__ -#define __G_DBUS_OBJECT_MANAGER_CLIENT_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT_MANAGER_CLIENT (g_dbus_object_manager_client_get_type ()) -#define G_DBUS_OBJECT_MANAGER_CLIENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT_MANAGER_CLIENT, GDBusObjectManagerClient)) -#define G_DBUS_OBJECT_MANAGER_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_OBJECT_MANAGER_CLIENT, GDBusObjectManagerClientClass)) -#define G_DBUS_OBJECT_MANAGER_CLIENT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_OBJECT_MANAGER_CLIENT, GDBusObjectManagerClientClass)) -#define G_IS_DBUS_OBJECT_MANAGER_CLIENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT_MANAGER_CLIENT)) -#define G_IS_DBUS_OBJECT_MANAGER_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_OBJECT_MANAGER_CLIENT)) - -typedef struct _GDBusObjectManagerClientClass GDBusObjectManagerClientClass; -typedef struct _GDBusObjectManagerClientPrivate GDBusObjectManagerClientPrivate; - -/** - * GDBusObjectManagerClient: - * - * The #GDBusObjectManagerClient structure contains private data and should - * only be accessed using the provided API. - * - * Since: 2.30 - */ -struct _GDBusObjectManagerClient -{ - /*< private >*/ - GObject parent_instance; - GDBusObjectManagerClientPrivate *priv; -}; - -/** - * GDBusObjectManagerClientClass: - * @parent_class: The parent class. - * @interface_proxy_signal: Signal class handler for the #GDBusObjectManagerClient::interface-proxy-signal signal. - * @interface_proxy_properties_changed: Signal class handler for the #GDBusObjectManagerClient::interface-proxy-properties-changed signal. - * - * Class structure for #GDBusObjectManagerClient. - * - * Since: 2.30 - */ -struct _GDBusObjectManagerClientClass -{ - GObjectClass parent_class; - - /* signals */ - void (*interface_proxy_signal) (GDBusObjectManagerClient *manager, - GDBusObjectProxy *object_proxy, - GDBusProxy *interface_proxy, - const gchar *sender_name, - const gchar *signal_name, - GVariant *parameters); - - void (*interface_proxy_properties_changed) (GDBusObjectManagerClient *manager, - GDBusObjectProxy *object_proxy, - GDBusProxy *interface_proxy, - GVariant *changed_properties, - const gchar* const *invalidated_properties); - - /*< private >*/ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_manager_client_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_manager_client_new (GDBusConnection *connection, - GDBusObjectManagerClientFlags flags, - const gchar *name, - const gchar *object_path, - GDBusProxyTypeFunc get_proxy_type_func, - gpointer get_proxy_type_user_data, - GDestroyNotify get_proxy_type_destroy_notify, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusObjectManager *g_dbus_object_manager_client_new_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusObjectManager *g_dbus_object_manager_client_new_sync (GDBusConnection *connection, - GDBusObjectManagerClientFlags flags, - const gchar *name, - const gchar *object_path, - GDBusProxyTypeFunc get_proxy_type_func, - gpointer get_proxy_type_user_data, - GDestroyNotify get_proxy_type_destroy_notify, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_manager_client_new_for_bus (GBusType bus_type, - GDBusObjectManagerClientFlags flags, - const gchar *name, - const gchar *object_path, - GDBusProxyTypeFunc get_proxy_type_func, - gpointer get_proxy_type_user_data, - GDestroyNotify get_proxy_type_destroy_notify, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusObjectManager *g_dbus_object_manager_client_new_for_bus_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusObjectManager *g_dbus_object_manager_client_new_for_bus_sync (GBusType bus_type, - GDBusObjectManagerClientFlags flags, - const gchar *name, - const gchar *object_path, - GDBusProxyTypeFunc get_proxy_type_func, - gpointer get_proxy_type_user_data, - GDestroyNotify get_proxy_type_destroy_notify, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_object_manager_client_get_connection (GDBusObjectManagerClient *manager); -GLIB_AVAILABLE_IN_ALL -GDBusObjectManagerClientFlags g_dbus_object_manager_client_get_flags (GDBusObjectManagerClient *manager); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_object_manager_client_get_name (GDBusObjectManagerClient *manager); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_object_manager_client_get_name_owner (GDBusObjectManagerClient *manager); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_MANAGER_CLIENT_H */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerserver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerserver.h deleted file mode 100644 index cd7bb4b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectmanagerserver.h +++ /dev/null @@ -1,95 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_MANAGER_SERVER_H__ -#define __G_DBUS_OBJECT_MANAGER_SERVER_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT_MANAGER_SERVER (g_dbus_object_manager_server_get_type ()) -#define G_DBUS_OBJECT_MANAGER_SERVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT_MANAGER_SERVER, GDBusObjectManagerServer)) -#define G_DBUS_OBJECT_MANAGER_SERVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_OBJECT_MANAGER_SERVER, GDBusObjectManagerServerClass)) -#define G_DBUS_OBJECT_MANAGER_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_OBJECT_MANAGER_SERVER, GDBusObjectManagerServerClass)) -#define G_IS_DBUS_OBJECT_MANAGER_SERVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT_MANAGER_SERVER)) -#define G_IS_DBUS_OBJECT_MANAGER_SERVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_OBJECT_MANAGER_SERVER)) - -typedef struct _GDBusObjectManagerServerClass GDBusObjectManagerServerClass; -typedef struct _GDBusObjectManagerServerPrivate GDBusObjectManagerServerPrivate; - -/** - * GDBusObjectManagerServer: - * - * The #GDBusObjectManagerServer structure contains private data and should - * only be accessed using the provided API. - * - * Since: 2.30 - */ -struct _GDBusObjectManagerServer -{ - /*< private >*/ - GObject parent_instance; - GDBusObjectManagerServerPrivate *priv; -}; - -/** - * GDBusObjectManagerServerClass: - * @parent_class: The parent class. - * - * Class structure for #GDBusObjectManagerServer. - * - * Since: 2.30 - */ -struct _GDBusObjectManagerServerClass -{ - GObjectClass parent_class; - - /*< private >*/ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_manager_server_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusObjectManagerServer *g_dbus_object_manager_server_new (const gchar *object_path); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_object_manager_server_get_connection (GDBusObjectManagerServer *manager); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_manager_server_set_connection (GDBusObjectManagerServer *manager, - GDBusConnection *connection); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_manager_server_export (GDBusObjectManagerServer *manager, - GDBusObjectSkeleton *object); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_manager_server_export_uniquely (GDBusObjectManagerServer *manager, - GDBusObjectSkeleton *object); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_object_manager_server_is_exported (GDBusObjectManagerServer *manager, - GDBusObjectSkeleton *object); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_object_manager_server_unexport (GDBusObjectManagerServer *manager, - const gchar *object_path); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_MANAGER_SERVER_H */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectproxy.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectproxy.h deleted file mode 100644 index 8fe7416..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectproxy.h +++ /dev/null @@ -1,81 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_PROXY_H__ -#define __G_DBUS_OBJECT_PROXY_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT_PROXY (g_dbus_object_proxy_get_type ()) -#define G_DBUS_OBJECT_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT_PROXY, GDBusObjectProxy)) -#define G_DBUS_OBJECT_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_OBJECT_PROXY, GDBusObjectProxyClass)) -#define G_DBUS_OBJECT_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_OBJECT_PROXY, GDBusObjectProxyClass)) -#define G_IS_DBUS_OBJECT_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT_PROXY)) -#define G_IS_DBUS_OBJECT_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_OBJECT_PROXY)) - -typedef struct _GDBusObjectProxyClass GDBusObjectProxyClass; -typedef struct _GDBusObjectProxyPrivate GDBusObjectProxyPrivate; - -/** - * GDBusObjectProxy: - * - * The #GDBusObjectProxy structure contains private data and should - * only be accessed using the provided API. - * - * Since: 2.30 - */ -struct _GDBusObjectProxy -{ - /*< private >*/ - GObject parent_instance; - GDBusObjectProxyPrivate *priv; -}; - -/** - * GDBusObjectProxyClass: - * @parent_class: The parent class. - * - * Class structure for #GDBusObjectProxy. - * - * Since: 2.30 - */ -struct _GDBusObjectProxyClass -{ - GObjectClass parent_class; - - /*< private >*/ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_proxy_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusObjectProxy *g_dbus_object_proxy_new (GDBusConnection *connection, - const gchar *object_path); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_object_proxy_get_connection (GDBusObjectProxy *proxy); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_PROXY_H */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectskeleton.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectskeleton.h deleted file mode 100644 index 3bce873..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusobjectskeleton.h +++ /dev/null @@ -1,98 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_OBJECT_SKELETON_H__ -#define __G_DBUS_OBJECT_SKELETON_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_OBJECT_SKELETON (g_dbus_object_skeleton_get_type ()) -#define G_DBUS_OBJECT_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT_SKELETON, GDBusObjectSkeleton)) -#define G_DBUS_OBJECT_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_OBJECT_SKELETON, GDBusObjectSkeletonClass)) -#define G_DBUS_OBJECT_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_OBJECT_SKELETON, GDBusObjectSkeletonClass)) -#define G_IS_DBUS_OBJECT_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT_SKELETON)) -#define G_IS_DBUS_OBJECT_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_OBJECT_SKELETON)) - -typedef struct _GDBusObjectSkeletonClass GDBusObjectSkeletonClass; -typedef struct _GDBusObjectSkeletonPrivate GDBusObjectSkeletonPrivate; - -/** - * GDBusObjectSkeleton: - * - * The #GDBusObjectSkeleton structure contains private data and should only be - * accessed using the provided API. - * - * Since: 2.30 - */ -struct _GDBusObjectSkeleton -{ - /*< private >*/ - GObject parent_instance; - GDBusObjectSkeletonPrivate *priv; -}; - -/** - * GDBusObjectSkeletonClass: - * @parent_class: The parent class. - * @authorize_method: Signal class handler for the #GDBusObjectSkeleton::authorize-method signal. - * - * Class structure for #GDBusObjectSkeleton. - * - * Since: 2.30 - */ -struct _GDBusObjectSkeletonClass -{ - GObjectClass parent_class; - - /* Signals */ - gboolean (*authorize_method) (GDBusObjectSkeleton *object, - GDBusInterfaceSkeleton *interface_, - GDBusMethodInvocation *invocation); - - /*< private >*/ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_object_skeleton_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusObjectSkeleton *g_dbus_object_skeleton_new (const gchar *object_path); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_skeleton_flush (GDBusObjectSkeleton *object); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_skeleton_add_interface (GDBusObjectSkeleton *object, - GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_skeleton_remove_interface (GDBusObjectSkeleton *object, - GDBusInterfaceSkeleton *interface_); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_skeleton_remove_interface_by_name (GDBusObjectSkeleton *object, - const gchar *interface_name); -GLIB_AVAILABLE_IN_ALL -void g_dbus_object_skeleton_set_object_path (GDBusObjectSkeleton *object, - const gchar *object_path); - -G_END_DECLS - -#endif /* __G_DBUS_OBJECT_SKELETON_H */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusproxy.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusproxy.h deleted file mode 100644 index 18a9138..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusproxy.h +++ /dev/null @@ -1,216 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_PROXY_H__ -#define __G_DBUS_PROXY_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_PROXY (g_dbus_proxy_get_type ()) -#define G_DBUS_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_PROXY, GDBusProxy)) -#define G_DBUS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DBUS_PROXY, GDBusProxyClass)) -#define G_DBUS_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DBUS_PROXY, GDBusProxyClass)) -#define G_IS_DBUS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_PROXY)) -#define G_IS_DBUS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DBUS_PROXY)) - -typedef struct _GDBusProxyClass GDBusProxyClass; -typedef struct _GDBusProxyPrivate GDBusProxyPrivate; - -/** - * GDBusProxy: - * - * The #GDBusProxy structure contains only private data and - * should only be accessed using the provided API. - * - * Since: 2.26 - */ -struct _GDBusProxy -{ - /*< private >*/ - GObject parent_instance; - GDBusProxyPrivate *priv; -}; - -/** - * GDBusProxyClass: - * @g_properties_changed: Signal class handler for the #GDBusProxy::g-properties-changed signal. - * @g_signal: Signal class handler for the #GDBusProxy::g-signal signal. - * - * Class structure for #GDBusProxy. - * - * Since: 2.26 - */ -struct _GDBusProxyClass -{ - /*< private >*/ - GObjectClass parent_class; - - /*< public >*/ - /* Signals */ - void (*g_properties_changed) (GDBusProxy *proxy, - GVariant *changed_properties, - const gchar* const *invalidated_properties); - void (*g_signal) (GDBusProxy *proxy, - const gchar *sender_name, - const gchar *signal_name, - GVariant *parameters); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[32]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_proxy_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_new (GDBusConnection *connection, - GDBusProxyFlags flags, - GDBusInterfaceInfo *info, - const gchar *name, - const gchar *object_path, - const gchar *interface_name, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusProxy *g_dbus_proxy_new_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusProxy *g_dbus_proxy_new_sync (GDBusConnection *connection, - GDBusProxyFlags flags, - GDBusInterfaceInfo *info, - const gchar *name, - const gchar *object_path, - const gchar *interface_name, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_new_for_bus (GBusType bus_type, - GDBusProxyFlags flags, - GDBusInterfaceInfo *info, - const gchar *name, - const gchar *object_path, - const gchar *interface_name, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GDBusProxy *g_dbus_proxy_new_for_bus_finish (GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusProxy *g_dbus_proxy_new_for_bus_sync (GBusType bus_type, - GDBusProxyFlags flags, - GDBusInterfaceInfo *info, - const gchar *name, - const gchar *object_path, - const gchar *interface_name, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GDBusConnection *g_dbus_proxy_get_connection (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -GDBusProxyFlags g_dbus_proxy_get_flags (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_proxy_get_name (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_proxy_get_name_owner (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_proxy_get_object_path (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_proxy_get_interface_name (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -gint g_dbus_proxy_get_default_timeout (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_set_default_timeout (GDBusProxy *proxy, - gint timeout_msec); -GLIB_AVAILABLE_IN_ALL -GDBusInterfaceInfo *g_dbus_proxy_get_interface_info (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_set_interface_info (GDBusProxy *proxy, - GDBusInterfaceInfo *info); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_proxy_get_cached_property (GDBusProxy *proxy, - const gchar *property_name); -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_set_cached_property (GDBusProxy *proxy, - const gchar *property_name, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -gchar **g_dbus_proxy_get_cached_property_names (GDBusProxy *proxy); -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_call (GDBusProxy *proxy, - const gchar *method_name, - GVariant *parameters, - GDBusCallFlags flags, - gint timeout_msec, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_proxy_call_finish (GDBusProxy *proxy, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_proxy_call_sync (GDBusProxy *proxy, - const gchar *method_name, - GVariant *parameters, - GDBusCallFlags flags, - gint timeout_msec, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_proxy_call_with_unix_fd_list (GDBusProxy *proxy, - const gchar *method_name, - GVariant *parameters, - GDBusCallFlags flags, - gint timeout_msec, - GUnixFDList *fd_list, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_proxy_call_with_unix_fd_list_finish (GDBusProxy *proxy, - GUnixFDList **out_fd_list, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_proxy_call_with_unix_fd_list_sync (GDBusProxy *proxy, - const gchar *method_name, - GVariant *parameters, - GDBusCallFlags flags, - gint timeout_msec, - GUnixFDList *fd_list, - GUnixFDList **out_fd_list, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - -#endif /* __G_DBUS_PROXY_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusserver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusserver.h deleted file mode 100644 index 05557f0..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusserver.h +++ /dev/null @@ -1,62 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_SERVER_H__ -#define __G_DBUS_SERVER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DBUS_SERVER (g_dbus_server_get_type ()) -#define G_DBUS_SERVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_SERVER, GDBusServer)) -#define G_IS_DBUS_SERVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_SERVER)) - -GLIB_AVAILABLE_IN_ALL -GType g_dbus_server_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GDBusServer *g_dbus_server_new_sync (const gchar *address, - GDBusServerFlags flags, - const gchar *guid, - GDBusAuthObserver *observer, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_server_get_client_address (GDBusServer *server); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dbus_server_get_guid (GDBusServer *server); -GLIB_AVAILABLE_IN_ALL -GDBusServerFlags g_dbus_server_get_flags (GDBusServer *server); -GLIB_AVAILABLE_IN_ALL -void g_dbus_server_start (GDBusServer *server); -GLIB_AVAILABLE_IN_ALL -void g_dbus_server_stop (GDBusServer *server); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_server_is_active (GDBusServer *server); - -G_END_DECLS - -#endif /* __G_DBUS_SERVER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusutils.h deleted file mode 100644 index 6ef2ffd..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdbusutils.h +++ /dev/null @@ -1,57 +0,0 @@ -/* GDBus - GLib D-Bus Library - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: David Zeuthen - */ - -#ifndef __G_DBUS_UTILS_H__ -#define __G_DBUS_UTILS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_guid (const gchar *string); -GLIB_AVAILABLE_IN_ALL -gchar *g_dbus_generate_guid (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_name (const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_unique_name (const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_member_name (const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_dbus_is_interface_name (const gchar *string); - -GLIB_AVAILABLE_IN_ALL -void g_dbus_gvariant_to_gvalue (GVariant *value, - GValue *out_gvalue); -GLIB_AVAILABLE_IN_ALL -GVariant *g_dbus_gvalue_to_gvariant (const GValue *gvalue, - const GVariantType *type); - -G_END_DECLS - -#endif /* __G_DBUS_UTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdesktopappinfo.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdesktopappinfo.h deleted file mode 100644 index 5f7f68a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdesktopappinfo.h +++ /dev/null @@ -1,170 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_DESKTOP_APP_INFO_H__ -#define __G_DESKTOP_APP_INFO_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DESKTOP_APP_INFO (g_desktop_app_info_get_type ()) -#define G_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfo)) -#define G_DESKTOP_APP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfoClass)) -#define G_IS_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DESKTOP_APP_INFO)) -#define G_IS_DESKTOP_APP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DESKTOP_APP_INFO)) -#define G_DESKTOP_APP_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfoClass)) - -typedef struct _GDesktopAppInfo GDesktopAppInfo; -typedef struct _GDesktopAppInfoClass GDesktopAppInfoClass; - -struct _GDesktopAppInfoClass -{ - GObjectClass parent_class; -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_desktop_app_info_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GDesktopAppInfo *g_desktop_app_info_new_from_filename (const char *filename); -GLIB_AVAILABLE_IN_ALL -GDesktopAppInfo *g_desktop_app_info_new_from_keyfile (GKeyFile *key_file); - -GLIB_AVAILABLE_IN_ALL -const char * g_desktop_app_info_get_filename (GDesktopAppInfo *info); - -GLIB_AVAILABLE_IN_2_30 -const char * g_desktop_app_info_get_generic_name (GDesktopAppInfo *info); -GLIB_AVAILABLE_IN_2_30 -const char * g_desktop_app_info_get_categories (GDesktopAppInfo *info); -GLIB_AVAILABLE_IN_2_30 -const char * const *g_desktop_app_info_get_keywords (GDesktopAppInfo *info); -GLIB_AVAILABLE_IN_2_30 -gboolean g_desktop_app_info_get_nodisplay (GDesktopAppInfo *info); -GLIB_AVAILABLE_IN_2_30 -gboolean g_desktop_app_info_get_show_in (GDesktopAppInfo *info, - const gchar *desktop_env); -GLIB_AVAILABLE_IN_2_34 -const char * g_desktop_app_info_get_startup_wm_class (GDesktopAppInfo *info); - -GLIB_AVAILABLE_IN_ALL -GDesktopAppInfo *g_desktop_app_info_new (const char *desktop_id); -GLIB_AVAILABLE_IN_ALL -gboolean g_desktop_app_info_get_is_hidden (GDesktopAppInfo *info); - -GLIB_AVAILABLE_IN_ALL -void g_desktop_app_info_set_desktop_env (const char *desktop_env); - -GLIB_AVAILABLE_IN_2_36 -gboolean g_desktop_app_info_has_key (GDesktopAppInfo *info, - const char *key); -GLIB_AVAILABLE_IN_2_36 -char * g_desktop_app_info_get_string (GDesktopAppInfo *info, - const char *key); -GLIB_AVAILABLE_IN_2_36 -gboolean g_desktop_app_info_get_boolean (GDesktopAppInfo *info, - const char *key); - -GLIB_AVAILABLE_IN_2_38 -const gchar * const * g_desktop_app_info_list_actions (GDesktopAppInfo *info); - -GLIB_AVAILABLE_IN_2_38 -void g_desktop_app_info_launch_action (GDesktopAppInfo *info, - const gchar *action_name, - GAppLaunchContext *launch_context); - -GLIB_AVAILABLE_IN_2_38 -gchar * g_desktop_app_info_get_action_name (GDesktopAppInfo *info, - const gchar *action_name); - -#ifndef G_DISABLE_DEPRECATED - -#define G_TYPE_DESKTOP_APP_INFO_LOOKUP (g_desktop_app_info_lookup_get_type ()) -#define G_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookup)) -#define G_IS_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP)) -#define G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookupIface)) - -/** - * G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME: - * - * Extension point for default handler to URI association. See - * Extending GIO. - */ -#define G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME "gio-desktop-app-info-lookup" - -#endif /* G_DISABLE_DEPRECATED */ - -/** - * GDesktopAppInfoLookup: - * - * Interface that is used by backends to associate default - * handlers with URI schemes. - */ -typedef struct _GDesktopAppInfoLookup GDesktopAppInfoLookup; -typedef struct _GDesktopAppInfoLookupIface GDesktopAppInfoLookupIface; - -struct _GDesktopAppInfoLookupIface -{ - GTypeInterface g_iface; - - GAppInfo * (* get_default_for_uri_scheme) (GDesktopAppInfoLookup *lookup, - const char *uri_scheme); -}; - -GLIB_DEPRECATED -GType g_desktop_app_info_lookup_get_type (void) G_GNUC_CONST; - -GLIB_DEPRECATED -GAppInfo *g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup, - const char *uri_scheme); - -/** - * GDesktopAppLaunchCallback: - * @appinfo: a #GDesktopAppInfo - * @pid: Process identifier - * @user_data: User data - * - * During invocation, g_desktop_app_info_launch_uris_as_manager() may - * create one or more child processes. This callback is invoked once - * for each, providing the process ID. - */ -typedef void (*GDesktopAppLaunchCallback) (GDesktopAppInfo *appinfo, - GPid pid, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_28 -gboolean g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo *appinfo, - GList *uris, - GAppLaunchContext *launch_context, - GSpawnFlags spawn_flags, - GSpawnChildSetupFunc user_setup, - gpointer user_setup_data, - GDesktopAppLaunchCallback pid_callback, - gpointer pid_callback_data, - GError **error); - - -G_END_DECLS - -#endif /* __G_DESKTOP_APP_INFO_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdrive.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdrive.h deleted file mode 100644 index 13c02ae..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gdrive.h +++ /dev/null @@ -1,261 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - * David Zeuthen - */ - -#ifndef __G_DRIVE_H__ -#define __G_DRIVE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_DRIVE (g_drive_get_type ()) -#define G_DRIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DRIVE, GDrive)) -#define G_IS_DRIVE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DRIVE)) -#define G_DRIVE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DRIVE, GDriveIface)) - -/** - * GDriveIface: - * @g_iface: The parent interface. - * @changed: Signal emitted when the drive is changed. - * @disconnected: The removed signal that is emitted when the #GDrive have been disconnected. If the recipient is holding references to the object they should release them so the object can be finalized. - * @eject_button: Signal emitted when the physical eject button (if any) of a drive have been pressed. - * @get_name: Returns the name for the given #GDrive. - * @get_icon: Returns a #GIcon for the given #GDrive. - * @has_volumes: Returns %TRUE if the #GDrive has mountable volumes. - * @get_volumes: Returns a list #GList of #GVolume for the #GDrive. - * @is_media_removable: Returns %TRUE if the #GDrive supports removal and insertion of media. - * @has_media: Returns %TRUE if the #GDrive has media inserted. - * @is_media_check_automatic: Returns %TRUE if the #GDrive is capabable of automatically detecting media changes. - * @can_poll_for_media: Returns %TRUE if the #GDrive is capable of manually polling for media change. - * @can_eject: Returns %TRUE if the #GDrive can eject media. - * @eject: Ejects a #GDrive. - * @eject_finish: Finishes an eject operation. - * @poll_for_media: Poll for media insertion/removal on a #GDrive. - * @poll_for_media_finish: Finishes a media poll operation. - * @get_identifier: Returns the identifier of the given kind, or %NULL if - * the #GDrive doesn't have one. - * @enumerate_identifiers: Returns an array strings listing the kinds - * of identifiers which the #GDrive has. - * @get_start_stop_type: Gets a #GDriveStartStopType with details about starting/stopping the drive. Since 2.22. - * @can_stop: Returns %TRUE if a #GDrive can be stopped. Since 2.22. - * @stop: Stops a #GDrive. Since 2.22. - * @stop_finish: Finishes a stop operation. Since 2.22. - * @can_start: Returns %TRUE if a #GDrive can be started. Since 2.22. - * @can_start_degraded: Returns %TRUE if a #GDrive can be started degraded. Since 2.22. - * @start: Starts a #GDrive. Since 2.22. - * @start_finish: Finishes a start operation. Since 2.22. - * @stop_button: Signal emitted when the physical stop button (if any) of a drive have been pressed. Since 2.22. - * @eject_with_operation: Starts ejecting a #GDrive using a #GMountOperation. Since 2.22. - * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22. - * @get_sort_key: Gets a key used for sorting #GDrive instances or %NULL if no such key exists. Since 2.32. - * @get_symbolic_icon: Returns a symbolic #GIcon for the given #GDrive. Since 2.34. - * - * Interface for creating #GDrive implementations. - */ -typedef struct _GDriveIface GDriveIface; - -struct _GDriveIface -{ - GTypeInterface g_iface; - - /* signals */ - void (* changed) (GDrive *drive); - void (* disconnected) (GDrive *drive); - void (* eject_button) (GDrive *drive); - - /* Virtual Table */ - char * (* get_name) (GDrive *drive); - GIcon * (* get_icon) (GDrive *drive); - gboolean (* has_volumes) (GDrive *drive); - GList * (* get_volumes) (GDrive *drive); - gboolean (* is_media_removable) (GDrive *drive); - gboolean (* has_media) (GDrive *drive); - gboolean (* is_media_check_automatic) (GDrive *drive); - gboolean (* can_eject) (GDrive *drive); - gboolean (* can_poll_for_media) (GDrive *drive); - void (* eject) (GDrive *drive, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_finish) (GDrive *drive, - GAsyncResult *result, - GError **error); - void (* poll_for_media) (GDrive *drive, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* poll_for_media_finish) (GDrive *drive, - GAsyncResult *result, - GError **error); - - char * (* get_identifier) (GDrive *drive, - const char *kind); - char ** (* enumerate_identifiers) (GDrive *drive); - - GDriveStartStopType (* get_start_stop_type) (GDrive *drive); - - gboolean (* can_start) (GDrive *drive); - gboolean (* can_start_degraded) (GDrive *drive); - void (* start) (GDrive *drive, - GDriveStartFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* start_finish) (GDrive *drive, - GAsyncResult *result, - GError **error); - - gboolean (* can_stop) (GDrive *drive); - void (* stop) (GDrive *drive, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* stop_finish) (GDrive *drive, - GAsyncResult *result, - GError **error); - /* signal, not VFunc */ - void (* stop_button) (GDrive *drive); - - void (* eject_with_operation) (GDrive *drive, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_with_operation_finish) (GDrive *drive, - GAsyncResult *result, - GError **error); - - const gchar * (* get_sort_key) (GDrive *drive); - GIcon * (* get_symbolic_icon) (GDrive *drive); - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_drive_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -char * g_drive_get_name (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -GIcon * g_drive_get_icon (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -GIcon * g_drive_get_symbolic_icon (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_has_volumes (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -GList * g_drive_get_volumes (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_is_media_removable (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_has_media (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_is_media_check_automatic (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_can_poll_for_media (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_can_eject (GDrive *drive); -GLIB_DEPRECATED_FOR(g_drive_eject_with_operation) -void g_drive_eject (GDrive *drive, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_drive_eject_with_operation_finish) -gboolean g_drive_eject_finish (GDrive *drive, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_drive_poll_for_media (GDrive *drive, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_poll_for_media_finish (GDrive *drive, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_drive_get_identifier (GDrive *drive, - const char *kind); -GLIB_AVAILABLE_IN_ALL -char ** g_drive_enumerate_identifiers (GDrive *drive); - -GLIB_AVAILABLE_IN_ALL -GDriveStartStopType g_drive_get_start_stop_type (GDrive *drive); - -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_can_start (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_can_start_degraded (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -void g_drive_start (GDrive *drive, - GDriveStartFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_start_finish (GDrive *drive, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_can_stop (GDrive *drive); -GLIB_AVAILABLE_IN_ALL -void g_drive_stop (GDrive *drive, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_stop_finish (GDrive *drive, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_drive_eject_with_operation (GDrive *drive, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_drive_eject_with_operation_finish (GDrive *drive, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -const gchar *g_drive_get_sort_key (GDrive *drive); - -G_END_DECLS - -#endif /* __G_DRIVE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblem.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblem.h deleted file mode 100644 index d581abb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblem.h +++ /dev/null @@ -1,63 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Clemens N. Buss - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - */ - -#ifndef __G_EMBLEM_H__ -#define __G_EMBLEM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_EMBLEM (g_emblem_get_type ()) -#define G_EMBLEM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_EMBLEM, GEmblem)) -#define G_EMBLEM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_EMBLEM, GEmblemClass)) -#define G_IS_EMBLEM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_EMBLEM)) -#define G_IS_EMBLEM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_EMBLEM)) -#define G_EMBLEM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_EMBLEM, GEmblemClass)) - -/** - * GEmblem: - * - * An object for Emblems - */ -typedef struct _GEmblem GEmblem; -typedef struct _GEmblemClass GEmblemClass; - -GLIB_AVAILABLE_IN_ALL -GType g_emblem_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GEmblem *g_emblem_new (GIcon *icon); -GLIB_AVAILABLE_IN_ALL -GEmblem *g_emblem_new_with_origin (GIcon *icon, - GEmblemOrigin origin); -GLIB_AVAILABLE_IN_ALL -GIcon *g_emblem_get_icon (GEmblem *emblem); -GLIB_AVAILABLE_IN_ALL -GEmblemOrigin g_emblem_get_origin (GEmblem *emblem); - -G_END_DECLS - -#endif /* __G_EMBLEM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblemedicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblemedicon.h deleted file mode 100644 index 714fe39..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gemblemedicon.h +++ /dev/null @@ -1,83 +0,0 @@ -/* Gio - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Matthias Clasen - * Clemens N. Buss - */ - -#ifndef __G_EMBLEMED_ICON_H__ -#define __G_EMBLEMED_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_EMBLEMED_ICON (g_emblemed_icon_get_type ()) -#define G_EMBLEMED_ICON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_EMBLEMED_ICON, GEmblemedIcon)) -#define G_EMBLEMED_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_EMBLEMED_ICON, GEmblemedIconClass)) -#define G_IS_EMBLEMED_ICON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_EMBLEMED_ICON)) -#define G_IS_EMBLEMED_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_EMBLEMED_ICON)) -#define G_EMBLEMED_ICON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_EMBLEMED_ICON, GEmblemedIconClass)) - -/** - * GEmblemedIcon: - * - * An implementation of #GIcon for icons with emblems. - **/ -typedef struct _GEmblemedIcon GEmblemedIcon; -typedef struct _GEmblemedIconClass GEmblemedIconClass; -typedef struct _GEmblemedIconPrivate GEmblemedIconPrivate; - -struct _GEmblemedIcon -{ - GObject parent_instance; - - /*< private >*/ - GEmblemedIconPrivate *priv; -}; - -struct _GEmblemedIconClass -{ - GObjectClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_emblemed_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GIcon *g_emblemed_icon_new (GIcon *icon, - GEmblem *emblem); -GLIB_AVAILABLE_IN_ALL -GIcon *g_emblemed_icon_get_icon (GEmblemedIcon *emblemed); -GLIB_AVAILABLE_IN_ALL -GList *g_emblemed_icon_get_emblems (GEmblemedIcon *emblemed); -GLIB_AVAILABLE_IN_ALL -void g_emblemed_icon_add_emblem (GEmblemedIcon *emblemed, - GEmblem *emblem); -GLIB_AVAILABLE_IN_ALL -void g_emblemed_icon_clear_emblems (GEmblemedIcon *emblemed); - -G_END_DECLS - -#endif /* __G_EMBLEMED_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfile.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfile.h deleted file mode 100644 index 394c643..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfile.h +++ /dev/null @@ -1,1243 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_H__ -#define __G_FILE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE (g_file_get_type ()) -#define G_FILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_FILE, GFile)) -#define G_IS_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_FILE)) -#define G_FILE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_FILE, GFileIface)) - -#if 0 -/** - * GFile: - * - * A handle to an object implementing the #GFileIface interface. - * Generally stores a location within the file system. Handles do not - * necessarily represent files or directories that currently exist. - **/ -typedef struct _GFile GFile; /* Dummy typedef */ -#endif -typedef struct _GFileIface GFileIface; - - -/** - * GFileIface: - * @g_iface: The parent interface. - * @dup: Duplicates a #GFile. - * @hash: Creates a hash of a #GFile. - * @equal: Checks equality of two given #GFiles. - * @is_native: Checks to see if a file is native to the system. - * @has_uri_scheme: Checks to see if a #GFile has a given URI scheme. - * @get_uri_scheme: Gets the URI scheme for a #GFile. - * @get_basename: Gets the basename for a given #GFile. - * @get_path: Gets the current path within a #GFile. - * @get_uri: Gets a URI for the path within a #GFile. - * @get_parse_name: Gets the parsed name for the #GFile. - * @get_parent: Gets the parent directory for the #GFile. - * @prefix_matches: Checks whether a #GFile contains a specified file. - * @get_relative_path: Gets the path for a #GFile relative to a given path. - * @resolve_relative_path: Resolves a relative path for a #GFile to an absolute path. - * @get_child_for_display_name: Gets the child #GFile for a given display name. - * @enumerate_children: Gets a #GFileEnumerator with the children of a #GFile. - * @enumerate_children_async: Asynchronously gets a #GFileEnumerator with the children of a #GFile. - * @enumerate_children_finish: Finishes asynchronously enumerating the children. - * @query_info: Gets the #GFileInfo for a #GFile. - * @query_info_async: Asynchronously gets the #GFileInfo for a #GFile. - * @query_info_finish: Finishes an asynchronous query info operation. - * @query_filesystem_info: Gets a #GFileInfo for the file system #GFile is on. - * @query_filesystem_info_async: Asynchronously gets a #GFileInfo for the file system #GFile is on. - * @query_filesystem_info_finish: Finishes asynchronously getting the file system info. - * @find_enclosing_mount: Gets a #GMount for the #GFile. - * @find_enclosing_mount_async: Asynchronously gets the #GMount for a #GFile. - * @find_enclosing_mount_finish: Finishes asynchronously getting the volume. - * @set_display_name: Sets the display name for a #GFile. - * @set_display_name_async: Asynchronously sets a #GFile's display name. - * @set_display_name_finish: Finishes asynchronously setting a #GFile's display name. - * @query_settable_attributes: Returns a list of #GFileAttributes that can be set. - * @_query_settable_attributes_async: Asynchronously gets a list of #GFileAttributes that can be set. - * @_query_settable_attributes_finish: Finishes asynchronously querying settable attributes. - * @query_writable_namespaces: Returns a list of #GFileAttribute namespaces that are writable. - * @_query_writable_namespaces_async: Asynchronously gets a list of #GFileAttribute namespaces that are writable. - * @_query_writable_namespaces_finish: Finishes asynchronously querying the writable namespaces. - * @set_attribute: Sets a #GFileAttribute. - * @set_attributes_from_info: Sets a #GFileAttribute with information from a #GFileInfo. - * @set_attributes_async: Asynchronously sets a file's attributes. - * @set_attributes_finish: Finishes setting a file's attributes asynchronously. - * @read_fn: Reads a file asynchronously. - * @read_async: Asynchronously reads a file. - * @read_finish: Finishes asynchronously reading a file. - * @append_to: Writes to the end of a file. - * @append_to_async: Asynchronously writes to the end of a file. - * @append_to_finish: Finishes an asynchronous file append operation. - * @create: Creates a new file. - * @create_async: Asynchronously creates a file. - * @create_finish: Finishes asynchronously creating a file. - * @replace: Replaces the contents of a file. - * @replace_async: Asynchronously replaces the contents of a file. - * @replace_finish: Finishes asynchronously replacing a file. - * @delete_file: Deletes a file. - * @delete_file_async: Asynchronously deletes a file. - * @delete_file_finish: Finishes an asynchronous delete. - * @trash: Sends a #GFile to the Trash location. - * @trash_async: Asynchronously sends a #GFile to the Trash location. - * @trash_finish: Finishes an asynchronous file trashing operation. - * @make_directory: Makes a directory. - * @make_directory_async: Asynchronously makes a directory. - * @make_directory_finish: Finishes making a directory asynchronously. - * @make_symbolic_link: Makes a symbolic link. - * @_make_symbolic_link_async: Asynchronously makes a symbolic link - * @_make_symbolic_link_finish: Finishes making a symbolic link asynchronously. - * @copy: Copies a file. - * @copy_async: Asynchronously copies a file. - * @copy_finish: Finishes an asynchronous copy operation. - * @move: Moves a file. - * @_move_async: Asynchronously moves a file. - * @_move_finish: Finishes an asynchronous move operation. - * @mount_mountable: Mounts a mountable object. - * @mount_mountable_finish: Finishes a mounting operation. - * @unmount_mountable: Unmounts a mountable object. - * @unmount_mountable_finish: Finishes an unmount operation. - * @eject_mountable: Ejects a mountable. - * @eject_mountable_finish: Finishes an eject operation. - * @mount_enclosing_volume: Mounts a specified location. - * @mount_enclosing_volume_finish: Finishes mounting a specified location. - * @monitor_dir: Creates a #GFileMonitor for the location. - * @monitor_file: Creates a #GFileMonitor for the location. - * @open_readwrite: Open file read/write. Since 2.22. - * @open_readwrite_async: Asynchronously opens file read/write. Since 2.22. - * @open_readwrite_finish: Finishes an asynchronous open read/write. Since 2.22. - * @create_readwrite: Creates file read/write. Since 2.22. - * @create_readwrite_async: Asynchronously creates file read/write. Since 2.22. - * @create_readwrite_finish: Finishes an asynchronous creates read/write. Since 2.22. - * @replace_readwrite: Replaces file read/write. Since 2.22. - * @replace_readwrite_async: Asynchronously replaces file read/write. Since 2.22. - * @replace_readwrite_finish: Finishes an asynchronous replace read/write. Since 2.22. - * @start_mountable: Starts a mountable object. Since 2.22. - * @start_mountable_finish: Finishes an start operation. Since 2.22. - * @stop_mountable: Stops a mountable. Since 2.22. - * @stop_mountable_finish: Finishes an stop operation. Since 2.22. - * @supports_thread_contexts: a boolean that indicates whether the #GFile implementation supports thread-default contexts. Since 2.22. - * @unmount_mountable_with_operation: Unmounts a mountable object using a #GMountOperation. Since 2.22. - * @unmount_mountable_with_operation_finish: Finishes an unmount operation using a #GMountOperation. Since 2.22. - * @eject_mountable_with_operation: Ejects a mountable object using a #GMountOperation. Since 2.22. - * @eject_mountable_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22. - * @poll_mountable: Polls a mountable object for media changes. Since 2.22. - * @poll_mountable_finish: Finishes an poll operation for media changes. Since 2.22. - * - * An interface for writing VFS file handles. - **/ -struct _GFileIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GFile * (* dup) (GFile *file); - guint (* hash) (GFile *file); - gboolean (* equal) (GFile *file1, - GFile *file2); - gboolean (* is_native) (GFile *file); - gboolean (* has_uri_scheme) (GFile *file, - const char *uri_scheme); - char * (* get_uri_scheme) (GFile *file); - char * (* get_basename) (GFile *file); - char * (* get_path) (GFile *file); - char * (* get_uri) (GFile *file); - char * (* get_parse_name) (GFile *file); - GFile * (* get_parent) (GFile *file); - gboolean (* prefix_matches) (GFile *prefix, - GFile *file); - char * (* get_relative_path) (GFile *parent, - GFile *descendant); - GFile * (* resolve_relative_path) (GFile *file, - const char *relative_path); - GFile * (* get_child_for_display_name) (GFile *file, - const char *display_name, - GError **error); - - GFileEnumerator * (* enumerate_children) (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); - void (* enumerate_children_async) (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileEnumerator * (* enumerate_children_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileInfo * (* query_info) (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); - void (* query_info_async) (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInfo * (* query_info_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileInfo * (* query_filesystem_info) (GFile *file, - const char *attributes, - GCancellable *cancellable, - GError **error); - void (* query_filesystem_info_async) (GFile *file, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInfo * (* query_filesystem_info_finish)(GFile *file, - GAsyncResult *res, - GError **error); - - GMount * (* find_enclosing_mount) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* find_enclosing_mount_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GMount * (* find_enclosing_mount_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFile * (* set_display_name) (GFile *file, - const char *display_name, - GCancellable *cancellable, - GError **error); - void (* set_display_name_async) (GFile *file, - const char *display_name, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFile * (* set_display_name_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileAttributeInfoList * (* query_settable_attributes) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* _query_settable_attributes_async) (void); - void (* _query_settable_attributes_finish) (void); - - GFileAttributeInfoList * (* query_writable_namespaces) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* _query_writable_namespaces_async) (void); - void (* _query_writable_namespaces_finish) (void); - - gboolean (* set_attribute) (GFile *file, - const char *attribute, - GFileAttributeType type, - gpointer value_p, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); - gboolean (* set_attributes_from_info) (GFile *file, - GFileInfo *info, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); - void (* set_attributes_async) (GFile *file, - GFileInfo *info, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* set_attributes_finish) (GFile *file, - GAsyncResult *result, - GFileInfo **info, - GError **error); - - GFileInputStream * (* read_fn) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* read_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInputStream * (* read_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileOutputStream * (* append_to) (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); - void (* append_to_async) (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileOutputStream * (* append_to_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileOutputStream * (* create) (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); - void (* create_async) (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileOutputStream * (* create_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - GFileOutputStream * (* replace) (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); - void (* replace_async) (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileOutputStream * (* replace_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - gboolean (* delete_file) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* delete_file_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* delete_file_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - gboolean (* trash) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* trash_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* trash_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - gboolean (* make_directory) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* make_directory_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* make_directory_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - gboolean (* make_symbolic_link) (GFile *file, - const char *symlink_value, - GCancellable *cancellable, - GError **error); - void (* _make_symbolic_link_async) (void); - void (* _make_symbolic_link_finish) (void); - - gboolean (* copy) (GFile *source, - GFile *destination, - GFileCopyFlags flags, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GError **error); - void (* copy_async) (GFile *source, - GFile *destination, - GFileCopyFlags flags, - int io_priority, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* copy_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - gboolean (* move) (GFile *source, - GFile *destination, - GFileCopyFlags flags, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GError **error); - void (* _move_async) (void); - void (* _move_finish) (void); - - void (* mount_mountable) (GFile *file, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFile * (* mount_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* unmount_mountable) (GFile *file, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* unmount_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* eject_mountable) (GFile *file, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* mount_enclosing_volume) (GFile *location, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* mount_enclosing_volume_finish) (GFile *location, - GAsyncResult *result, - GError **error); - - GFileMonitor * (* monitor_dir) (GFile *file, - GFileMonitorFlags flags, - GCancellable *cancellable, - GError **error); - GFileMonitor * (* monitor_file) (GFile *file, - GFileMonitorFlags flags, - GCancellable *cancellable, - GError **error); - - GFileIOStream * (* open_readwrite) (GFile *file, - GCancellable *cancellable, - GError **error); - void (* open_readwrite_async) (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileIOStream * (* open_readwrite_finish) (GFile *file, - GAsyncResult *res, - GError **error); - GFileIOStream * (* create_readwrite) (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); - void (* create_readwrite_async) (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileIOStream * (* create_readwrite_finish) (GFile *file, - GAsyncResult *res, - GError **error); - GFileIOStream * (* replace_readwrite) (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); - void (* replace_readwrite_async) (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileIOStream * (* replace_readwrite_finish) (GFile *file, - GAsyncResult *res, - GError **error); - - void (* start_mountable) (GFile *file, - GDriveStartFlags flags, - GMountOperation *start_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* start_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* stop_mountable) (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* stop_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - gboolean supports_thread_contexts; - - void (* unmount_mountable_with_operation) (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* unmount_mountable_with_operation_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* eject_mountable_with_operation) (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_mountable_with_operation_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - void (* poll_mountable) (GFile *file, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* poll_mountable_finish) (GFile *file, - GAsyncResult *result, - GError **error); - - gboolean (* measure_disk_usage) (GFile *file, - GFileMeasureFlags flags, - GCancellable *cancellable, - GFileMeasureProgressCallback progress_callback, - gpointer progress_data, - guint64 *disk_usage, - guint64 *num_dirs, - guint64 *num_files, - GError **error); - void (* measure_disk_usage_async) (GFile *file, - GFileMeasureFlags flags, - gint io_priority, - GCancellable *cancellable, - GFileMeasureProgressCallback progress_callback, - gpointer progress_data, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* measure_disk_usage_finish) (GFile *file, - GAsyncResult *result, - guint64 *disk_usage, - guint64 *num_dirs, - guint64 *num_files, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFile * g_file_new_for_path (const char *path); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_new_for_uri (const char *uri); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_new_for_commandline_arg (const char *arg); -GLIB_AVAILABLE_IN_2_36 -GFile * g_file_new_for_commandline_arg_and_cwd (const gchar *arg, - const gchar *cwd); -GLIB_AVAILABLE_IN_2_32 -GFile * g_file_new_tmp (const char *tmpl, - GFileIOStream **iostream, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_parse_name (const char *parse_name); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_dup (GFile *file); -GLIB_AVAILABLE_IN_ALL -guint g_file_hash (gconstpointer file); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_equal (GFile *file1, - GFile *file2); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_basename (GFile *file); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_path (GFile *file); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_uri (GFile *file); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_parse_name (GFile *file); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_get_parent (GFile *file); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_has_parent (GFile *file, - GFile *parent); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_get_child (GFile *file, - const char *name); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_get_child_for_display_name (GFile *file, - const char *display_name, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_has_prefix (GFile *file, - GFile *prefix); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_relative_path (GFile *parent, - GFile *descendant); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_resolve_relative_path (GFile *file, - const char *relative_path); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_is_native (GFile *file); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_has_uri_scheme (GFile *file, - const char *uri_scheme); -GLIB_AVAILABLE_IN_ALL -char * g_file_get_uri_scheme (GFile *file); -GLIB_AVAILABLE_IN_ALL -GFileInputStream * g_file_read (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_read_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInputStream * g_file_read_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_append_to (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_create (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_replace (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_append_to_async (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_append_to_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_create_async (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_create_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_replace_async (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileOutputStream * g_file_replace_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_open_readwrite (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_open_readwrite_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_open_readwrite_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_create_readwrite (GFile *file, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_create_readwrite_async (GFile *file, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_create_readwrite_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_replace_readwrite (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_replace_readwrite_async (GFile *file, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileIOStream * g_file_replace_readwrite_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_query_exists (GFile *file, - GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -GFileType g_file_query_file_type (GFile *file, - GFileQueryInfoFlags flags, - GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_query_info (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_query_info_async (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_query_info_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_query_filesystem_info (GFile *file, - const char *attributes, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_query_filesystem_info_async (GFile *file, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_query_filesystem_info_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GMount * g_file_find_enclosing_mount (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_find_enclosing_mount_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GMount * g_file_find_enclosing_mount_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileEnumerator * g_file_enumerate_children (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_enumerate_children_async (GFile *file, - const char *attributes, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileEnumerator * g_file_enumerate_children_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_set_display_name (GFile *file, - const char *display_name, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_set_display_name_async (GFile *file, - const char *display_name, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_set_display_name_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_delete (GFile *file, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_2_34 -void g_file_delete_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_34 -gboolean g_file_delete_finish (GFile *file, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_trash (GFile *file, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_2_38 -void g_file_trash_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_38 -gboolean g_file_trash_finish (GFile *file, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_copy (GFile *source, - GFile *destination, - GFileCopyFlags flags, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_copy_async (GFile *source, - GFile *destination, - GFileCopyFlags flags, - int io_priority, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_copy_finish (GFile *file, - GAsyncResult *res, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_move (GFile *source, - GFile *destination, - GFileCopyFlags flags, - GCancellable *cancellable, - GFileProgressCallback progress_callback, - gpointer progress_callback_data, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_make_directory (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_38 -void g_file_make_directory_async (GFile *file, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_38 -gboolean g_file_make_directory_finish (GFile *file, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_make_directory_with_parents (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_make_symbolic_link (GFile *file, - const char *symlink_value, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileAttributeInfoList *g_file_query_settable_attributes (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileAttributeInfoList *g_file_query_writable_namespaces (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute (GFile *file, - const char *attribute, - GFileAttributeType type, - gpointer value_p, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attributes_from_info (GFile *file, - GFileInfo *info, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_set_attributes_async (GFile *file, - GFileInfo *info, - GFileQueryInfoFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attributes_finish (GFile *file, - GAsyncResult *result, - GFileInfo **info, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_string (GFile *file, - const char *attribute, - const char *value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_byte_string (GFile *file, - const char *attribute, - const char *value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_uint32 (GFile *file, - const char *attribute, - guint32 value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_int32 (GFile *file, - const char *attribute, - gint32 value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_uint64 (GFile *file, - const char *attribute, - guint64 value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_attribute_int64 (GFile *file, - const char *attribute, - gint64 value, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_mount_enclosing_volume (GFile *location, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_mount_enclosing_volume_finish (GFile *location, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_mount_mountable (GFile *file, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_mount_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); -GLIB_DEPRECATED_FOR(g_file_unmount_mountable_with_operation) -void g_file_unmount_mountable (GFile *file, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_file_unmount_mountable_with_operation_finish) -gboolean g_file_unmount_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_unmount_mountable_with_operation (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_unmount_mountable_with_operation_finish (GFile *file, - GAsyncResult *result, - GError **error); -GLIB_DEPRECATED_FOR(g_file_eject_mountable_with_operation) -void g_file_eject_mountable (GFile *file, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_file_eject_mountable_with_operation_finish) -gboolean g_file_eject_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_eject_mountable_with_operation (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_eject_mountable_with_operation_finish (GFile *file, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_copy_attributes (GFile *source, - GFile *destination, - GFileCopyFlags flags, - GCancellable *cancellable, - GError **error); - - -GLIB_AVAILABLE_IN_ALL -GFileMonitor* g_file_monitor_directory (GFile *file, - GFileMonitorFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileMonitor* g_file_monitor_file (GFile *file, - GFileMonitorFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GFileMonitor* g_file_monitor (GFile *file, - GFileMonitorFlags flags, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_2_38 -gboolean g_file_measure_disk_usage (GFile *file, - GFileMeasureFlags flags, - GCancellable *cancellable, - GFileMeasureProgressCallback progress_callback, - gpointer progress_data, - guint64 *disk_usage, - guint64 *num_dirs, - guint64 *num_files, - GError **error); - -GLIB_AVAILABLE_IN_2_38 -void g_file_measure_disk_usage_async (GFile *file, - GFileMeasureFlags flags, - gint io_priority, - GCancellable *cancellable, - GFileMeasureProgressCallback progress_callback, - gpointer progress_data, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_38 -gboolean g_file_measure_disk_usage_finish (GFile *file, - GAsyncResult *result, - guint64 *disk_usage, - guint64 *num_dirs, - guint64 *num_files, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_file_start_mountable (GFile *file, - GDriveStartFlags flags, - GMountOperation *start_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_start_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_stop_mountable (GFile *file, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_stop_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_file_poll_mountable (GFile *file, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_poll_mountable_finish (GFile *file, - GAsyncResult *result, - GError **error); - -/* Utilities */ - -GLIB_AVAILABLE_IN_ALL -GAppInfo *g_file_query_default_handler (GFile *file, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_load_contents (GFile *file, - GCancellable *cancellable, - char **contents, - gsize *length, - char **etag_out, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_load_contents_async (GFile *file, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_load_contents_finish (GFile *file, - GAsyncResult *res, - char **contents, - gsize *length, - char **etag_out, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_load_partial_contents_async (GFile *file, - GCancellable *cancellable, - GFileReadMoreCallback read_more_callback, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_load_partial_contents_finish (GFile *file, - GAsyncResult *res, - char **contents, - gsize *length, - char **etag_out, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_replace_contents (GFile *file, - const char *contents, - gsize length, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - char **new_etag, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_replace_contents_async (GFile *file, - const char *contents, - gsize length, - const char *etag, - gboolean make_backup, - GFileCreateFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_replace_contents_finish (GFile *file, - GAsyncResult *res, - char **new_etag, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_supports_thread_contexts (GFile *file); - -G_END_DECLS - -#endif /* __G_FILE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileattribute.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileattribute.h deleted file mode 100644 index 8ebdcd4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileattribute.h +++ /dev/null @@ -1,86 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_ATTRIBUTE_H__ -#define __G_FILE_ATTRIBUTE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GFileAttributeInfo: - * @name: the name of the attribute. - * @type: the #GFileAttributeType type of the attribute. - * @flags: a set of #GFileAttributeInfoFlags. - * - * Information about a specific attribute. - **/ -struct _GFileAttributeInfo -{ - char *name; - GFileAttributeType type; - GFileAttributeInfoFlags flags; -}; - -/** - * GFileAttributeInfoList: - * @infos: an array of #GFileAttributeInfos. - * @n_infos: the number of values in the array. - * - * Acts as a lightweight registry for possible valid file attributes. - * The registry stores Key-Value pair formats as #GFileAttributeInfos. - **/ -struct _GFileAttributeInfoList -{ - GFileAttributeInfo *infos; - int n_infos; -}; - -#define G_TYPE_FILE_ATTRIBUTE_INFO_LIST (g_file_attribute_info_list_get_type ()) -GLIB_AVAILABLE_IN_ALL -GType g_file_attribute_info_list_get_type (void); - -GLIB_AVAILABLE_IN_ALL -GFileAttributeInfoList * g_file_attribute_info_list_new (void); -GLIB_AVAILABLE_IN_ALL -GFileAttributeInfoList * g_file_attribute_info_list_ref (GFileAttributeInfoList *list); -GLIB_AVAILABLE_IN_ALL -void g_file_attribute_info_list_unref (GFileAttributeInfoList *list); -GLIB_AVAILABLE_IN_ALL -GFileAttributeInfoList * g_file_attribute_info_list_dup (GFileAttributeInfoList *list); -GLIB_AVAILABLE_IN_ALL -const GFileAttributeInfo *g_file_attribute_info_list_lookup (GFileAttributeInfoList *list, - const char *name); -GLIB_AVAILABLE_IN_ALL -void g_file_attribute_info_list_add (GFileAttributeInfoList *list, - const char *name, - GFileAttributeType type, - GFileAttributeInfoFlags flags); - -G_END_DECLS - -#endif /* __G_FILE_INFO_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfiledescriptorbased.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfiledescriptorbased.h deleted file mode 100644 index cf045b4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfiledescriptorbased.h +++ /dev/null @@ -1,65 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Christian Kellner - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_FILE_DESCRIPTOR_BASED_H__ -#define __G_FILE_DESCRIPTOR_BASED_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_DESCRIPTOR_BASED (g_file_descriptor_based_get_type ()) -#define G_FILE_DESCRIPTOR_BASED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_FILE_DESCRIPTOR_BASED, GFileDescriptorBased)) -#define G_IS_FILE_DESCRIPTOR_BASED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_FILE_DESCRIPTOR_BASED)) -#define G_FILE_DESCRIPTOR_BASED_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_FILE_DESCRIPTOR_BASED, GFileDescriptorBasedIface)) - -/** - * GFileDescriptorBased: - * - * An interface for file descriptor based io objects. - **/ -typedef struct _GFileDescriptorBasedIface GFileDescriptorBasedIface; - -/** - * GFileDescriptorBasedIface: - * @g_iface: The parent interface. - * - **/ -struct _GFileDescriptorBasedIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - int (*get_fd) (GFileDescriptorBased *fd_based); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_descriptor_based_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -int g_file_descriptor_based_get_fd (GFileDescriptorBased *fd_based); - -G_END_DECLS - - -#endif /* __G_FILE_DESCRIPTOR_BASED_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileenumerator.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileenumerator.h deleted file mode 100644 index 7607002..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileenumerator.h +++ /dev/null @@ -1,146 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_ENUMERATOR_H__ -#define __G_FILE_ENUMERATOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_ENUMERATOR (g_file_enumerator_get_type ()) -#define G_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumerator)) -#define G_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass)) -#define G_IS_FILE_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_ENUMERATOR)) -#define G_IS_FILE_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_ENUMERATOR)) -#define G_FILE_ENUMERATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_ENUMERATOR, GFileEnumeratorClass)) - -/** - * GFileEnumerator: - * - * A per matched file iterator. - **/ -typedef struct _GFileEnumeratorClass GFileEnumeratorClass; -typedef struct _GFileEnumeratorPrivate GFileEnumeratorPrivate; - -struct _GFileEnumerator -{ - GObject parent_instance; - - /*< private >*/ - GFileEnumeratorPrivate *priv; -}; - -struct _GFileEnumeratorClass -{ - GObjectClass parent_class; - - /* Virtual Table */ - - GFileInfo * (* next_file) (GFileEnumerator *enumerator, - GCancellable *cancellable, - GError **error); - gboolean (* close_fn) (GFileEnumerator *enumerator, - GCancellable *cancellable, - GError **error); - - void (* next_files_async) (GFileEnumerator *enumerator, - int num_files, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GList * (* next_files_finish) (GFileEnumerator *enumerator, - GAsyncResult *result, - GError **error); - void (* close_async) (GFileEnumerator *enumerator, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* close_finish) (GFileEnumerator *enumerator, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_enumerator_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_enumerator_next_file (GFileEnumerator *enumerator, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_enumerator_close (GFileEnumerator *enumerator, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_enumerator_next_files_async (GFileEnumerator *enumerator, - int num_files, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GList * g_file_enumerator_next_files_finish (GFileEnumerator *enumerator, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_enumerator_close_async (GFileEnumerator *enumerator, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_enumerator_close_finish (GFileEnumerator *enumerator, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_enumerator_is_closed (GFileEnumerator *enumerator); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_enumerator_has_pending (GFileEnumerator *enumerator); -GLIB_AVAILABLE_IN_ALL -void g_file_enumerator_set_pending (GFileEnumerator *enumerator, - gboolean pending); -GLIB_AVAILABLE_IN_ALL -GFile * g_file_enumerator_get_container (GFileEnumerator *enumerator); -GLIB_AVAILABLE_IN_2_36 -GFile * g_file_enumerator_get_child (GFileEnumerator *enumerator, - GFileInfo *info); - -G_END_DECLS - -#endif /* __G_FILE_ENUMERATOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileicon.h deleted file mode 100644 index 2e6f3d5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileicon.h +++ /dev/null @@ -1,59 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_ICON_H__ -#define __G_FILE_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_ICON (g_file_icon_get_type ()) -#define G_FILE_ICON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_ICON, GFileIcon)) -#define G_FILE_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_ICON, GFileIconClass)) -#define G_IS_FILE_ICON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_ICON)) -#define G_IS_FILE_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_ICON)) -#define G_FILE_ICON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_ICON, GFileIconClass)) - -/** - * GFileIcon: - * - * Gets an icon for a #GFile. Implements #GLoadableIcon. - **/ -typedef struct _GFileIconClass GFileIconClass; - -GLIB_AVAILABLE_IN_ALL -GType g_file_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GIcon * g_file_icon_new (GFile *file); - -GLIB_AVAILABLE_IN_ALL -GFile * g_file_icon_get_file (GFileIcon *icon); - -G_END_DECLS - -#endif /* __G_FILE_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinfo.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinfo.h deleted file mode 100644 index a001b0d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinfo.h +++ /dev/null @@ -1,1057 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_INFO_H__ -#define __G_FILE_INFO_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_INFO (g_file_info_get_type ()) -#define G_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_INFO, GFileInfo)) -#define G_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_INFO, GFileInfoClass)) -#define G_IS_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_INFO)) -#define G_IS_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_INFO)) -#define G_FILE_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_INFO, GFileInfoClass)) - -/** - * GFileInfo: - * - * Stores information about a file system object referenced by a #GFile. - **/ -typedef struct _GFileInfoClass GFileInfoClass; - - -/* Common Attributes: */ -/** - * G_FILE_ATTRIBUTE_STANDARD_TYPE: - * - * A key in the "standard" namespace for storing file types. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - * The value for this key should contain a #GFileType. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_TYPE "standard::type" /* uint32 (GFileType) */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN: - * - * A key in the "standard" namespace for checking if a file is hidden. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN "standard::is-hidden" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP: - * - * A key in the "standard" namespace for checking if a file is a backup file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP "standard::is-backup" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK: - * - * A key in the "standard" namespace for checking if the file is a symlink. - * Typically the actual type is something else, if we followed the symlink - * to get the type. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "standard::is-symlink" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL: - * - * A key in the "standard" namespace for checking if a file is virtual. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL "standard::is-virtual" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_NAME: - * - * A key in the "standard" namespace for getting the name of the file. - * The name is the on-disk filename which may not be in any known encoding, - * and can thus not be generally displayed as is. - * Use #G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME if you need to display the - * name in a user interface. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_NAME "standard::name" /* byte string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME: - * - * A key in the "standard" namespace for getting the display name of the file. - * A display name is guaranteed to be in UTF8 and can thus be displayed in - * the UI. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "standard::display-name" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME: - * - * A key in the "standard" namespace for edit name of the file. - * An edit name is similar to the display name, but it is meant to be - * used when you want to rename the file in the UI. The display name - * might contain information you don't want in the new filename (such as - * "(invalid unicode)" if the filename was in an invalid encoding). - * - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME "standard::edit-name" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_COPY_NAME: - * - * A key in the "standard" namespace for getting the copy name of the file. - * The copy name is an optional version of the name. If available it's always - * in UTF8, and corresponds directly to the original filename (only transcoded to - * UTF8). This is useful if you want to copy the file to another filesystem that - * might have a different encoding. If the filename is not a valid string in the - * encoding selected for the filesystem it is in then the copy name will not be set. - * - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_COPY_NAME "standard::copy-name" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION: - * - * A key in the "standard" namespace for getting the description of the file. - * The description is a utf8 string that describes the file, generally containing - * the filename, but can also contain furter information. Example descriptions - * could be "filename (on hostname)" for a remote file or "filename (in trash)" - * for a file in the trash. This is useful for instance as the window title - * when displaying a directory or for a bookmarks menu. - * - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION "standard::description" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_ICON: - * - * A key in the "standard" namespace for getting the icon for the file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT. - * The value for this key should contain a #GIcon. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_ICON "standard::icon" /* object (GIcon) */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON: - * - * A key in the "standard" namespace for getting the symbolic icon for the file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT. - * The value for this key should contain a #GIcon. - * - * Since: 2.34 - **/ -#define G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON "standard::symbolic-icon" /* object (GIcon) */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE: - * - * A key in the "standard" namespace for getting the content type of the file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * The value for this key should contain a valid content type. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "standard::content-type" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE: - * - * A key in the "standard" namespace for getting the fast content type. - * The fast content type isn't as reliable as the regular one, as it - * only uses the filename to guess it, but it is faster to calculate than the - * regular content type. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * - **/ -#define G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE "standard::fast-content-type" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_SIZE: - * - * A key in the "standard" namespace for getting the file's size (in bytes). - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_SIZE "standard::size" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE: - * - * A key in the "standard" namespace for getting the amount of disk space - * that is consumed by the file (in bytes). This will generally be larger - * than the file size (due to block size overhead) but can occasionally be - * smaller (for example, for sparse files). - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64. - * - * Since: 2.20 - **/ -#define G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE "standard::allocated-size" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET: - * - * A key in the "standard" namespace for getting the symlink target, if the file - * is a symlink. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET "standard::symlink-target" /* byte string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_TARGET_URI: - * - * A key in the "standard" namespace for getting the target URI for the file, in - * the case of %G_FILE_TYPE_SHORTCUT or %G_FILE_TYPE_MOUNTABLE files. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_TARGET_URI "standard::target-uri" /* string */ - -/** - * G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER: - * - * A key in the "standard" namespace for setting the sort order of a file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_INT32. - * An example use would be in file managers, which would use this key - * to set the order files are displayed. Files with smaller sort order - * should be sorted first, and files without sort order as if sort order - * was zero. - **/ -#define G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER "standard::sort-order" /* int32 */ - -/* Entity tags, used to avoid missing updates on save */ - -/** - * G_FILE_ATTRIBUTE_ETAG_VALUE: - * - * A key in the "etag" namespace for getting the value of the file's - * entity tag. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_ETAG_VALUE "etag::value" /* string */ - -/* File identifier, for e.g. avoiding loops when doing recursive - * directory scanning - */ - -/** - * G_FILE_ATTRIBUTE_ID_FILE: - * - * A key in the "id" namespace for getting a file identifier. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * An example use would be during listing files, to avoid recursive - * directory scanning. - **/ -#define G_FILE_ATTRIBUTE_ID_FILE "id::file" /* string */ - -/** - * G_FILE_ATTRIBUTE_ID_FILESYSTEM: - * - * A key in the "id" namespace for getting the file system identifier. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * An example use would be during drag and drop to see if the source - * and target are on the same filesystem (default to move) or not (default - * to copy). - **/ -#define G_FILE_ATTRIBUTE_ID_FILESYSTEM "id::filesystem" /* string */ - -/* Calculated Access Rights for current user */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_READ: - * - * A key in the "access" namespace for getting read privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to read the file. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_READ "access::can-read" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE: - * - * A key in the "access" namespace for getting write privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to write to the file. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE "access::can-write" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE: - * - * A key in the "access" namespace for getting execution privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to execute the file. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE "access::can-execute" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE: - * - * A key in the "access" namespace for checking deletion privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to delete the file. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE "access::can-delete" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH: - * - * A key in the "access" namespace for checking trashing privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to move the file to - * the trash. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH "access::can-trash" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME: - * - * A key in the "access" namespace for checking renaming privileges. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * This attribute will be %TRUE if the user is able to rename the file. - **/ -#define G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME "access::can-rename" /* boolean */ - -/* TODO: Should we have special version for directories? can_enumerate, etc */ - -/* Mountable attributes */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is mountable. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT "mountable::can-mount" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is unmountable. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT "mountable::can-unmount" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be ejected. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT "mountable::can-eject" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE: - * - * A key in the "mountable" namespace for getting the unix device. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE "mountable::unix-device" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE: - * - * A key in the "mountable" namespace for getting the unix device file. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * - * Since: 2.22 - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE "mountable::unix-device-file" /* string */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI: - * - * A key in the "mountable" namespace for getting the HAL UDI for the mountable - * file. Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI "mountable::hal-udi" /* string */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START "mountable::can-start" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started - * degraded. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED "mountable::can-start-degraded" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be stopped. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP "mountable::can-stop" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE: - * - * A key in the "mountable" namespace for getting the #GDriveStartStopType. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE "mountable::start-stop-type" /* uint32 (GDriveStartStopType) */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be polled. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL "mountable::can-poll" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC: - * - * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) - * is automatically polled for media. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - * - * Since: 2.22 - */ -#define G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC "mountable::is-media-check-automatic" /* boolean */ - -/* Time attributes */ - -/** - * G_FILE_ATTRIBUTE_TIME_MODIFIED: - * - * A key in the "time" namespace for getting the time the file was last - * modified. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT64, and contains the UNIX time since the - * file was modified. - **/ -#define G_FILE_ATTRIBUTE_TIME_MODIFIED "time::modified" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC: - * - * A key in the "time" namespace for getting the miliseconds of the time - * the file was last modified. This should be used in conjunction with - * #G_FILE_ATTRIBUTE_TIME_MODIFIED. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC "time::modified-usec" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_TIME_ACCESS: - * - * A key in the "time" namespace for getting the time the file was last - * accessed. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT64, and contains the UNIX time since the - * file was last accessed. - **/ -#define G_FILE_ATTRIBUTE_TIME_ACCESS "time::access" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_TIME_ACCESS_USEC: - * - * A key in the "time" namespace for getting the microseconds of the time - * the file was last accessed. This should be used in conjunction with - * #G_FILE_ATTRIBUTE_TIME_ACCESS. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_TIME_ACCESS_USEC "time::access-usec" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_TIME_CHANGED: - * - * A key in the "time" namespace for getting the time the file was last - * changed. Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64, - * and contains the UNIX time since the file was last changed. - * - * This corresponds to the traditional UNIX ctime. - **/ -#define G_FILE_ATTRIBUTE_TIME_CHANGED "time::changed" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_TIME_CHANGED_USEC: - * - * A key in the "time" namespace for getting the microseconds of the time - * the file was last changed. This should be used in conjunction with - * #G_FILE_ATTRIBUTE_TIME_CHANGED. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_TIME_CHANGED_USEC "time::changed-usec" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_TIME_CREATED: - * - * A key in the "time" namespace for getting the time the file was created. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64, - * and contains the UNIX time since the file was created. - * - * This corresponds to the NTFS ctime. - **/ -#define G_FILE_ATTRIBUTE_TIME_CREATED "time::created" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_TIME_CREATED_USEC: - * - * A key in the "time" namespace for getting the microseconds of the time - * the file was created. This should be used in conjunction with - * #G_FILE_ATTRIBUTE_TIME_CREATED. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_TIME_CREATED_USEC "time::created-usec" /* uint32 */ - -/* Unix specific attributes */ - -/** - * G_FILE_ATTRIBUTE_UNIX_DEVICE: - * - * A key in the "unix" namespace for getting the device id of the device the - * file is located on (see stat() documentation). This attribute is only - * available for UNIX file systems. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_DEVICE "unix::device" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_INODE: - * - * A key in the "unix" namespace for getting the inode of the file. - * This attribute is only available for UNIX file systems. Corresponding - * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64. - **/ -#define G_FILE_ATTRIBUTE_UNIX_INODE "unix::inode" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_MODE: - * - * A key in the "unix" namespace for getting the mode of the file - * (e.g. whether the file is a regular file, symlink, etc). See lstat() - * documentation. This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_MODE "unix::mode" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_NLINK: - * - * A key in the "unix" namespace for getting the number of hard links - * for a file. See lstat() documentation. This attribute is only available - * for UNIX file systems. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_NLINK "unix::nlink" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_UID: - * - * A key in the "unix" namespace for getting the user ID for the file. - * This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_UID "unix::uid" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_GID: - * - * A key in the "unix" namespace for getting the group ID for the file. - * This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_GID "unix::gid" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_RDEV: - * - * A key in the "unix" namespace for getting the device ID for the file - * (if it is a special file). See lstat() documentation. This attribute - * is only available for UNIX file systems. Corresponding #GFileAttributeType - * is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_RDEV "unix::rdev" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE: - * - * A key in the "unix" namespace for getting the block size for the file - * system. This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE "unix::block-size" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_BLOCKS: - * - * A key in the "unix" namespace for getting the number of blocks allocated - * for the file. This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64. - **/ -#define G_FILE_ATTRIBUTE_UNIX_BLOCKS "unix::blocks" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT: - * - * A key in the "unix" namespace for checking if the file represents a - * UNIX mount point. This attribute is %TRUE if the file is a UNIX mount - * point. This attribute is only available for UNIX file systems. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT "unix::is-mountpoint" /* boolean */ - -/* DOS specific attributes */ - -/** - * G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE: - * - * A key in the "dos" namespace for checking if the file's archive flag - * is set. This attribute is %TRUE if the archive flag is set. This attribute - * is only available for DOS file systems. Corresponding #GFileAttributeType - * is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE "dos::is-archive" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_DOS_IS_SYSTEM: - * - * A key in the "dos" namespace for checking if the file's backup flag - * is set. This attribute is %TRUE if the backup flag is set. This attribute - * is only available for DOS file systems. Corresponding #GFileAttributeType - * is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_DOS_IS_SYSTEM "dos::is-system" /* boolean */ - -/* Owner attributes */ - -/** - * G_FILE_ATTRIBUTE_OWNER_USER: - * - * A key in the "owner" namespace for getting the user name of the - * file's owner. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_OWNER_USER "owner::user" /* string */ - -/** - * G_FILE_ATTRIBUTE_OWNER_USER_REAL: - * - * A key in the "owner" namespace for getting the real name of the - * user that owns the file. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_OWNER_USER_REAL "owner::user-real" /* string */ - -/** - * G_FILE_ATTRIBUTE_OWNER_GROUP: - * - * A key in the "owner" namespace for getting the file owner's group. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_OWNER_GROUP "owner::group" /* string */ - -/* Thumbnails */ - -/** - * G_FILE_ATTRIBUTE_THUMBNAIL_PATH: - * - * A key in the "thumbnail" namespace for getting the path to the thumbnail - * image. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING. - **/ -#define G_FILE_ATTRIBUTE_THUMBNAIL_PATH "thumbnail::path" /* bytestring */ -/** - * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED: - * - * A key in the "thumbnail" namespace for checking if thumbnailing failed. - * This attribute is %TRUE if thumbnailing failed. Corresponding - * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED "thumbnail::failed" /* boolean */ - -/* Preview */ - -/** - * G_FILE_ATTRIBUTE_PREVIEW_ICON: - * - * A key in the "preview" namespace for getting a #GIcon that can be - * used to get preview of the file. For example, it may be a low - * resolution thumbnail without metadata. Corresponding - * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT. The value - * for this key should contain a #GIcon. - * - * Since: 2.20 - **/ -#define G_FILE_ATTRIBUTE_PREVIEW_ICON "preview::icon" /* object (GIcon) */ - -/* File system info (for g_file_get_filesystem_info) */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_SIZE: - * - * A key in the "filesystem" namespace for getting the total size (in bytes) of the file system, - * used in g_file_query_filesystem_info(). Corresponding #GFileAttributeType - * is %G_FILE_ATTRIBUTE_TYPE_UINT64. - **/ -#define G_FILE_ATTRIBUTE_FILESYSTEM_SIZE "filesystem::size" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_FREE: - * - * A key in the "filesystem" namespace for getting the number of bytes of free space left on the - * file system. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT64. - **/ -#define G_FILE_ATTRIBUTE_FILESYSTEM_FREE "filesystem::free" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_USED: - * - * A key in the "filesystem" namespace for getting the number of bytes of used on the - * file system. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_UINT64. - * - * Since: 2.32 - */ -#define G_FILE_ATTRIBUTE_FILESYSTEM_USED "filesystem::used" /* uint64 */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_TYPE: - * - * A key in the "filesystem" namespace for getting the file system's type. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_FILESYSTEM_TYPE "filesystem::type" /* string */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_READONLY: - * - * A key in the "filesystem" namespace for checking if the file system - * is read only. Is set to %TRUE if the file system is read only. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN. - **/ -#define G_FILE_ATTRIBUTE_FILESYSTEM_READONLY "filesystem::readonly" /* boolean */ - -/** - * G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW: - * - * A key in the "filesystem" namespace for hinting a file manager - * application whether it should preview (e.g. thumbnail) files on the - * file system. The value for this key contain a - * #GFilesystemPreviewType. - **/ -#define G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW "filesystem::use-preview" /* uint32 (GFilesystemPreviewType) */ - -/** - * G_FILE_ATTRIBUTE_GVFS_BACKEND: - * - * A key in the "gvfs" namespace that gets the name of the current - * GVFS backend in use. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_STRING. - **/ -#define G_FILE_ATTRIBUTE_GVFS_BACKEND "gvfs::backend" /* string */ - -/** - * G_FILE_ATTRIBUTE_SELINUX_CONTEXT: - * - * A key in the "selinux" namespace for getting the file's SELinux - * context. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_STRING. Note that this attribute is only - * available if GLib has been built with SELinux support. - **/ -#define G_FILE_ATTRIBUTE_SELINUX_CONTEXT "selinux::context" /* string */ - -/** - * G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT: - * - * A key in the "trash" namespace. When requested against - * "trash:///" returns the number of (toplevel) items in the trash folder. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32. - **/ -#define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count" /* uint32 */ - -/** - * G_FILE_ATTRIBUTE_TRASH_ORIG_PATH: - * - * A key in the "trash" namespace. When requested against - * items in "trash:///", will return the original path to the file before it - * was trashed. Corresponding #GFileAttributeType is - * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING. - * - * Since: 2.24. - **/ -#define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path" /* byte string */ - -/** - * G_FILE_ATTRIBUTE_TRASH_DELETION_DATE: - * - * A key in the "trash" namespace. When requested against - * items in "trash:///", will return the date and time when the file - * was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss. - * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING. - * - * Since: 2.24. - **/ -#define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date" /* string */ - -GLIB_AVAILABLE_IN_ALL -GType g_file_info_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_info_new (void); -GLIB_AVAILABLE_IN_ALL -GFileInfo * g_file_info_dup (GFileInfo *other); -GLIB_AVAILABLE_IN_ALL -void g_file_info_copy_into (GFileInfo *src_info, - GFileInfo *dest_info); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_has_attribute (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_has_namespace (GFileInfo *info, - const char *name_space); -GLIB_AVAILABLE_IN_ALL -char ** g_file_info_list_attributes (GFileInfo *info, - const char *name_space); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_get_attribute_data (GFileInfo *info, - const char *attribute, - GFileAttributeType *type, - gpointer *value_pp, - GFileAttributeStatus *status); -GLIB_AVAILABLE_IN_ALL -GFileAttributeType g_file_info_get_attribute_type (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -void g_file_info_remove_attribute (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -GFileAttributeStatus g_file_info_get_attribute_status (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_set_attribute_status (GFileInfo *info, - const char *attribute, - GFileAttributeStatus status); -GLIB_AVAILABLE_IN_ALL -char * g_file_info_get_attribute_as_string (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_attribute_string (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_attribute_byte_string (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_get_attribute_boolean (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -guint32 g_file_info_get_attribute_uint32 (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gint32 g_file_info_get_attribute_int32 (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -guint64 g_file_info_get_attribute_uint64 (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gint64 g_file_info_get_attribute_int64 (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -GObject * g_file_info_get_attribute_object (GFileInfo *info, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -char ** g_file_info_get_attribute_stringv (GFileInfo *info, - const char *attribute); - -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute (GFileInfo *info, - const char *attribute, - GFileAttributeType type, - gpointer value_p); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_string (GFileInfo *info, - const char *attribute, - const char *attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_byte_string (GFileInfo *info, - const char *attribute, - const char *attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_boolean (GFileInfo *info, - const char *attribute, - gboolean attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_uint32 (GFileInfo *info, - const char *attribute, - guint32 attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_int32 (GFileInfo *info, - const char *attribute, - gint32 attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_uint64 (GFileInfo *info, - const char *attribute, - guint64 attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_int64 (GFileInfo *info, - const char *attribute, - gint64 attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_object (GFileInfo *info, - const char *attribute, - GObject *attr_value); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_stringv (GFileInfo *info, - const char *attribute, - char **attr_value); - -GLIB_AVAILABLE_IN_ALL -void g_file_info_clear_status (GFileInfo *info); - -/* Helper getters: */ -GLIB_AVAILABLE_IN_2_36 -GDateTime * g_file_info_get_deletion_date (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -GFileType g_file_info_get_file_type (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_get_is_hidden (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_get_is_backup (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_info_get_is_symlink (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_name (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_display_name (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_edit_name (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -GIcon * g_file_info_get_icon (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -GIcon * g_file_info_get_symbolic_icon (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_content_type (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -goffset g_file_info_get_size (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_file_info_get_modification_time (GFileInfo *info, - GTimeVal *result); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_symlink_target (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -const char * g_file_info_get_etag (GFileInfo *info); -GLIB_AVAILABLE_IN_ALL -gint32 g_file_info_get_sort_order (GFileInfo *info); - -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_attribute_mask (GFileInfo *info, - GFileAttributeMatcher *mask); -GLIB_AVAILABLE_IN_ALL -void g_file_info_unset_attribute_mask (GFileInfo *info); - -/* Helper setters: */ -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_file_type (GFileInfo *info, - GFileType type); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_is_hidden (GFileInfo *info, - gboolean is_hidden); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_is_symlink (GFileInfo *info, - gboolean is_symlink); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_name (GFileInfo *info, - const char *name); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_display_name (GFileInfo *info, - const char *display_name); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_edit_name (GFileInfo *info, - const char *edit_name); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_icon (GFileInfo *info, - GIcon *icon); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_symbolic_icon (GFileInfo *info, - GIcon *icon); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_content_type (GFileInfo *info, - const char *content_type); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_size (GFileInfo *info, - goffset size); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_modification_time (GFileInfo *info, - GTimeVal *mtime); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_symlink_target (GFileInfo *info, - const char *symlink_target); -GLIB_AVAILABLE_IN_ALL -void g_file_info_set_sort_order (GFileInfo *info, - gint32 sort_order); - -#define G_TYPE_FILE_ATTRIBUTE_MATCHER (g_file_attribute_matcher_get_type ()) -GLIB_AVAILABLE_IN_ALL -GType g_file_attribute_matcher_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFileAttributeMatcher *g_file_attribute_matcher_new (const char *attributes); -GLIB_AVAILABLE_IN_ALL -GFileAttributeMatcher *g_file_attribute_matcher_ref (GFileAttributeMatcher *matcher); -GLIB_AVAILABLE_IN_ALL -void g_file_attribute_matcher_unref (GFileAttributeMatcher *matcher); -GLIB_AVAILABLE_IN_ALL -GFileAttributeMatcher *g_file_attribute_matcher_subtract (GFileAttributeMatcher *matcher, - GFileAttributeMatcher *subtract); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_attribute_matcher_matches (GFileAttributeMatcher *matcher, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_attribute_matcher_matches_only (GFileAttributeMatcher *matcher, - const char *attribute); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_attribute_matcher_enumerate_namespace (GFileAttributeMatcher *matcher, - const char *ns); -GLIB_AVAILABLE_IN_ALL -const char * g_file_attribute_matcher_enumerate_next (GFileAttributeMatcher *matcher); -GLIB_AVAILABLE_IN_2_32 -char * g_file_attribute_matcher_to_string (GFileAttributeMatcher *matcher); - -G_END_DECLS - -#endif /* __G_FILE_INFO_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinputstream.h deleted file mode 100644 index 338ccae..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileinputstream.h +++ /dev/null @@ -1,116 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_INPUT_STREAM_H__ -#define __G_FILE_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_INPUT_STREAM (g_file_input_stream_get_type ()) -#define G_FILE_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_INPUT_STREAM, GFileInputStream)) -#define G_FILE_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_INPUT_STREAM, GFileInputStreamClass)) -#define G_IS_FILE_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_INPUT_STREAM)) -#define G_IS_FILE_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_INPUT_STREAM)) -#define G_FILE_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_INPUT_STREAM, GFileInputStreamClass)) - -/** - * GFileInputStream: - * - * A subclass of GInputStream for opened files. This adds - * a few file-specific operations and seeking. - * - * #GFileInputStream implements #GSeekable. - **/ -typedef struct _GFileInputStreamClass GFileInputStreamClass; -typedef struct _GFileInputStreamPrivate GFileInputStreamPrivate; - -struct _GFileInputStream -{ - GInputStream parent_instance; - - /*< private >*/ - GFileInputStreamPrivate *priv; -}; - -struct _GFileInputStreamClass -{ - GInputStreamClass parent_class; - - goffset (* tell) (GFileInputStream *stream); - gboolean (* can_seek) (GFileInputStream *stream); - gboolean (* seek) (GFileInputStream *stream, - goffset offset, - GSeekType type, - GCancellable *cancellable, - GError **error); - GFileInfo * (* query_info) (GFileInputStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); - void (* query_info_async) (GFileInputStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInfo * (* query_info_finish) (GFileInputStream *stream, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_input_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_input_stream_query_info (GFileInputStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_input_stream_query_info_async (GFileInputStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_input_stream_query_info_finish (GFileInputStream *stream, - GAsyncResult *result, - GError **error); - -G_END_DECLS - -#endif /* __G_FILE_FILE_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileiostream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileiostream.h deleted file mode 100644 index 89a5536..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileiostream.h +++ /dev/null @@ -1,123 +0,0 @@ -/* GIO - GLib Input, Io and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_IO_STREAM_H__ -#define __G_FILE_IO_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_IO_STREAM (g_file_io_stream_get_type ()) -#define G_FILE_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_IO_STREAM, GFileIOStream)) -#define G_FILE_IO_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_IO_STREAM, GFileIOStreamClass)) -#define G_IS_FILE_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_IO_STREAM)) -#define G_IS_FILE_IO_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_IO_STREAM)) -#define G_FILE_IO_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_IO_STREAM, GFileIOStreamClass)) - -/** - * GFileIOStream: - * - * A subclass of GIOStream for opened files. This adds - * a few file-specific operations and seeking and truncating. - * - * #GFileIOStream implements GSeekable. - **/ -typedef struct _GFileIOStreamClass GFileIOStreamClass; -typedef struct _GFileIOStreamPrivate GFileIOStreamPrivate; - -struct _GFileIOStream -{ - GIOStream parent_instance; - - /*< private >*/ - GFileIOStreamPrivate *priv; -}; - -struct _GFileIOStreamClass -{ - GIOStreamClass parent_class; - - goffset (* tell) (GFileIOStream *stream); - gboolean (* can_seek) (GFileIOStream *stream); - gboolean (* seek) (GFileIOStream *stream, - goffset offset, - GSeekType type, - GCancellable *cancellable, - GError **error); - gboolean (* can_truncate) (GFileIOStream *stream); - gboolean (* truncate_fn) (GFileIOStream *stream, - goffset size, - GCancellable *cancellable, - GError **error); - GFileInfo * (* query_info) (GFileIOStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); - void (* query_info_async) (GFileIOStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInfo * (* query_info_finish) (GFileIOStream *stream, - GAsyncResult *result, - GError **error); - char * (* get_etag) (GFileIOStream *stream); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_io_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_io_stream_query_info (GFileIOStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_io_stream_query_info_async (GFileIOStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_io_stream_query_info_finish (GFileIOStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_file_io_stream_get_etag (GFileIOStream *stream); - -G_END_DECLS - -#endif /* __G_FILE_FILE_IO_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilemonitor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilemonitor.h deleted file mode 100644 index e29ad0a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilemonitor.h +++ /dev/null @@ -1,100 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_MONITOR_H__ -#define __G_FILE_MONITOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_MONITOR (g_file_monitor_get_type ()) -#define G_FILE_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_MONITOR, GFileMonitor)) -#define G_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_MONITOR, GFileMonitorClass)) -#define G_IS_FILE_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_MONITOR)) -#define G_IS_FILE_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_MONITOR)) -#define G_FILE_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_MONITOR, GFileMonitorClass)) - -typedef struct _GFileMonitorClass GFileMonitorClass; -typedef struct _GFileMonitorPrivate GFileMonitorPrivate; - -/** - * GFileMonitor: - * - * Watches for changes to a file. - **/ -struct _GFileMonitor -{ - GObject parent_instance; - - /*< private >*/ - GFileMonitorPrivate *priv; -}; - -struct _GFileMonitorClass -{ - GObjectClass parent_class; - - /* Signals */ - void (* changed) (GFileMonitor *monitor, - GFile *file, - GFile *other_file, - GFileMonitorEvent event_type); - - /* Virtual Table */ - gboolean (* cancel) (GFileMonitor *monitor); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_monitor_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_monitor_cancel (GFileMonitor *monitor); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_monitor_is_cancelled (GFileMonitor *monitor); -GLIB_AVAILABLE_IN_ALL -void g_file_monitor_set_rate_limit (GFileMonitor *monitor, - gint limit_msecs); - - -/* For implementations */ -GLIB_AVAILABLE_IN_ALL -void g_file_monitor_emit_event (GFileMonitor *monitor, - GFile *child, - GFile *other_file, - GFileMonitorEvent event_type); - -G_END_DECLS - -#endif /* __G_FILE_MONITOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilenamecompleter.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilenamecompleter.h deleted file mode 100644 index 0745bbb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilenamecompleter.h +++ /dev/null @@ -1,81 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILENAME_COMPLETER_H__ -#define __G_FILENAME_COMPLETER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILENAME_COMPLETER (g_filename_completer_get_type ()) -#define G_FILENAME_COMPLETER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILENAME_COMPLETER, GFilenameCompleter)) -#define G_FILENAME_COMPLETER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILENAME_COMPLETER, GFilenameCompleterClass)) -#define G_FILENAME_COMPLETER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILENAME_COMPLETER, GFilenameCompleterClass)) -#define G_IS_FILENAME_COMPLETER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILENAME_COMPLETER)) -#define G_IS_FILENAME_COMPLETER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILENAME_COMPLETER)) - -/** - * GFilenameCompleter: - * - * Completes filenames based on files that exist within the file system. - **/ -typedef struct _GFilenameCompleterClass GFilenameCompleterClass; - -struct _GFilenameCompleterClass -{ - GObjectClass parent_class; - - /*< public >*/ - /* signals */ - void (* got_completion_data) (GFilenameCompleter *filename_completer); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_filename_completer_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFilenameCompleter *g_filename_completer_new (void); - -GLIB_AVAILABLE_IN_ALL -char * g_filename_completer_get_completion_suffix (GFilenameCompleter *completer, - const char *initial_text); -GLIB_AVAILABLE_IN_ALL -char ** g_filename_completer_get_completions (GFilenameCompleter *completer, - const char *initial_text); -GLIB_AVAILABLE_IN_ALL -void g_filename_completer_set_dirs_only (GFilenameCompleter *completer, - gboolean dirs_only); - -G_END_DECLS - -#endif /* __G_FILENAME_COMPLETER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileoutputstream.h deleted file mode 100644 index 5e8a5fe..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfileoutputstream.h +++ /dev/null @@ -1,124 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_FILE_OUTPUT_STREAM_H__ -#define __G_FILE_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILE_OUTPUT_STREAM (g_file_output_stream_get_type ()) -#define G_FILE_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_OUTPUT_STREAM, GFileOutputStream)) -#define G_FILE_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_OUTPUT_STREAM, GFileOutputStreamClass)) -#define G_IS_FILE_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_OUTPUT_STREAM)) -#define G_IS_FILE_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_OUTPUT_STREAM)) -#define G_FILE_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_OUTPUT_STREAM, GFileOutputStreamClass)) - -/** - * GFileOutputStream: - * - * A subclass of GOutputStream for opened files. This adds - * a few file-specific operations and seeking and truncating. - * - * #GFileOutputStream implements GSeekable. - **/ -typedef struct _GFileOutputStreamClass GFileOutputStreamClass; -typedef struct _GFileOutputStreamPrivate GFileOutputStreamPrivate; - -struct _GFileOutputStream -{ - GOutputStream parent_instance; - - /*< private >*/ - GFileOutputStreamPrivate *priv; -}; - -struct _GFileOutputStreamClass -{ - GOutputStreamClass parent_class; - - goffset (* tell) (GFileOutputStream *stream); - gboolean (* can_seek) (GFileOutputStream *stream); - gboolean (* seek) (GFileOutputStream *stream, - goffset offset, - GSeekType type, - GCancellable *cancellable, - GError **error); - gboolean (* can_truncate) (GFileOutputStream *stream); - gboolean (* truncate_fn) (GFileOutputStream *stream, - goffset size, - GCancellable *cancellable, - GError **error); - GFileInfo * (* query_info) (GFileOutputStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); - void (* query_info_async) (GFileOutputStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GFileInfo * (* query_info_finish) (GFileOutputStream *stream, - GAsyncResult *result, - GError **error); - char * (* get_etag) (GFileOutputStream *stream); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_file_output_stream_get_type (void) G_GNUC_CONST; - - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_output_stream_query_info (GFileOutputStream *stream, - const char *attributes, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_file_output_stream_query_info_async (GFileOutputStream *stream, - const char *attributes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_file_output_stream_query_info_finish (GFileOutputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_file_output_stream_get_etag (GFileOutputStream *stream); - -G_END_DECLS - -#endif /* __G_FILE_FILE_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilterinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilterinputstream.h deleted file mode 100644 index afe15a5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilterinputstream.h +++ /dev/null @@ -1,80 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_FILTER_INPUT_STREAM_H__ -#define __G_FILTER_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILTER_INPUT_STREAM (g_filter_input_stream_get_type ()) -#define G_FILTER_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILTER_INPUT_STREAM, GFilterInputStream)) -#define G_FILTER_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILTER_INPUT_STREAM, GFilterInputStreamClass)) -#define G_IS_FILTER_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILTER_INPUT_STREAM)) -#define G_IS_FILTER_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILTER_INPUT_STREAM)) -#define G_FILTER_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILTER_INPUT_STREAM, GFilterInputStreamClass)) - -/** - * GFilterInputStream: - * - * A base class for all input streams that work on an underlying stream. - **/ -typedef struct _GFilterInputStreamClass GFilterInputStreamClass; - -struct _GFilterInputStream -{ - GInputStream parent_instance; - - /**/ - GInputStream *base_stream; -}; - -struct _GFilterInputStreamClass -{ - GInputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_filter_input_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GInputStream * g_filter_input_stream_get_base_stream (GFilterInputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_filter_input_stream_get_close_base_stream (GFilterInputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_filter_input_stream_set_close_base_stream (GFilterInputStream *stream, - gboolean close_base); - -G_END_DECLS - -#endif /* __G_FILTER_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilteroutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilteroutputstream.h deleted file mode 100644 index 7e29086..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gfilteroutputstream.h +++ /dev/null @@ -1,80 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_FILTER_OUTPUT_STREAM_H__ -#define __G_FILTER_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_FILTER_OUTPUT_STREAM (g_filter_output_stream_get_type ()) -#define G_FILTER_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILTER_OUTPUT_STREAM, GFilterOutputStream)) -#define G_FILTER_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILTER_OUTPUT_STREAM, GFilterOutputStreamClass)) -#define G_IS_FILTER_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILTER_OUTPUT_STREAM)) -#define G_IS_FILTER_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILTER_OUTPUT_STREAM)) -#define G_FILTER_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILTER_OUTPUT_STREAM, GFilterOutputStreamClass)) - -/** - * GFilterOutputStream: - * - * A base class for all output streams that work on an underlying stream. - **/ -typedef struct _GFilterOutputStreamClass GFilterOutputStreamClass; - -struct _GFilterOutputStream -{ - GOutputStream parent_instance; - - /*< protected >*/ - GOutputStream *base_stream; -}; - -struct _GFilterOutputStreamClass -{ - GOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_filter_output_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GOutputStream * g_filter_output_stream_get_base_stream (GFilterOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_filter_output_stream_get_close_base_stream (GFilterOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -void g_filter_output_stream_set_close_base_stream (GFilterOutputStream *stream, - gboolean close_base); - -G_END_DECLS - -#endif /* __G_FILTER_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gicon.h deleted file mode 100644 index f378146..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gicon.h +++ /dev/null @@ -1,103 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_ICON_H__ -#define __G_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_ICON (g_icon_get_type ()) -#define G_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ICON, GIcon)) -#define G_IS_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_ICON)) -#define G_ICON_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_ICON, GIconIface)) - -/** - * GIcon: - * - * An abstract type that specifies an icon. - **/ -typedef struct _GIconIface GIconIface; - -/** - * GIconIface: - * @g_iface: The parent interface. - * @hash: A hash for a given #GIcon. - * @equal: Checks if two #GIcons are equal. - * @to_tokens: Serializes a #GIcon into tokens. The tokens must not - * contain any whitespace. Don't implement if the #GIcon can't be - * serialized (Since 2.20). - * @from_tokens: Constructs a #GIcon from tokens. Set the #GError if - * the tokens are malformed. Don't implement if the #GIcon can't be - * serialized (Since 2.20). - * - * GIconIface is used to implement GIcon types for various - * different systems. See #GThemedIcon and #GLoadableIcon for - * examples of how to implement this interface. - */ -struct _GIconIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - guint (* hash) (GIcon *icon); - gboolean (* equal) (GIcon *icon1, - GIcon *icon2); - gboolean (* to_tokens) (GIcon *icon, - GPtrArray *tokens, - gint *out_version); - GIcon * (* from_tokens) (gchar **tokens, - gint num_tokens, - gint version, - GError **error); - - GVariant * (* serialize) (GIcon *icon); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -guint g_icon_hash (gconstpointer icon); -GLIB_AVAILABLE_IN_ALL -gboolean g_icon_equal (GIcon *icon1, - GIcon *icon2); -GLIB_AVAILABLE_IN_ALL -gchar *g_icon_to_string (GIcon *icon); -GLIB_AVAILABLE_IN_ALL -GIcon *g_icon_new_for_string (const gchar *str, - GError **error); - -GLIB_AVAILABLE_IN_2_38 -GVariant * g_icon_serialize (GIcon *icon); -GLIB_AVAILABLE_IN_2_38 -GIcon * g_icon_deserialize (GVariant *value); - -G_END_DECLS - -#endif /* __G_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddress.h deleted file mode 100644 index 940b798..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddress.h +++ /dev/null @@ -1,126 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - */ - -#ifndef __G_INET_ADDRESS_H__ -#define __G_INET_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_INET_ADDRESS (g_inet_address_get_type ()) -#define G_INET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_INET_ADDRESS, GInetAddress)) -#define G_INET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_INET_ADDRESS, GInetAddressClass)) -#define G_IS_INET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_INET_ADDRESS)) -#define G_IS_INET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_INET_ADDRESS)) -#define G_INET_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_INET_ADDRESS, GInetAddressClass)) - -typedef struct _GInetAddressClass GInetAddressClass; -typedef struct _GInetAddressPrivate GInetAddressPrivate; - -struct _GInetAddress -{ - GObject parent_instance; - - /*< private >*/ - GInetAddressPrivate *priv; -}; - -struct _GInetAddressClass -{ - GObjectClass parent_class; - - gchar * (*to_string) (GInetAddress *address); - const guint8 * (*to_bytes) (GInetAddress *address); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_inet_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GInetAddress * g_inet_address_new_from_string (const gchar *string); - -GLIB_AVAILABLE_IN_ALL -GInetAddress * g_inet_address_new_from_bytes (const guint8 *bytes, - GSocketFamily family); - -GLIB_AVAILABLE_IN_ALL -GInetAddress * g_inet_address_new_loopback (GSocketFamily family); - -GLIB_AVAILABLE_IN_ALL -GInetAddress * g_inet_address_new_any (GSocketFamily family); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_equal (GInetAddress *address, - GInetAddress *other_address); - -GLIB_AVAILABLE_IN_ALL -gchar * g_inet_address_to_string (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -const guint8 * g_inet_address_to_bytes (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gsize g_inet_address_get_native_size (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -GSocketFamily g_inet_address_get_family (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_any (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_loopback (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_link_local (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_site_local (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_multicast (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_mc_global (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_mc_link_local (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_mc_node_local (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_mc_org_local (GInetAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_inet_address_get_is_mc_site_local (GInetAddress *address); - -G_END_DECLS - -#endif /* __G_INET_ADDRESS_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddressmask.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddressmask.h deleted file mode 100644 index 05b0630..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetaddressmask.h +++ /dev/null @@ -1,87 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright 2011 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_INET_ADDRESS_MASK_H__ -#define __G_INET_ADDRESS_MASK_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_INET_ADDRESS_MASK (g_inet_address_mask_get_type ()) -#define G_INET_ADDRESS_MASK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_INET_ADDRESS_MASK, GInetAddressMask)) -#define G_INET_ADDRESS_MASK_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_INET_ADDRESS_MASK, GInetAddressMaskClass)) -#define G_IS_INET_ADDRESS_MASK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_INET_ADDRESS_MASK)) -#define G_IS_INET_ADDRESS_MASK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_INET_ADDRESS_MASK)) -#define G_INET_ADDRESS_MASK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_INET_ADDRESS_MASK, GInetAddressMaskClass)) - -typedef struct _GInetAddressMaskClass GInetAddressMaskClass; -typedef struct _GInetAddressMaskPrivate GInetAddressMaskPrivate; - -struct _GInetAddressMask -{ - GObject parent_instance; - - /*< private >*/ - GInetAddressMaskPrivate *priv; -}; - -struct _GInetAddressMaskClass -{ - GObjectClass parent_class; - -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_inet_address_mask_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -GInetAddressMask *g_inet_address_mask_new (GInetAddress *addr, - guint length, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -GInetAddressMask *g_inet_address_mask_new_from_string (const gchar *mask_string, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gchar *g_inet_address_mask_to_string (GInetAddressMask *mask); - -GLIB_AVAILABLE_IN_2_32 -GSocketFamily g_inet_address_mask_get_family (GInetAddressMask *mask); -GLIB_AVAILABLE_IN_2_32 -GInetAddress *g_inet_address_mask_get_address (GInetAddressMask *mask); -GLIB_AVAILABLE_IN_2_32 -guint g_inet_address_mask_get_length (GInetAddressMask *mask); - -GLIB_AVAILABLE_IN_2_32 -gboolean g_inet_address_mask_matches (GInetAddressMask *mask, - GInetAddress *address); -GLIB_AVAILABLE_IN_2_32 -gboolean g_inet_address_mask_equal (GInetAddressMask *mask, - GInetAddressMask *mask2); - -G_END_DECLS - -#endif /* __G_INET_ADDRESS_MASK_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetsocketaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetsocketaddress.h deleted file mode 100644 index 1865a3b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginetsocketaddress.h +++ /dev/null @@ -1,77 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - */ - -#ifndef __G_INET_SOCKET_ADDRESS_H__ -#define __G_INET_SOCKET_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_INET_SOCKET_ADDRESS (g_inet_socket_address_get_type ()) -#define G_INET_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_INET_SOCKET_ADDRESS, GInetSocketAddress)) -#define G_INET_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_INET_SOCKET_ADDRESS, GInetSocketAddressClass)) -#define G_IS_INET_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_INET_SOCKET_ADDRESS)) -#define G_IS_INET_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_INET_SOCKET_ADDRESS)) -#define G_INET_SOCKET_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_INET_SOCKET_ADDRESS, GInetSocketAddressClass)) - -typedef struct _GInetSocketAddressClass GInetSocketAddressClass; -typedef struct _GInetSocketAddressPrivate GInetSocketAddressPrivate; - -struct _GInetSocketAddress -{ - GSocketAddress parent_instance; - - /*< private >*/ - GInetSocketAddressPrivate *priv; -}; - -struct _GInetSocketAddressClass -{ - GSocketAddressClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_inet_socket_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_inet_socket_address_new (GInetAddress *address, - guint16 port); - -GLIB_AVAILABLE_IN_ALL -GInetAddress * g_inet_socket_address_get_address (GInetSocketAddress *address); -GLIB_AVAILABLE_IN_ALL -guint16 g_inet_socket_address_get_port (GInetSocketAddress *address); - -GLIB_AVAILABLE_IN_2_32 -guint32 g_inet_socket_address_get_flowinfo (GInetSocketAddress *address); -GLIB_AVAILABLE_IN_2_32 -guint32 g_inet_socket_address_get_scope_id (GInetSocketAddress *address); - -G_END_DECLS - -#endif /* __G_INET_SOCKET_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginitable.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginitable.h deleted file mode 100644 index c147013..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginitable.h +++ /dev/null @@ -1,101 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_INITABLE_H__ -#define __G_INITABLE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_INITABLE (g_initable_get_type ()) -#define G_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_INITABLE, GInitable)) -#define G_IS_INITABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_INITABLE)) -#define G_INITABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_INITABLE, GInitableIface)) -#define G_TYPE_IS_INITABLE(type) (g_type_is_a ((type), G_TYPE_INITABLE)) - -/** - * GInitable: - * - * Interface for initializable objects. - * - * Since: 2.22 - **/ -typedef struct _GInitableIface GInitableIface; - -/** - * GInitableIface: - * @g_iface: The parent interface. - * @init: Initializes the object. - * - * Provides an interface for initializing object such that initialization - * may fail. - * - * Since: 2.22 - **/ -struct _GInitableIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - gboolean (* init) (GInitable *initable, - GCancellable *cancellable, - GError **error); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_initable_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_initable_init (GInitable *initable, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gpointer g_initable_new (GType object_type, - GCancellable *cancellable, - GError **error, - const gchar *first_property_name, - ...); -GLIB_AVAILABLE_IN_ALL -gpointer g_initable_newv (GType object_type, - guint n_parameters, - GParameter *parameters, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GObject* g_initable_new_valist (GType object_type, - const gchar *first_property_name, - va_list var_args, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - - -#endif /* __G_INITABLE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginputstream.h deleted file mode 100644 index bedfba7..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/ginputstream.h +++ /dev/null @@ -1,203 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_INPUT_STREAM_H__ -#define __G_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_INPUT_STREAM (g_input_stream_get_type ()) -#define G_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_INPUT_STREAM, GInputStream)) -#define G_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_INPUT_STREAM, GInputStreamClass)) -#define G_IS_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_INPUT_STREAM)) -#define G_IS_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_INPUT_STREAM)) -#define G_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_INPUT_STREAM, GInputStreamClass)) - -/** - * GInputStream: - * - * Base class for streaming input operations. - **/ -typedef struct _GInputStreamClass GInputStreamClass; -typedef struct _GInputStreamPrivate GInputStreamPrivate; - -struct _GInputStream -{ - GObject parent_instance; - - /*< private >*/ - GInputStreamPrivate *priv; -}; - -struct _GInputStreamClass -{ - GObjectClass parent_class; - - /* Sync ops: */ - - gssize (* read_fn) (GInputStream *stream, - void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); - gssize (* skip) (GInputStream *stream, - gsize count, - GCancellable *cancellable, - GError **error); - gboolean (* close_fn) (GInputStream *stream, - GCancellable *cancellable, - GError **error); - - /* Async ops: (optional in derived classes) */ - void (* read_async) (GInputStream *stream, - void *buffer, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gssize (* read_finish) (GInputStream *stream, - GAsyncResult *result, - GError **error); - void (* skip_async) (GInputStream *stream, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gssize (* skip_finish) (GInputStream *stream, - GAsyncResult *result, - GError **error); - void (* close_async) (GInputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* close_finish) (GInputStream *stream, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_input_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gssize g_input_stream_read (GInputStream *stream, - void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_read_all (GInputStream *stream, - void *buffer, - gsize count, - gsize *bytes_read, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_34 -GBytes *g_input_stream_read_bytes (GInputStream *stream, - gsize count, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_input_stream_skip (GInputStream *stream, - gsize count, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_close (GInputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_input_stream_read_async (GInputStream *stream, - void *buffer, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gssize g_input_stream_read_finish (GInputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_2_34 -void g_input_stream_read_bytes_async (GInputStream *stream, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -GBytes *g_input_stream_read_bytes_finish (GInputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_input_stream_skip_async (GInputStream *stream, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gssize g_input_stream_skip_finish (GInputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_input_stream_close_async (GInputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_close_finish (GInputStream *stream, - GAsyncResult *result, - GError **error); - -/* For implementations: */ - -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_is_closed (GInputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_has_pending (GInputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_input_stream_set_pending (GInputStream *stream, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_input_stream_clear_pending (GInputStream *stream); - -G_END_DECLS - -#endif /* __G_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gio.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gio.h deleted file mode 100644 index fadcd58..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gio.h +++ /dev/null @@ -1,166 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_IO_H__ -#define __G_IO_H__ - -#define __GIO_GIO_H_INSIDE__ - -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#undef __GIO_GIO_H_INSIDE__ - -#endif /* __G_IO_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenums.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenums.h deleted file mode 100644 index 4ce0855..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenums.h +++ /dev/null @@ -1,1694 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __GIO_ENUMS_H__ -#define __GIO_ENUMS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -/** - * GAppInfoCreateFlags: - * @G_APP_INFO_CREATE_NONE: No flags. - * @G_APP_INFO_CREATE_NEEDS_TERMINAL: Application opens in a terminal window. - * @G_APP_INFO_CREATE_SUPPORTS_URIS: Application supports URI arguments. - * @G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION: Application supports startup notification. Since 2.26 - * - * Flags used when creating a #GAppInfo. - */ -typedef enum { - G_APP_INFO_CREATE_NONE = 0, /*< nick=none >*/ - G_APP_INFO_CREATE_NEEDS_TERMINAL = (1 << 0), /*< nick=needs-terminal >*/ - G_APP_INFO_CREATE_SUPPORTS_URIS = (1 << 1), /*< nick=supports-uris >*/ - G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION = (1 << 2) /*< nick=supports-startup-notification >*/ -} GAppInfoCreateFlags; - -/** - * GConverterFlags: - * @G_CONVERTER_NO_FLAGS: No flags. - * @G_CONVERTER_INPUT_AT_END: At end of input data - * @G_CONVERTER_FLUSH: Flush data - * - * Flags used when calling a g_converter_convert(). - * - * Since: 2.24 - */ -typedef enum { - G_CONVERTER_NO_FLAGS = 0, /*< nick=none >*/ - G_CONVERTER_INPUT_AT_END = (1 << 0), /*< nick=input-at-end >*/ - G_CONVERTER_FLUSH = (1 << 1) /*< nick=flush >*/ -} GConverterFlags; - -/** - * GConverterResult: - * @G_CONVERTER_ERROR: There was an error during conversion. - * @G_CONVERTER_CONVERTED: Some data was consumed or produced - * @G_CONVERTER_FINISHED: The conversion is finished - * @G_CONVERTER_FLUSHED: Flushing is finished - * - * Results returned from g_converter_convert(). - * - * Since: 2.24 - */ -typedef enum { - G_CONVERTER_ERROR = 0, /*< nick=error >*/ - G_CONVERTER_CONVERTED = 1, /*< nick=converted >*/ - G_CONVERTER_FINISHED = 2, /*< nick=finished >*/ - G_CONVERTER_FLUSHED = 3 /*< nick=flushed >*/ -} GConverterResult; - - -/** - * GDataStreamByteOrder: - * @G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN: Selects Big Endian byte order. - * @G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN: Selects Little Endian byte order. - * @G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN: Selects endianness based on host machine's architecture. - * - * #GDataStreamByteOrder is used to ensure proper endianness of streaming data sources - * across various machine architectures. - * - **/ -typedef enum { - G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN, - G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN, - G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN -} GDataStreamByteOrder; - - -/** - * GDataStreamNewlineType: - * @G_DATA_STREAM_NEWLINE_TYPE_LF: Selects "LF" line endings, common on most modern UNIX platforms. - * @G_DATA_STREAM_NEWLINE_TYPE_CR: Selects "CR" line endings. - * @G_DATA_STREAM_NEWLINE_TYPE_CR_LF: Selects "CR, LF" line ending, common on Microsoft Windows. - * @G_DATA_STREAM_NEWLINE_TYPE_ANY: Automatically try to handle any line ending type. - * - * #GDataStreamNewlineType is used when checking for or setting the line endings for a given file. - **/ -typedef enum { - G_DATA_STREAM_NEWLINE_TYPE_LF, - G_DATA_STREAM_NEWLINE_TYPE_CR, - G_DATA_STREAM_NEWLINE_TYPE_CR_LF, - G_DATA_STREAM_NEWLINE_TYPE_ANY -} GDataStreamNewlineType; - - -/** - * GFileAttributeType: - * @G_FILE_ATTRIBUTE_TYPE_INVALID: indicates an invalid or uninitalized type. - * @G_FILE_ATTRIBUTE_TYPE_STRING: a null terminated UTF8 string. - * @G_FILE_ATTRIBUTE_TYPE_BYTE_STRING: a zero terminated string of non-zero bytes. - * @G_FILE_ATTRIBUTE_TYPE_BOOLEAN: a boolean value. - * @G_FILE_ATTRIBUTE_TYPE_UINT32: an unsigned 4-byte/32-bit integer. - * @G_FILE_ATTRIBUTE_TYPE_INT32: a signed 4-byte/32-bit integer. - * @G_FILE_ATTRIBUTE_TYPE_UINT64: an unsigned 8-byte/64-bit integer. - * @G_FILE_ATTRIBUTE_TYPE_INT64: a signed 8-byte/64-bit integer. - * @G_FILE_ATTRIBUTE_TYPE_OBJECT: a #GObject. - * @G_FILE_ATTRIBUTE_TYPE_STRINGV: a %NULL terminated char **. Since 2.22 - * - * The data types for file attributes. - **/ -typedef enum { - G_FILE_ATTRIBUTE_TYPE_INVALID = 0, - G_FILE_ATTRIBUTE_TYPE_STRING, - G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, /* zero terminated string of non-zero bytes */ - G_FILE_ATTRIBUTE_TYPE_BOOLEAN, - G_FILE_ATTRIBUTE_TYPE_UINT32, - G_FILE_ATTRIBUTE_TYPE_INT32, - G_FILE_ATTRIBUTE_TYPE_UINT64, - G_FILE_ATTRIBUTE_TYPE_INT64, - G_FILE_ATTRIBUTE_TYPE_OBJECT, - G_FILE_ATTRIBUTE_TYPE_STRINGV -} GFileAttributeType; - - -/** - * GFileAttributeInfoFlags: - * @G_FILE_ATTRIBUTE_INFO_NONE: no flags set. - * @G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE: copy the attribute values when the file is copied. - * @G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED: copy the attribute values when the file is moved. - * - * Flags specifying the behaviour of an attribute. - **/ -typedef enum { - G_FILE_ATTRIBUTE_INFO_NONE = 0, - G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE = (1 << 0), - G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED = (1 << 1) -} GFileAttributeInfoFlags; - - -/** - * GFileAttributeStatus: - * @G_FILE_ATTRIBUTE_STATUS_UNSET: Attribute value is unset (empty). - * @G_FILE_ATTRIBUTE_STATUS_SET: Attribute value is set. - * @G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING: Indicates an error in setting the value. - * - * Used by g_file_set_attributes_from_info() when setting file attributes. - **/ -typedef enum { - G_FILE_ATTRIBUTE_STATUS_UNSET = 0, - G_FILE_ATTRIBUTE_STATUS_SET, - G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING -} GFileAttributeStatus; - - -/** - * GFileQueryInfoFlags: - * @G_FILE_QUERY_INFO_NONE: No flags set. - * @G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS: Don't follow symlinks. - * - * Flags used when querying a #GFileInfo. - */ -typedef enum { - G_FILE_QUERY_INFO_NONE = 0, - G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS = (1 << 0) /*< nick=nofollow-symlinks >*/ -} GFileQueryInfoFlags; - - -/** - * GFileCreateFlags: - * @G_FILE_CREATE_NONE: No flags set. - * @G_FILE_CREATE_PRIVATE: Create a file that can only be - * accessed by the current user. - * @G_FILE_CREATE_REPLACE_DESTINATION: Replace the destination - * as if it didn't exist before. Don't try to keep any old - * permissions, replace instead of following links. This - * is generally useful if you're doing a "copy over" - * rather than a "save new version of" replace operation. - * You can think of it as "unlink destination" before - * writing to it, although the implementation may not - * be exactly like that. Since 2.20 - * - * Flags used when an operation may create a file. - */ -typedef enum { - G_FILE_CREATE_NONE = 0, - G_FILE_CREATE_PRIVATE = (1 << 0), - G_FILE_CREATE_REPLACE_DESTINATION = (1 << 1) -} GFileCreateFlags; - -/** - * GFileMeasureFlags: - * @G_FILE_MEASURE_NONE: No flags set. - * @G_FILE_MEASURE_REPORT_ANY_ERROR: Report any error encountered - * while traversing the directory tree. Normally errors are only - * reported for the toplevel file. - * @G_FILE_MEASURE_APPARENT_SIZE: Tally usage based on apparent file - * sizes. Normally, the block-size is used, if available, as this is a - * more accurate representation of disk space used. - * Compare with 'du --apparent-size'. - * @G_FILE_MEASURE_NO_XDEV: Do not cross mount point boundaries. - * Compare with 'du -x'. - * - * Flags that can be used with g_file_measure_disk_usage(). - * - * Since: 2.38 - **/ -typedef enum { - G_FILE_MEASURE_NONE = 0, - G_FILE_MEASURE_REPORT_ANY_ERROR = (1 << 1), - G_FILE_MEASURE_APPARENT_SIZE = (1 << 2), - G_FILE_MEASURE_NO_XDEV = (1 << 3) -} GFileMeasureFlags; - -/** - * GMountMountFlags: - * @G_MOUNT_MOUNT_NONE: No flags set. - * - * Flags used when mounting a mount. - */ -typedef enum /*< flags >*/ { - G_MOUNT_MOUNT_NONE = 0 -} GMountMountFlags; - - -/** - * GMountUnmountFlags: - * @G_MOUNT_UNMOUNT_NONE: No flags set. - * @G_MOUNT_UNMOUNT_FORCE: Unmount even if there are outstanding - * file operations on the mount. - * - * Flags used when an unmounting a mount. - */ -typedef enum { - G_MOUNT_UNMOUNT_NONE = 0, - G_MOUNT_UNMOUNT_FORCE = (1 << 0) -} GMountUnmountFlags; - -/** - * GDriveStartFlags: - * @G_DRIVE_START_NONE: No flags set. - * - * Flags used when starting a drive. - * - * Since: 2.22 - */ -typedef enum /*< flags >*/ { - G_DRIVE_START_NONE = 0 -} GDriveStartFlags; - -/** - * GDriveStartStopType: - * @G_DRIVE_START_STOP_TYPE_UNKNOWN: Unknown or drive doesn't support - * start/stop. - * @G_DRIVE_START_STOP_TYPE_SHUTDOWN: The stop method will physically - * shut down the drive and e.g. power down the port the drive is - * attached to. - * @G_DRIVE_START_STOP_TYPE_NETWORK: The start/stop methods are used - * for connecting/disconnect to the drive over the network. - * @G_DRIVE_START_STOP_TYPE_MULTIDISK: The start/stop methods will - * assemble/disassemble a virtual drive from several physical - * drives. - * @G_DRIVE_START_STOP_TYPE_PASSWORD: The start/stop methods will - * unlock/lock the disk (for example using the ATA SECURITY - * UNLOCK DEVICE command) - * - * Enumeration describing how a drive can be started/stopped. - * - * Since: 2.22 - */ -typedef enum { - G_DRIVE_START_STOP_TYPE_UNKNOWN, - G_DRIVE_START_STOP_TYPE_SHUTDOWN, - G_DRIVE_START_STOP_TYPE_NETWORK, - G_DRIVE_START_STOP_TYPE_MULTIDISK, - G_DRIVE_START_STOP_TYPE_PASSWORD -} GDriveStartStopType; - -/** - * GFileCopyFlags: - * @G_FILE_COPY_NONE: No flags set. - * @G_FILE_COPY_OVERWRITE: Overwrite any existing files - * @G_FILE_COPY_BACKUP: Make a backup of any existing files. - * @G_FILE_COPY_NOFOLLOW_SYMLINKS: Don't follow symlinks. - * @G_FILE_COPY_ALL_METADATA: Copy all file metadata instead of just default set used for copy (see #GFileInfo). - * @G_FILE_COPY_NO_FALLBACK_FOR_MOVE: Don't use copy and delete fallback if native move not supported. - * @G_FILE_COPY_TARGET_DEFAULT_PERMS: Leaves target file with default perms, instead of setting the source file perms. - * - * Flags used when copying or moving files. - */ -typedef enum { - G_FILE_COPY_NONE = 0, /*< nick=none >*/ - G_FILE_COPY_OVERWRITE = (1 << 0), - G_FILE_COPY_BACKUP = (1 << 1), - G_FILE_COPY_NOFOLLOW_SYMLINKS = (1 << 2), - G_FILE_COPY_ALL_METADATA = (1 << 3), - G_FILE_COPY_NO_FALLBACK_FOR_MOVE = (1 << 4), - G_FILE_COPY_TARGET_DEFAULT_PERMS = (1 << 5) -} GFileCopyFlags; - - -/** - * GFileMonitorFlags: - * @G_FILE_MONITOR_NONE: No flags set. - * @G_FILE_MONITOR_WATCH_MOUNTS: Watch for mount events. - * @G_FILE_MONITOR_SEND_MOVED: Pair DELETED and CREATED events caused - * by file renames (moves) and send a single G_FILE_MONITOR_EVENT_MOVED - * event instead (NB: not supported on all backends; the default - * behaviour -without specifying this flag- is to send single DELETED - * and CREATED events). - * @G_FILE_MONITOR_WATCH_HARD_LINKS: Watch for changes to the file made - * via another hard link. Since 2.36. - * - * Flags used to set what a #GFileMonitor will watch for. - */ -typedef enum { - G_FILE_MONITOR_NONE = 0, - G_FILE_MONITOR_WATCH_MOUNTS = (1 << 0), - G_FILE_MONITOR_SEND_MOVED = (1 << 1), - G_FILE_MONITOR_WATCH_HARD_LINKS = (1 << 2) -} GFileMonitorFlags; - - -/** - * GFileType: - * @G_FILE_TYPE_UNKNOWN: File's type is unknown. - * @G_FILE_TYPE_REGULAR: File handle represents a regular file. - * @G_FILE_TYPE_DIRECTORY: File handle represents a directory. - * @G_FILE_TYPE_SYMBOLIC_LINK: File handle represents a symbolic link - * (Unix systems). - * @G_FILE_TYPE_SPECIAL: File is a "special" file, such as a socket, fifo, - * block device, or character device. - * @G_FILE_TYPE_SHORTCUT: File is a shortcut (Windows systems). - * @G_FILE_TYPE_MOUNTABLE: File is a mountable location. - * - * Indicates the file's on-disk type. - **/ -typedef enum { - G_FILE_TYPE_UNKNOWN = 0, - G_FILE_TYPE_REGULAR, - G_FILE_TYPE_DIRECTORY, - G_FILE_TYPE_SYMBOLIC_LINK, - G_FILE_TYPE_SPECIAL, /* socket, fifo, blockdev, chardev */ - G_FILE_TYPE_SHORTCUT, - G_FILE_TYPE_MOUNTABLE -} GFileType; - - -/** - * GFilesystemPreviewType: - * @G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS: Only preview files if user has explicitly requested it. - * @G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL: Preview files if user has requested preview of "local" files. - * @G_FILESYSTEM_PREVIEW_TYPE_NEVER: Never preview files. - * - * Indicates a hint from the file system whether files should be - * previewed in a file manager. Returned as the value of the key - * #G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW. - **/ -typedef enum { - G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS = 0, - G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL, - G_FILESYSTEM_PREVIEW_TYPE_NEVER -} GFilesystemPreviewType; - - -/** - * GFileMonitorEvent: - * @G_FILE_MONITOR_EVENT_CHANGED: a file changed. - * @G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: a hint that this was probably the last change in a set of changes. - * @G_FILE_MONITOR_EVENT_DELETED: a file was deleted. - * @G_FILE_MONITOR_EVENT_CREATED: a file was created. - * @G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED: a file attribute was changed. - * @G_FILE_MONITOR_EVENT_PRE_UNMOUNT: the file location will soon be unmounted. - * @G_FILE_MONITOR_EVENT_UNMOUNTED: the file location was unmounted. - * @G_FILE_MONITOR_EVENT_MOVED: the file was moved. - * - * Specifies what type of event a monitor event is. - **/ -typedef enum { - G_FILE_MONITOR_EVENT_CHANGED, - G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT, - G_FILE_MONITOR_EVENT_DELETED, - G_FILE_MONITOR_EVENT_CREATED, - G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED, - G_FILE_MONITOR_EVENT_PRE_UNMOUNT, - G_FILE_MONITOR_EVENT_UNMOUNTED, - G_FILE_MONITOR_EVENT_MOVED -} GFileMonitorEvent; - - -/* This enumeration conflicts with GIOError in giochannel.h. However, - * that is only used as a return value in some deprecated functions. - * So, we reuse the same prefix for the enumeration values, but call - * the actual enumeration (which is rarely used) GIOErrorEnum. - */ -/** - * GIOErrorEnum: - * @G_IO_ERROR_FAILED: Generic error condition for when any operation fails. - * @G_IO_ERROR_NOT_FOUND: File not found. - * @G_IO_ERROR_EXISTS: File already exists. - * @G_IO_ERROR_IS_DIRECTORY: File is a directory. - * @G_IO_ERROR_NOT_DIRECTORY: File is not a directory. - * @G_IO_ERROR_NOT_EMPTY: File is a directory that isn't empty. - * @G_IO_ERROR_NOT_REGULAR_FILE: File is not a regular file. - * @G_IO_ERROR_NOT_SYMBOLIC_LINK: File is not a symbolic link. - * @G_IO_ERROR_NOT_MOUNTABLE_FILE: File cannot be mounted. - * @G_IO_ERROR_FILENAME_TOO_LONG: Filename is too many characters. - * @G_IO_ERROR_INVALID_FILENAME: Filename is invalid or contains invalid characters. - * @G_IO_ERROR_TOO_MANY_LINKS: File contains too many symbolic links. - * @G_IO_ERROR_NO_SPACE: No space left on drive. - * @G_IO_ERROR_INVALID_ARGUMENT: Invalid argument. - * @G_IO_ERROR_PERMISSION_DENIED: Permission denied. - * @G_IO_ERROR_NOT_SUPPORTED: Operation not supported for the current backend. - * @G_IO_ERROR_NOT_MOUNTED: File isn't mounted. - * @G_IO_ERROR_ALREADY_MOUNTED: File is already mounted. - * @G_IO_ERROR_CLOSED: File was closed. - * @G_IO_ERROR_CANCELLED: Operation was cancelled. See #GCancellable. - * @G_IO_ERROR_PENDING: Operations are still pending. - * @G_IO_ERROR_READ_ONLY: File is read only. - * @G_IO_ERROR_CANT_CREATE_BACKUP: Backup couldn't be created. - * @G_IO_ERROR_WRONG_ETAG: File's Entity Tag was incorrect. - * @G_IO_ERROR_TIMED_OUT: Operation timed out. - * @G_IO_ERROR_WOULD_RECURSE: Operation would be recursive. - * @G_IO_ERROR_BUSY: File is busy. - * @G_IO_ERROR_WOULD_BLOCK: Operation would block. - * @G_IO_ERROR_HOST_NOT_FOUND: Host couldn't be found (remote operations). - * @G_IO_ERROR_WOULD_MERGE: Operation would merge files. - * @G_IO_ERROR_FAILED_HANDLED: Operation failed and a helper program has - * already interacted with the user. Do not display any error dialog. - * @G_IO_ERROR_TOO_MANY_OPEN_FILES: The current process has too many files - * open and can't open any more. Duplicate descriptors do count toward - * this limit. Since 2.20 - * @G_IO_ERROR_NOT_INITIALIZED: The object has not been initialized. Since 2.22 - * @G_IO_ERROR_ADDRESS_IN_USE: The requested address is already in use. Since 2.22 - * @G_IO_ERROR_PARTIAL_INPUT: Need more input to finish operation. Since 2.24 - * @G_IO_ERROR_INVALID_DATA: The input data was invalid. Since 2.24 - * @G_IO_ERROR_DBUS_ERROR: A remote object generated an error that - * doesn't correspond to a locally registered #GError error - * domain. Use g_dbus_error_get_remote_error() to extract the D-Bus - * error name and g_dbus_error_strip_remote_error() to fix up the - * message so it matches what was received on the wire. Since 2.26. - * @G_IO_ERROR_HOST_UNREACHABLE: Host unreachable. Since 2.26 - * @G_IO_ERROR_NETWORK_UNREACHABLE: Network unreachable. Since 2.26 - * @G_IO_ERROR_CONNECTION_REFUSED: Connection refused. Since 2.26 - * @G_IO_ERROR_PROXY_FAILED: Connection to proxy server failed. Since 2.26 - * @G_IO_ERROR_PROXY_AUTH_FAILED: Proxy authentication failed. Since 2.26 - * @G_IO_ERROR_PROXY_NEED_AUTH: Proxy server needs authentication. Since 2.26 - * @G_IO_ERROR_PROXY_NOT_ALLOWED: Proxy connection is not allowed by ruleset. - * Since 2.26 - * @G_IO_ERROR_BROKEN_PIPE: Broken pipe. Since 2.36 - * - * Error codes returned by GIO functions. - * - **/ -typedef enum { - G_IO_ERROR_FAILED, - G_IO_ERROR_NOT_FOUND, - G_IO_ERROR_EXISTS, - G_IO_ERROR_IS_DIRECTORY, - G_IO_ERROR_NOT_DIRECTORY, - G_IO_ERROR_NOT_EMPTY, - G_IO_ERROR_NOT_REGULAR_FILE, - G_IO_ERROR_NOT_SYMBOLIC_LINK, - G_IO_ERROR_NOT_MOUNTABLE_FILE, - G_IO_ERROR_FILENAME_TOO_LONG, - G_IO_ERROR_INVALID_FILENAME, - G_IO_ERROR_TOO_MANY_LINKS, - G_IO_ERROR_NO_SPACE, - G_IO_ERROR_INVALID_ARGUMENT, - G_IO_ERROR_PERMISSION_DENIED, - G_IO_ERROR_NOT_SUPPORTED, - G_IO_ERROR_NOT_MOUNTED, - G_IO_ERROR_ALREADY_MOUNTED, - G_IO_ERROR_CLOSED, - G_IO_ERROR_CANCELLED, - G_IO_ERROR_PENDING, - G_IO_ERROR_READ_ONLY, - G_IO_ERROR_CANT_CREATE_BACKUP, - G_IO_ERROR_WRONG_ETAG, - G_IO_ERROR_TIMED_OUT, - G_IO_ERROR_WOULD_RECURSE, - G_IO_ERROR_BUSY, - G_IO_ERROR_WOULD_BLOCK, - G_IO_ERROR_HOST_NOT_FOUND, - G_IO_ERROR_WOULD_MERGE, - G_IO_ERROR_FAILED_HANDLED, - G_IO_ERROR_TOO_MANY_OPEN_FILES, - G_IO_ERROR_NOT_INITIALIZED, - G_IO_ERROR_ADDRESS_IN_USE, - G_IO_ERROR_PARTIAL_INPUT, - G_IO_ERROR_INVALID_DATA, - G_IO_ERROR_DBUS_ERROR, - G_IO_ERROR_HOST_UNREACHABLE, - G_IO_ERROR_NETWORK_UNREACHABLE, - G_IO_ERROR_CONNECTION_REFUSED, - G_IO_ERROR_PROXY_FAILED, - G_IO_ERROR_PROXY_AUTH_FAILED, - G_IO_ERROR_PROXY_NEED_AUTH, - G_IO_ERROR_PROXY_NOT_ALLOWED, - G_IO_ERROR_BROKEN_PIPE -} GIOErrorEnum; - - -/** - * GAskPasswordFlags: - * @G_ASK_PASSWORD_NEED_PASSWORD: operation requires a password. - * @G_ASK_PASSWORD_NEED_USERNAME: operation requires a username. - * @G_ASK_PASSWORD_NEED_DOMAIN: operation requires a domain. - * @G_ASK_PASSWORD_SAVING_SUPPORTED: operation supports saving settings. - * @G_ASK_PASSWORD_ANONYMOUS_SUPPORTED: operation supports anonymous users. - * - * #GAskPasswordFlags are used to request specific information from the - * user, or to notify the user of their choices in an authentication - * situation. - **/ -typedef enum { - G_ASK_PASSWORD_NEED_PASSWORD = (1 << 0), - G_ASK_PASSWORD_NEED_USERNAME = (1 << 1), - G_ASK_PASSWORD_NEED_DOMAIN = (1 << 2), - G_ASK_PASSWORD_SAVING_SUPPORTED = (1 << 3), - G_ASK_PASSWORD_ANONYMOUS_SUPPORTED = (1 << 4) -} GAskPasswordFlags; - - -/** - * GPasswordSave: - * @G_PASSWORD_SAVE_NEVER: never save a password. - * @G_PASSWORD_SAVE_FOR_SESSION: save a password for the session. - * @G_PASSWORD_SAVE_PERMANENTLY: save a password permanently. - * - * #GPasswordSave is used to indicate the lifespan of a saved password. - * - * #Gvfs stores passwords in the Gnome keyring when this flag allows it - * to, and later retrieves it again from there. - **/ -typedef enum { - G_PASSWORD_SAVE_NEVER, - G_PASSWORD_SAVE_FOR_SESSION, - G_PASSWORD_SAVE_PERMANENTLY -} GPasswordSave; - - -/** - * GMountOperationResult: - * @G_MOUNT_OPERATION_HANDLED: The request was fulfilled and the - * user specified data is now available - * @G_MOUNT_OPERATION_ABORTED: The user requested the mount operation - * to be aborted - * @G_MOUNT_OPERATION_UNHANDLED: The request was unhandled (i.e. not - * implemented) - * - * #GMountOperationResult is returned as a result when a request for - * information is send by the mounting operation. - **/ -typedef enum { - G_MOUNT_OPERATION_HANDLED, - G_MOUNT_OPERATION_ABORTED, - G_MOUNT_OPERATION_UNHANDLED -} GMountOperationResult; - - -/** - * GOutputStreamSpliceFlags: - * @G_OUTPUT_STREAM_SPLICE_NONE: Do not close either stream. - * @G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE: Close the source stream after - * the splice. - * @G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET: Close the target stream after - * the splice. - * - * GOutputStreamSpliceFlags determine how streams should be spliced. - **/ -typedef enum { - G_OUTPUT_STREAM_SPLICE_NONE = 0, - G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE = (1 << 0), - G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET = (1 << 1) -} GOutputStreamSpliceFlags; - - -/** - * GIOStreamSpliceFlags: - * @G_IO_STREAM_SPLICE_NONE: Do not close either stream. - * @G_IO_STREAM_SPLICE_CLOSE_STREAM1: Close the first stream after - * the splice. - * @G_IO_STREAM_SPLICE_CLOSE_STREAM2: Close the second stream after - * the splice. - * @G_IO_STREAM_SPLICE_WAIT_FOR_BOTH: Wait for both splice operations to finish - * before calling the callback. - * - * GIOStreamSpliceFlags determine how streams should be spliced. - * - * Since: 2.28 - **/ -typedef enum { - G_IO_STREAM_SPLICE_NONE = 0, - G_IO_STREAM_SPLICE_CLOSE_STREAM1 = (1 << 0), - G_IO_STREAM_SPLICE_CLOSE_STREAM2 = (1 << 1), - G_IO_STREAM_SPLICE_WAIT_FOR_BOTH = (1 << 2) -} GIOStreamSpliceFlags; - -/** - * GEmblemOrigin: - * @G_EMBLEM_ORIGIN_UNKNOWN: Emblem of unknown origin - * @G_EMBLEM_ORIGIN_DEVICE: Emblem adds device-specific information - * @G_EMBLEM_ORIGIN_LIVEMETADATA: Emblem depicts live metadata, such as "readonly" - * @G_EMBLEM_ORIGIN_TAG: Emblem comes from a user-defined tag, e.g. set by nautilus (in the future) - * - * GEmblemOrigin is used to add information about the origin of the emblem - * to #GEmblem. - * - * Since: 2.18 - */ -typedef enum { - G_EMBLEM_ORIGIN_UNKNOWN, - G_EMBLEM_ORIGIN_DEVICE, - G_EMBLEM_ORIGIN_LIVEMETADATA, - G_EMBLEM_ORIGIN_TAG -} GEmblemOrigin; - -/** - * GResolverError: - * @G_RESOLVER_ERROR_NOT_FOUND: the requested name/address/service was not - * found - * @G_RESOLVER_ERROR_TEMPORARY_FAILURE: the requested information could not - * be looked up due to a network error or similar problem - * @G_RESOLVER_ERROR_INTERNAL: unknown error - * - * An error code used with %G_RESOLVER_ERROR in a #GError returned - * from a #GResolver routine. - * - * Since: 2.22 - */ -typedef enum { - G_RESOLVER_ERROR_NOT_FOUND, - G_RESOLVER_ERROR_TEMPORARY_FAILURE, - G_RESOLVER_ERROR_INTERNAL -} GResolverError; - -/** - * GResolverRecordType: - * @G_RESOLVER_RECORD_SRV: lookup DNS SRV records for a domain - * @G_RESOLVER_RECORD_MX: lookup DNS MX records for a domain - * @G_RESOLVER_RECORD_TXT: lookup DNS TXT records for a name - * @G_RESOLVER_RECORD_SOA: lookup DNS SOA records for a zone - * @G_RESOLVER_RECORD_NS: lookup DNS NS records for a domain - * - * The type of record that g_resolver_lookup_records() or - * g_resolver_lookup_records_async() should retrieve. The records are returned - * as lists of #GVariant tuples. Each record type has different values in - * the variant tuples returned. - * - * %G_RESOLVER_RECORD_SRV records are returned as variants with the signature - * '(qqqs)', containing a guint16 with the priority, a guint16 with the - * weight, a guint16 with the port, and a string of the hostname. - * - * %G_RESOLVER_RECORD_MX records are returned as variants with the signature - * '(qs)', representing a guint16 with the preference, and a string containing - * the mail exchanger hostname. - * - * %G_RESOLVER_RECORD_TXT records are returned as variants with the signature - * '(as)', representing an array of the strings in the text record. - * - * %G_RESOLVER_RECORD_SOA records are returned as variants with the signature - * '(ssuuuuu)', representing a string containing the primary name server, a - * string containing the administrator, the serial as a guint32, the refresh - * interval as guint32, the retry interval as a guint32, the expire timeout - * as a guint32, and the ttl as a guint32. - * - * %G_RESOLVER_RECORD_NS records are returned as variants with the signature - * '(s)', representing a string of the hostname of the name server. - * - * Since: 2.34 - */ -typedef enum { - G_RESOLVER_RECORD_SRV = 1, - G_RESOLVER_RECORD_MX, - G_RESOLVER_RECORD_TXT, - G_RESOLVER_RECORD_SOA, - G_RESOLVER_RECORD_NS -} GResolverRecordType; - -/** - * GResourceError: - * @G_RESOURCE_ERROR_NOT_FOUND: no file was found at the requested path - * @G_RESOURCE_ERROR_INTERNAL: unknown error - * - * An error code used with %G_RESOURCE_ERROR in a #GError returned - * from a #GResource routine. - * - * Since: 2.32 - */ -typedef enum { - G_RESOURCE_ERROR_NOT_FOUND, - G_RESOURCE_ERROR_INTERNAL -} GResourceError; - -/** - * GResourceFlags: - * @G_RESOURCE_FLAGS_NONE: No flags set. - * @G_RESOURCE_FLAGS_COMPRESSED: The file is compressed. - * - * GResourceFlags give information about a particular file inside a resource - * bundle. - * - * Since: 2.32 - **/ -typedef enum { - G_RESOURCE_FLAGS_NONE = 0, - G_RESOURCE_FLAGS_COMPRESSED = (1<<0) -} GResourceFlags; - -/** - * GResourceLookupFlags: - * @G_RESOURCE_LOOKUP_FLAGS_NONE: No flags set. - * - * GResourceLookupFlags determine how resource path lookups are handled. - * - * Since: 2.32 - **/ -typedef enum /*< flags >*/ { - G_RESOURCE_LOOKUP_FLAGS_NONE = 0 -} GResourceLookupFlags; - -/** - * GSocketFamily: - * @G_SOCKET_FAMILY_INVALID: no address family - * @G_SOCKET_FAMILY_IPV4: the IPv4 family - * @G_SOCKET_FAMILY_IPV6: the IPv6 family - * @G_SOCKET_FAMILY_UNIX: the UNIX domain family - * - * The protocol family of a #GSocketAddress. (These values are - * identical to the system defines %AF_INET, %AF_INET6 and %AF_UNIX, - * if available.) - * - * Since: 2.22 - */ -typedef enum { - G_SOCKET_FAMILY_INVALID, - G_SOCKET_FAMILY_UNIX = GLIB_SYSDEF_AF_UNIX, - G_SOCKET_FAMILY_IPV4 = GLIB_SYSDEF_AF_INET, - G_SOCKET_FAMILY_IPV6 = GLIB_SYSDEF_AF_INET6 -} GSocketFamily; - -/** - * GSocketType: - * @G_SOCKET_TYPE_INVALID: Type unknown or wrong - * @G_SOCKET_TYPE_STREAM: Reliable connection-based byte streams (e.g. TCP). - * @G_SOCKET_TYPE_DATAGRAM: Connectionless, unreliable datagram passing. - * (e.g. UDP) - * @G_SOCKET_TYPE_SEQPACKET: Reliable connection-based passing of datagrams - * of fixed maximum length (e.g. SCTP). - * - * Flags used when creating a #GSocket. Some protocols may not implement - * all the socket types. - * - * Since: 2.22 - */ -typedef enum -{ - G_SOCKET_TYPE_INVALID, - G_SOCKET_TYPE_STREAM, - G_SOCKET_TYPE_DATAGRAM, - G_SOCKET_TYPE_SEQPACKET -} GSocketType; - -/** - * GSocketMsgFlags: - * @G_SOCKET_MSG_NONE: No flags. - * @G_SOCKET_MSG_OOB: Request to send/receive out of band data. - * @G_SOCKET_MSG_PEEK: Read data from the socket without removing it from - * the queue. - * @G_SOCKET_MSG_DONTROUTE: Don't use a gateway to send out the packet, - * only send to hosts on directly connected networks. - * - * Flags used in g_socket_receive_message() and g_socket_send_message(). - * The flags listed in the enum are some commonly available flags, but the - * values used for them are the same as on the platform, and any other flags - * are passed in/out as is. So to use a platform specific flag, just include - * the right system header and pass in the flag. - * - * Since: 2.22 - */ -typedef enum /*< flags >*/ -{ - G_SOCKET_MSG_NONE, - G_SOCKET_MSG_OOB = GLIB_SYSDEF_MSG_OOB, - G_SOCKET_MSG_PEEK = GLIB_SYSDEF_MSG_PEEK, - G_SOCKET_MSG_DONTROUTE = GLIB_SYSDEF_MSG_DONTROUTE -} GSocketMsgFlags; - -/** - * GSocketProtocol: - * @G_SOCKET_PROTOCOL_UNKNOWN: The protocol type is unknown - * @G_SOCKET_PROTOCOL_DEFAULT: The default protocol for the family/type - * @G_SOCKET_PROTOCOL_TCP: TCP over IP - * @G_SOCKET_PROTOCOL_UDP: UDP over IP - * @G_SOCKET_PROTOCOL_SCTP: SCTP over IP - * - * A protocol identifier is specified when creating a #GSocket, which is a - * family/type specific identifier, where 0 means the default protocol for - * the particular family/type. - * - * This enum contains a set of commonly available and used protocols. You - * can also pass any other identifiers handled by the platform in order to - * use protocols not listed here. - * - * Since: 2.22 - */ -typedef enum { - G_SOCKET_PROTOCOL_UNKNOWN = -1, - G_SOCKET_PROTOCOL_DEFAULT = 0, - G_SOCKET_PROTOCOL_TCP = 6, - G_SOCKET_PROTOCOL_UDP = 17, - G_SOCKET_PROTOCOL_SCTP = 132 -} GSocketProtocol; - -/** - * GZlibCompressorFormat: - * @G_ZLIB_COMPRESSOR_FORMAT_ZLIB: deflate compression with zlib header - * @G_ZLIB_COMPRESSOR_FORMAT_GZIP: gzip file format - * @G_ZLIB_COMPRESSOR_FORMAT_RAW: deflate compression with no header - * - * Used to select the type of data format to use for #GZlibDecompressor - * and #GZlibCompressor. - * - * Since: 2.24 - */ -typedef enum { - G_ZLIB_COMPRESSOR_FORMAT_ZLIB, - G_ZLIB_COMPRESSOR_FORMAT_GZIP, - G_ZLIB_COMPRESSOR_FORMAT_RAW -} GZlibCompressorFormat; - -/** - * GUnixSocketAddressType: - * @G_UNIX_SOCKET_ADDRESS_INVALID: invalid - * @G_UNIX_SOCKET_ADDRESS_ANONYMOUS: anonymous - * @G_UNIX_SOCKET_ADDRESS_PATH: a filesystem path - * @G_UNIX_SOCKET_ADDRESS_ABSTRACT: an abstract name - * @G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED: an abstract name, 0-padded - * to the full length of a unix socket name - * - * The type of name used by a #GUnixSocketAddress. - * %G_UNIX_SOCKET_ADDRESS_PATH indicates a traditional unix domain - * socket bound to a filesystem path. %G_UNIX_SOCKET_ADDRESS_ANONYMOUS - * indicates a socket not bound to any name (eg, a client-side socket, - * or a socket created with socketpair()). - * - * For abstract sockets, there are two incompatible ways of naming - * them; the man pages suggest using the entire struct - * sockaddr_un as the name, padding the unused parts of the - * %sun_path field with zeroes; this corresponds to - * %G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED. However, many programs - * instead just use a portion of %sun_path, and pass an appropriate - * smaller length to bind() or connect(). This is - * %G_UNIX_SOCKET_ADDRESS_ABSTRACT. - * - * Since: 2.26 - */ -typedef enum { - G_UNIX_SOCKET_ADDRESS_INVALID, - G_UNIX_SOCKET_ADDRESS_ANONYMOUS, - G_UNIX_SOCKET_ADDRESS_PATH, - G_UNIX_SOCKET_ADDRESS_ABSTRACT, - G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED -} GUnixSocketAddressType; - -/** - * GBusType: - * @G_BUS_TYPE_STARTER: An alias for the message bus that activated the process, if any. - * @G_BUS_TYPE_NONE: Not a message bus. - * @G_BUS_TYPE_SYSTEM: The system-wide message bus. - * @G_BUS_TYPE_SESSION: The login session message bus. - * - * An enumeration for well-known message buses. - * - * Since: 2.26 - */ -typedef enum -{ - G_BUS_TYPE_STARTER = -1, - G_BUS_TYPE_NONE = 0, - G_BUS_TYPE_SYSTEM = 1, - G_BUS_TYPE_SESSION = 2 -} GBusType; - -/** - * GBusNameOwnerFlags: - * @G_BUS_NAME_OWNER_FLAGS_NONE: No flags set. - * @G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT: Allow another message bus connection to claim the name. - * @G_BUS_NAME_OWNER_FLAGS_REPLACE: If another message bus connection owns the name and have - * specified #G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT, then take the name from the other connection. - * - * Flags used in g_bus_own_name(). - * - * Since: 2.26 - */ -typedef enum -{ - G_BUS_NAME_OWNER_FLAGS_NONE = 0, /*< nick=none >*/ - G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT = (1<<0), /*< nick=allow-replacement >*/ - G_BUS_NAME_OWNER_FLAGS_REPLACE = (1<<1) /*< nick=replace >*/ -} GBusNameOwnerFlags; - -/** - * GBusNameWatcherFlags: - * @G_BUS_NAME_WATCHER_FLAGS_NONE: No flags set. - * @G_BUS_NAME_WATCHER_FLAGS_AUTO_START: If no-one owns the name when - * beginning to watch the name, ask the bus to launch an owner for the - * name. - * - * Flags used in g_bus_watch_name(). - * - * Since: 2.26 - */ -typedef enum -{ - G_BUS_NAME_WATCHER_FLAGS_NONE = 0, - G_BUS_NAME_WATCHER_FLAGS_AUTO_START = (1<<0) -} GBusNameWatcherFlags; - -/** - * GDBusProxyFlags: - * @G_DBUS_PROXY_FLAGS_NONE: No flags set. - * @G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES: Don't load properties. - * @G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS: Don't connect to signals on the remote object. - * @G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START: If not set and the proxy if for a well-known name, - * then request the bus to launch an owner for the name if no-one owns the name. This flag can - * only be used in proxies for well-known names. - * @G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES: If set, the property value for any invalidated property will be (asynchronously) retrieved upon receiving the PropertiesChanged D-Bus signal and the property will not cause emission of the #GDBusProxy::g-properties-changed signal. When the value is received the #GDBusProxy::g-properties-changed signal is emitted for the property along with the retrieved value. Since 2.32. - * - * Flags used when constructing an instance of a #GDBusProxy derived class. - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_PROXY_FLAGS_NONE = 0, - G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES = (1<<0), - G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS = (1<<1), - G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START = (1<<2), - G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES = (1<<3) -} GDBusProxyFlags; - -/** - * GDBusError: - * @G_DBUS_ERROR_FAILED: - * A generic error; "something went wrong" - see the error message for - * more. - * @G_DBUS_ERROR_NO_MEMORY: - * There was not enough memory to complete an operation. - * @G_DBUS_ERROR_SERVICE_UNKNOWN: - * The bus doesn't know how to launch a service to supply the bus name - * you wanted. - * @G_DBUS_ERROR_NAME_HAS_NO_OWNER: - * The bus name you referenced doesn't exist (i.e. no application owns - * it). - * @G_DBUS_ERROR_NO_REPLY: - * No reply to a message expecting one, usually means a timeout occurred. - * @G_DBUS_ERROR_IO_ERROR: - * Something went wrong reading or writing to a socket, for example. - * @G_DBUS_ERROR_BAD_ADDRESS: - * A D-Bus bus address was malformed. - * @G_DBUS_ERROR_NOT_SUPPORTED: - * Requested operation isn't supported (like ENOSYS on UNIX). - * @G_DBUS_ERROR_LIMITS_EXCEEDED: - * Some limited resource is exhausted. - * @G_DBUS_ERROR_ACCESS_DENIED: - * Security restrictions don't allow doing what you're trying to do. - * @G_DBUS_ERROR_AUTH_FAILED: - * Authentication didn't work. - * @G_DBUS_ERROR_NO_SERVER: - * Unable to connect to server (probably caused by ECONNREFUSED on a - * socket). - * @G_DBUS_ERROR_TIMEOUT: - * Certain timeout errors, possibly ETIMEDOUT on a socket. Note that - * %G_DBUS_ERROR_NO_REPLY is used for message reply timeouts. Warning: - * this is confusingly-named given that %G_DBUS_ERROR_TIMED_OUT also - * exists. We can't fix it for compatibility reasons so just be - * careful. - * @G_DBUS_ERROR_NO_NETWORK: - * No network access (probably ENETUNREACH on a socket). - * @G_DBUS_ERROR_ADDRESS_IN_USE: - * Can't bind a socket since its address is in use (i.e. EADDRINUSE). - * @G_DBUS_ERROR_DISCONNECTED: - * The connection is disconnected and you're trying to use it. - * @G_DBUS_ERROR_INVALID_ARGS: - * Invalid arguments passed to a method call. - * @G_DBUS_ERROR_FILE_NOT_FOUND: - * Missing file. - * @G_DBUS_ERROR_FILE_EXISTS: - * Existing file and the operation you're using does not silently overwrite. - * @G_DBUS_ERROR_UNKNOWN_METHOD: - * Method name you invoked isn't known by the object you invoked it on. - * @G_DBUS_ERROR_TIMED_OUT: - * Certain timeout errors, e.g. while starting a service. Warning: this is - * confusingly-named given that %G_DBUS_ERROR_TIMEOUT also exists. We - * can't fix it for compatibility reasons so just be careful. - * @G_DBUS_ERROR_MATCH_RULE_NOT_FOUND: - * Tried to remove or modify a match rule that didn't exist. - * @G_DBUS_ERROR_MATCH_RULE_INVALID: - * The match rule isn't syntactically valid. - * @G_DBUS_ERROR_SPAWN_EXEC_FAILED: - * While starting a new process, the exec() call failed. - * @G_DBUS_ERROR_SPAWN_FORK_FAILED: - * While starting a new process, the fork() call failed. - * @G_DBUS_ERROR_SPAWN_CHILD_EXITED: - * While starting a new process, the child exited with a status code. - * @G_DBUS_ERROR_SPAWN_CHILD_SIGNALED: - * While starting a new process, the child exited on a signal. - * @G_DBUS_ERROR_SPAWN_FAILED: - * While starting a new process, something went wrong. - * @G_DBUS_ERROR_SPAWN_SETUP_FAILED: - * We failed to setup the environment correctly. - * @G_DBUS_ERROR_SPAWN_CONFIG_INVALID: - * We failed to setup the config parser correctly. - * @G_DBUS_ERROR_SPAWN_SERVICE_INVALID: - * Bus name was not valid. - * @G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND: - * Service file not found in system-services directory. - * @G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID: - * Permissions are incorrect on the setuid helper. - * @G_DBUS_ERROR_SPAWN_FILE_INVALID: - * Service file invalid (Name, User or Exec missing). - * @G_DBUS_ERROR_SPAWN_NO_MEMORY: - * Tried to get a UNIX process ID and it wasn't available. - * @G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN: - * Tried to get a UNIX process ID and it wasn't available. - * @G_DBUS_ERROR_INVALID_SIGNATURE: - * A type signature is not valid. - * @G_DBUS_ERROR_INVALID_FILE_CONTENT: - * A file contains invalid syntax or is otherwise broken. - * @G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN: - * Asked for SELinux security context and it wasn't available. - * @G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN: - * Asked for ADT audit data and it wasn't available. - * @G_DBUS_ERROR_OBJECT_PATH_IN_USE: - * There's already an object with the requested object path. - * - * Error codes for the %G_DBUS_ERROR error domain. - * - * Since: 2.26 - */ -typedef enum -{ - /* Well-known errors in the org.freedesktop.DBus.Error namespace */ - G_DBUS_ERROR_FAILED, /* org.freedesktop.DBus.Error.Failed */ - G_DBUS_ERROR_NO_MEMORY, /* org.freedesktop.DBus.Error.NoMemory */ - G_DBUS_ERROR_SERVICE_UNKNOWN, /* org.freedesktop.DBus.Error.ServiceUnknown */ - G_DBUS_ERROR_NAME_HAS_NO_OWNER, /* org.freedesktop.DBus.Error.NameHasNoOwner */ - G_DBUS_ERROR_NO_REPLY, /* org.freedesktop.DBus.Error.NoReply */ - G_DBUS_ERROR_IO_ERROR, /* org.freedesktop.DBus.Error.IOError */ - G_DBUS_ERROR_BAD_ADDRESS, /* org.freedesktop.DBus.Error.BadAddress */ - G_DBUS_ERROR_NOT_SUPPORTED, /* org.freedesktop.DBus.Error.NotSupported */ - G_DBUS_ERROR_LIMITS_EXCEEDED, /* org.freedesktop.DBus.Error.LimitsExceeded */ - G_DBUS_ERROR_ACCESS_DENIED, /* org.freedesktop.DBus.Error.AccessDenied */ - G_DBUS_ERROR_AUTH_FAILED, /* org.freedesktop.DBus.Error.AuthFailed */ - G_DBUS_ERROR_NO_SERVER, /* org.freedesktop.DBus.Error.NoServer */ - G_DBUS_ERROR_TIMEOUT, /* org.freedesktop.DBus.Error.Timeout */ - G_DBUS_ERROR_NO_NETWORK, /* org.freedesktop.DBus.Error.NoNetwork */ - G_DBUS_ERROR_ADDRESS_IN_USE, /* org.freedesktop.DBus.Error.AddressInUse */ - G_DBUS_ERROR_DISCONNECTED, /* org.freedesktop.DBus.Error.Disconnected */ - G_DBUS_ERROR_INVALID_ARGS, /* org.freedesktop.DBus.Error.InvalidArgs */ - G_DBUS_ERROR_FILE_NOT_FOUND, /* org.freedesktop.DBus.Error.FileNotFound */ - G_DBUS_ERROR_FILE_EXISTS, /* org.freedesktop.DBus.Error.FileExists */ - G_DBUS_ERROR_UNKNOWN_METHOD, /* org.freedesktop.DBus.Error.UnknownMethod */ - G_DBUS_ERROR_TIMED_OUT, /* org.freedesktop.DBus.Error.TimedOut */ - G_DBUS_ERROR_MATCH_RULE_NOT_FOUND, /* org.freedesktop.DBus.Error.MatchRuleNotFound */ - G_DBUS_ERROR_MATCH_RULE_INVALID, /* org.freedesktop.DBus.Error.MatchRuleInvalid */ - G_DBUS_ERROR_SPAWN_EXEC_FAILED, /* org.freedesktop.DBus.Error.Spawn.ExecFailed */ - G_DBUS_ERROR_SPAWN_FORK_FAILED, /* org.freedesktop.DBus.Error.Spawn.ForkFailed */ - G_DBUS_ERROR_SPAWN_CHILD_EXITED, /* org.freedesktop.DBus.Error.Spawn.ChildExited */ - G_DBUS_ERROR_SPAWN_CHILD_SIGNALED, /* org.freedesktop.DBus.Error.Spawn.ChildSignaled */ - G_DBUS_ERROR_SPAWN_FAILED, /* org.freedesktop.DBus.Error.Spawn.Failed */ - G_DBUS_ERROR_SPAWN_SETUP_FAILED, /* org.freedesktop.DBus.Error.Spawn.FailedToSetup */ - G_DBUS_ERROR_SPAWN_CONFIG_INVALID, /* org.freedesktop.DBus.Error.Spawn.ConfigInvalid */ - G_DBUS_ERROR_SPAWN_SERVICE_INVALID, /* org.freedesktop.DBus.Error.Spawn.ServiceNotValid */ - G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND, /* org.freedesktop.DBus.Error.Spawn.ServiceNotFound */ - G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID, /* org.freedesktop.DBus.Error.Spawn.PermissionsInvalid */ - G_DBUS_ERROR_SPAWN_FILE_INVALID, /* org.freedesktop.DBus.Error.Spawn.FileInvalid */ - G_DBUS_ERROR_SPAWN_NO_MEMORY, /* org.freedesktop.DBus.Error.Spawn.NoMemory */ - G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN, /* org.freedesktop.DBus.Error.UnixProcessIdUnknown */ - G_DBUS_ERROR_INVALID_SIGNATURE, /* org.freedesktop.DBus.Error.InvalidSignature */ - G_DBUS_ERROR_INVALID_FILE_CONTENT, /* org.freedesktop.DBus.Error.InvalidFileContent */ - G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN, /* org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown */ - G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN, /* org.freedesktop.DBus.Error.AdtAuditDataUnknown */ - G_DBUS_ERROR_OBJECT_PATH_IN_USE /* org.freedesktop.DBus.Error.ObjectPathInUse */ -} GDBusError; -/* Remember to update g_dbus_error_quark() in gdbuserror.c if you extend this enumeration */ - -/** - * GDBusConnectionFlags: - * @G_DBUS_CONNECTION_FLAGS_NONE: No flags set. - * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT: Perform authentication against server. - * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER: Perform authentication against client. - * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: When - * authenticating as a server, allow the anonymous authentication - * method. - * @G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION: Pass this flag if connecting to a peer that is a - * message bus. This means that the Hello() method will be invoked as part of the connection setup. - * @G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING: If set, processing of D-Bus messages is - * delayed until g_dbus_connection_start_message_processing() is called. - * - * Flags used when creating a new #GDBusConnection. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_CONNECTION_FLAGS_NONE = 0, - G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT = (1<<0), - G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER = (1<<1), - G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<2), - G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION = (1<<3), - G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING = (1<<4) -} GDBusConnectionFlags; - -/** - * GDBusCapabilityFlags: - * @G_DBUS_CAPABILITY_FLAGS_NONE: No flags set. - * @G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING: The connection - * supports exchanging UNIX file descriptors with the remote peer. - * - * Capabilities negotiated with the remote peer. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_CAPABILITY_FLAGS_NONE = 0, - G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING = (1<<0) -} GDBusCapabilityFlags; - -/** - * GDBusCallFlags: - * @G_DBUS_CALL_FLAGS_NONE: No flags set. - * @G_DBUS_CALL_FLAGS_NO_AUTO_START: The bus must not launch - * an owner for the destination name in response to this method - * invocation. - * - * Flags used in g_dbus_connection_call() and similar APIs. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_CALL_FLAGS_NONE = 0, - G_DBUS_CALL_FLAGS_NO_AUTO_START = (1<<0) -} GDBusCallFlags; -/* (1<<31) is reserved for internal use by GDBusConnection, do not use it. */ - -/** - * GDBusMessageType: - * @G_DBUS_MESSAGE_TYPE_INVALID: Message is of invalid type. - * @G_DBUS_MESSAGE_TYPE_METHOD_CALL: Method call. - * @G_DBUS_MESSAGE_TYPE_METHOD_RETURN: Method reply. - * @G_DBUS_MESSAGE_TYPE_ERROR: Error reply. - * @G_DBUS_MESSAGE_TYPE_SIGNAL: Signal emission. - * - * Message types used in #GDBusMessage. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_MESSAGE_TYPE_INVALID, - G_DBUS_MESSAGE_TYPE_METHOD_CALL, - G_DBUS_MESSAGE_TYPE_METHOD_RETURN, - G_DBUS_MESSAGE_TYPE_ERROR, - G_DBUS_MESSAGE_TYPE_SIGNAL -} GDBusMessageType; - -/** - * GDBusMessageFlags: - * @G_DBUS_MESSAGE_FLAGS_NONE: No flags set. - * @G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED: A reply is not expected. - * @G_DBUS_MESSAGE_FLAGS_NO_AUTO_START: The bus must not launch an - * owner for the destination name in response to this message. - * - * Message flags used in #GDBusMessage. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_MESSAGE_FLAGS_NONE = 0, - G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED = (1<<0), - G_DBUS_MESSAGE_FLAGS_NO_AUTO_START = (1<<1) -} GDBusMessageFlags; - -/** - * GDBusMessageHeaderField: - * @G_DBUS_MESSAGE_HEADER_FIELD_INVALID: Not a valid header field. - * @G_DBUS_MESSAGE_HEADER_FIELD_PATH: The object path. - * @G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE: The interface name. - * @G_DBUS_MESSAGE_HEADER_FIELD_MEMBER: The method or signal name. - * @G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME: The name of the error that occurred. - * @G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL: The serial number the message is a reply to. - * @G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION: The name the message is intended for. - * @G_DBUS_MESSAGE_HEADER_FIELD_SENDER: Unique name of the sender of the message (filled in by the bus). - * @G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE: The signature of the message body. - * @G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS: The number of UNIX file descriptors that accompany the message. - * - * Header fields used in #GDBusMessage. - * - * Since: 2.26 - */ -typedef enum { - G_DBUS_MESSAGE_HEADER_FIELD_INVALID, - G_DBUS_MESSAGE_HEADER_FIELD_PATH, - G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE, - G_DBUS_MESSAGE_HEADER_FIELD_MEMBER, - G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME, - G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL, - G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION, - G_DBUS_MESSAGE_HEADER_FIELD_SENDER, - G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE, - G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS -} GDBusMessageHeaderField; - -/** - * GDBusPropertyInfoFlags: - * @G_DBUS_PROPERTY_INFO_FLAGS_NONE: No flags set. - * @G_DBUS_PROPERTY_INFO_FLAGS_READABLE: Property is readable. - * @G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE: Property is writable. - * - * Flags describing the access control of a D-Bus property. - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_PROPERTY_INFO_FLAGS_NONE = 0, - G_DBUS_PROPERTY_INFO_FLAGS_READABLE = (1<<0), - G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE = (1<<1) -} GDBusPropertyInfoFlags; - -/** - * GDBusSubtreeFlags: - * @G_DBUS_SUBTREE_FLAGS_NONE: No flags set. - * @G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES: Method calls to objects not in the enumerated range - * will still be dispatched. This is useful if you want - * to dynamically spawn objects in the subtree. - * - * Flags passed to g_dbus_connection_register_subtree(). - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_SUBTREE_FLAGS_NONE = 0, - G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES = (1<<0) -} GDBusSubtreeFlags; - -/** - * GDBusServerFlags: - * @G_DBUS_SERVER_FLAGS_NONE: No flags set. - * @G_DBUS_SERVER_FLAGS_RUN_IN_THREAD: All #GDBusServer::new-connection - * signals will run in separated dedicated threads (see signal for - * details). - * @G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: Allow the anonymous - * authentication method. - * - * Flags used when creating a #GDBusServer. - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_SERVER_FLAGS_NONE = 0, - G_DBUS_SERVER_FLAGS_RUN_IN_THREAD = (1<<0), - G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<1) -} GDBusServerFlags; - -/** - * GDBusSignalFlags: - * @G_DBUS_SIGNAL_FLAGS_NONE: No flags set. - * @G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE: Don't actually send the AddMatch - * D-Bus call for this signal subscription. This gives you more control - * over which match rules you add (but you must add them manually). - * @G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE: Match first arguments that - * contain a bus or interface name with the given namespace. - * @G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH: Match first arguments that - * contain an object path that is either equivalent to the given path, - * or one of the paths is a subpath of the other. - * - * Flags used when subscribing to signals via g_dbus_connection_signal_subscribe(). - * - * Since: 2.26 - */ -typedef enum /*< flags >*/ -{ - G_DBUS_SIGNAL_FLAGS_NONE = 0, - G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE = (1<<0), - G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE = (1<<1), - G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH = (1<<2) -} GDBusSignalFlags; - -/** - * GDBusSendMessageFlags: - * @G_DBUS_SEND_MESSAGE_FLAGS_NONE: No flags set. - * @G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL: Do not automatically - * assign a serial number from the #GDBusConnection object when - * sending a message. - * - * Flags used when sending #GDBusMessages on a #GDBusConnection. - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_SEND_MESSAGE_FLAGS_NONE = 0, - G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL = (1<<0) -} GDBusSendMessageFlags; -/* (1<<31) is reserved for internal use by GDBusConnection, do not use it. */ - -/** - * GCredentialsType: - * @G_CREDENTIALS_TYPE_INVALID: Indicates an invalid native credential type. - * @G_CREDENTIALS_TYPE_LINUX_UCRED: The native credentials type is a struct ucred. - * @G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED: The native credentials type is a struct cmsgcred. - * @G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED: The native credentials type is a struct sockpeercred. Added in 2.30. - * - * Enumeration describing different kinds of native credential types. - * - * Since: 2.26 - */ -typedef enum -{ - G_CREDENTIALS_TYPE_INVALID, - G_CREDENTIALS_TYPE_LINUX_UCRED, - G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED, - G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED -} GCredentialsType; - -/** - * GDBusMessageByteOrder: - * @G_DBUS_MESSAGE_BYTE_ORDER_BIG_ENDIAN: The byte order is big endian. - * @G_DBUS_MESSAGE_BYTE_ORDER_LITTLE_ENDIAN: The byte order is little endian. - * - * Enumeration used to describe the byte order of a D-Bus message. - * - * Since: 2.26 - */ -typedef enum -{ - G_DBUS_MESSAGE_BYTE_ORDER_BIG_ENDIAN = 'B', - G_DBUS_MESSAGE_BYTE_ORDER_LITTLE_ENDIAN = 'l' -} GDBusMessageByteOrder; - -/** - * GApplicationFlags: - * @G_APPLICATION_FLAGS_NONE: Default - * @G_APPLICATION_IS_SERVICE: Run as a service. In this mode, registration - * fails if the service is already running, and the application - * will initially wait up to 10 seconds for an initial activation - * message to arrive. - * @G_APPLICATION_IS_LAUNCHER: Don't try to become the primary instance. - * @G_APPLICATION_HANDLES_OPEN: This application handles opening files (in - * the primary instance). Note that this flag only affects the default - * implementation of local_command_line(), and has no effect if - * %G_APPLICATION_HANDLES_COMMAND_LINE is given. - * See g_application_run() for details. - * @G_APPLICATION_HANDLES_COMMAND_LINE: This application handles command line - * arguments (in the primary instance). Note that this flag only affect - * the default implementation of local_command_line(). - * See g_application_run() for details. - * @G_APPLICATION_SEND_ENVIRONMENT: Send the environment of the - * launching process to the primary instance. Set this flag if your - * application is expected to behave differently depending on certain - * environment variables. For instance, an editor might be expected - * to use the GIT_COMMITTER_NAME environment variable - * when editing a git commit message. The environment is available - * to the #GApplication::command-line signal handler, via - * g_application_command_line_getenv(). - * @G_APPLICATION_NON_UNIQUE: Make no attempts to do any of the typical - * single-instance application negotiation, even if the application - * ID is given. The application neither attempts to become the - * owner of the application ID nor does it check if an existing - * owner already exists. Everything occurs in the local process. - * Since: 2.30. - * - * Flags used to define the behaviour of a #GApplication. - * - * Since: 2.28 - **/ -typedef enum -{ - G_APPLICATION_FLAGS_NONE, - G_APPLICATION_IS_SERVICE = (1 << 0), - G_APPLICATION_IS_LAUNCHER = (1 << 1), - - G_APPLICATION_HANDLES_OPEN = (1 << 2), - G_APPLICATION_HANDLES_COMMAND_LINE = (1 << 3), - G_APPLICATION_SEND_ENVIRONMENT = (1 << 4), - - G_APPLICATION_NON_UNIQUE = (1 << 5) -} GApplicationFlags; - -/** - * GTlsError: - * @G_TLS_ERROR_UNAVAILABLE: No TLS provider is available - * @G_TLS_ERROR_MISC: Miscellaneous TLS error - * @G_TLS_ERROR_BAD_CERTIFICATE: A certificate could not be parsed - * @G_TLS_ERROR_NOT_TLS: The TLS handshake failed because the - * peer does not seem to be a TLS server. - * @G_TLS_ERROR_HANDSHAKE: The TLS handshake failed because the - * peer's certificate was not acceptable. - * @G_TLS_ERROR_CERTIFICATE_REQUIRED: The TLS handshake failed because - * the server requested a client-side certificate, but none was - * provided. See g_tls_connection_set_certificate(). - * @G_TLS_ERROR_EOF: The TLS connection was closed without proper - * notice, which may indicate an attack. See - * g_tls_connection_set_require_close_notify(). - * - * An error code used with %G_TLS_ERROR in a #GError returned from a - * TLS-related routine. - * - * Since: 2.28 - */ -typedef enum { - G_TLS_ERROR_UNAVAILABLE, - G_TLS_ERROR_MISC, - G_TLS_ERROR_BAD_CERTIFICATE, - G_TLS_ERROR_NOT_TLS, - G_TLS_ERROR_HANDSHAKE, - G_TLS_ERROR_CERTIFICATE_REQUIRED, - G_TLS_ERROR_EOF -} GTlsError; - -/** - * GTlsCertificateFlags: - * @G_TLS_CERTIFICATE_UNKNOWN_CA: The signing certificate authority is - * not known. - * @G_TLS_CERTIFICATE_BAD_IDENTITY: The certificate does not match the - * expected identity of the site that it was retrieved from. - * @G_TLS_CERTIFICATE_NOT_ACTIVATED: The certificate's activation time - * is still in the future - * @G_TLS_CERTIFICATE_EXPIRED: The certificate has expired - * @G_TLS_CERTIFICATE_REVOKED: The certificate has been revoked - * according to the #GTlsConnection's certificate revocation list. - * @G_TLS_CERTIFICATE_INSECURE: The certificate's algorithm is - * considered insecure. - * @G_TLS_CERTIFICATE_GENERIC_ERROR: Some other error occurred validating - * the certificate - * @G_TLS_CERTIFICATE_VALIDATE_ALL: the combination of all of the above - * flags - * - * A set of flags describing TLS certification validation. This can be - * used to set which validation steps to perform (eg, with - * g_tls_client_connection_set_validation_flags()), or to describe why - * a particular certificate was rejected (eg, in - * #GTlsConnection::accept-certificate). - * - * Since: 2.28 - */ -typedef enum { - G_TLS_CERTIFICATE_UNKNOWN_CA = (1 << 0), - G_TLS_CERTIFICATE_BAD_IDENTITY = (1 << 1), - G_TLS_CERTIFICATE_NOT_ACTIVATED = (1 << 2), - G_TLS_CERTIFICATE_EXPIRED = (1 << 3), - G_TLS_CERTIFICATE_REVOKED = (1 << 4), - G_TLS_CERTIFICATE_INSECURE = (1 << 5), - G_TLS_CERTIFICATE_GENERIC_ERROR = (1 << 6), - - G_TLS_CERTIFICATE_VALIDATE_ALL = 0x007f -} GTlsCertificateFlags; - -/** - * GTlsAuthenticationMode: - * @G_TLS_AUTHENTICATION_NONE: client authentication not required - * @G_TLS_AUTHENTICATION_REQUESTED: client authentication is requested - * @G_TLS_AUTHENTICATION_REQUIRED: client authentication is required - * - * The client authentication mode for a #GTlsServerConnection. - * - * Since: 2.28 - */ -typedef enum { - G_TLS_AUTHENTICATION_NONE, - G_TLS_AUTHENTICATION_REQUESTED, - G_TLS_AUTHENTICATION_REQUIRED -} GTlsAuthenticationMode; - -/** - * GTlsRehandshakeMode: - * @G_TLS_REHANDSHAKE_NEVER: Never allow rehandshaking - * @G_TLS_REHANDSHAKE_SAFELY: Allow safe rehandshaking only - * @G_TLS_REHANDSHAKE_UNSAFELY: Allow unsafe rehandshaking - * - * When to allow rehandshaking. See - * g_tls_connection_set_rehandshake_mode(). - * - * Since: 2.28 - */ -typedef enum { - G_TLS_REHANDSHAKE_NEVER, - G_TLS_REHANDSHAKE_SAFELY, - G_TLS_REHANDSHAKE_UNSAFELY -} GTlsRehandshakeMode; - -/** - * GTlsPasswordFlags: - * @G_TLS_PASSWORD_NONE: No flags - * @G_TLS_PASSWORD_RETRY: The password was wrong, and the user should retry. - * @G_TLS_PASSWORD_MANY_TRIES: Hint to the user that the password has been - * wrong many times, and the user may not have many chances left. - * @G_TLS_PASSWORD_FINAL_TRY: Hint to the user that this is the last try to get - * this password right. - * - * Various flags for the password. - * - * Since: 2.30 - */ - -typedef enum _GTlsPasswordFlags -{ - G_TLS_PASSWORD_NONE = 0, - G_TLS_PASSWORD_RETRY = 1 << 1, - G_TLS_PASSWORD_MANY_TRIES = 1 << 2, - G_TLS_PASSWORD_FINAL_TRY = 1 << 3 -} GTlsPasswordFlags; - -/** - * GTlsInteractionResult: - * @G_TLS_INTERACTION_UNHANDLED: The interaction was unhandled (i.e. not - * implemented). - * @G_TLS_INTERACTION_HANDLED: The interaction completed, and resulting data - * is available. - * @G_TLS_INTERACTION_FAILED: The interaction has failed, or was cancelled. - * and the operation should be aborted. - * - * #GTlsInteractionResult is returned by various functions in #GTlsInteraction - * when finishing an interaction request. - * - * Since: 2.30 - */ -typedef enum { - G_TLS_INTERACTION_UNHANDLED, - G_TLS_INTERACTION_HANDLED, - G_TLS_INTERACTION_FAILED -} GTlsInteractionResult; - -/** - * GDBusInterfaceSkeletonFlags: - * @G_DBUS_INTERFACE_SKELETON_FLAGS_NONE: No flags set. - * @G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD: Each method invocation is handled in - * a thread dedicated to the invocation. This means that the method implementation can use blocking IO - * without blocking any other part of the process. It also means that the method implementation must - * use locking to access data structures used by other threads. - * - * Flags describing the behavior of a #GDBusInterfaceSkeleton instance. - * - * Since: 2.30 - */ -typedef enum -{ - G_DBUS_INTERFACE_SKELETON_FLAGS_NONE = 0, - G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD = (1<<0) -} GDBusInterfaceSkeletonFlags; - -/** - * GDBusObjectManagerClientFlags: - * @G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE: No flags set. - * @G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START: If not set and the - * manager is for a well-known name, then request the bus to launch - * an owner for the name if no-one owns the name. This flag can only - * be used in managers for well-known names. - * - * Flags used when constructing a #GDBusObjectManagerClient. - * - * Since: 2.30 - */ -typedef enum -{ - G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE = 0, - G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START = (1<<0) -} GDBusObjectManagerClientFlags; - -/** - * GTlsDatabaseVerifyFlags: - * @G_TLS_DATABASE_VERIFY_NONE: No verification flags - * - * Flags for g_tls_database_verify_chain(). - * - * Since: 2.30 - */ -typedef enum /*< flags >*/ { - G_TLS_DATABASE_VERIFY_NONE = 0 -} GTlsDatabaseVerifyFlags; - -/** - * GTlsDatabaseLookupFlags: - * @G_TLS_DATABASE_LOOKUP_NONE: No lookup flags - * @G_TLS_DATABASE_LOOKUP_KEYPAIR: Restrict lookup to certificates that have - * a private key. - * - * Flags for g_tls_database_lookup_certificate_handle(), - * g_tls_database_lookup_certificate_issuer(), - * and g_tls_database_lookup_certificates_issued_by(). - * - * Since: 2.30 - */ -typedef enum { - G_TLS_DATABASE_LOOKUP_NONE = 0, - G_TLS_DATABASE_LOOKUP_KEYPAIR = 1 -} GTlsDatabaseLookupFlags; - -/** - * GIOModuleScopeFlags: - * @G_IO_MODULE_SCOPE_NONE: No module scan flags - * @G_IO_MODULE_SCOPE_BLOCK_DUPLICATES: When using this scope to load or - * scan modules, automatically block a modules which has the same base - * basename as previously loaded module. - * - * Flags for use with g_io_module_scope_new(). - * - * Since: 2.30 - */ -typedef enum { - G_IO_MODULE_SCOPE_NONE, - G_IO_MODULE_SCOPE_BLOCK_DUPLICATES -} GIOModuleScopeFlags; - -/** - * GSocketClientEvent: - * @G_SOCKET_CLIENT_RESOLVING: The client is doing a DNS lookup. - * @G_SOCKET_CLIENT_RESOLVED: The client has completed a DNS lookup. - * @G_SOCKET_CLIENT_CONNECTING: The client is connecting to a remote - * host (either a proxy or the destination server). - * @G_SOCKET_CLIENT_CONNECTED: The client has connected to a remote - * host. - * @G_SOCKET_CLIENT_PROXY_NEGOTIATING: The client is negotiating - * with a proxy to connect to the destination server. - * @G_SOCKET_CLIENT_PROXY_NEGOTIATED: The client has negotiated - * with the proxy server. - * @G_SOCKET_CLIENT_TLS_HANDSHAKING: The client is performing a - * TLS handshake. - * @G_SOCKET_CLIENT_TLS_HANDSHAKED: The client has performed a - * TLS handshake. - * @G_SOCKET_CLIENT_COMPLETE: The client is done with a particular - * #GSocketConnectable. - * - * Describes an event occurring on a #GSocketClient. See the - * #GSocketClient::event signal for more details. - * - * Additional values may be added to this type in the future. - * - * Since: 2.32 - */ -typedef enum { - G_SOCKET_CLIENT_RESOLVING, - G_SOCKET_CLIENT_RESOLVED, - G_SOCKET_CLIENT_CONNECTING, - G_SOCKET_CLIENT_CONNECTED, - G_SOCKET_CLIENT_PROXY_NEGOTIATING, - G_SOCKET_CLIENT_PROXY_NEGOTIATED, - G_SOCKET_CLIENT_TLS_HANDSHAKING, - G_SOCKET_CLIENT_TLS_HANDSHAKED, - G_SOCKET_CLIENT_COMPLETE -} GSocketClientEvent; - -/** - * GTestDBusFlags: - * @G_TEST_DBUS_NONE: No flags. - * - * Flags to define future #GTestDBus behaviour. - * - * Since: 2.34 - */ -typedef enum /*< flags >*/ { - G_TEST_DBUS_NONE = 0 -} GTestDBusFlags; - -G_END_DECLS - -#endif /* __GIO_ENUMS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenumtypes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenumtypes.h deleted file mode 100644 index 5d31879..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioenumtypes.h +++ /dev/null @@ -1,161 +0,0 @@ - -/* Generated data (by glib-mkenums) */ - -#ifndef __GIO_ENUM_TYPES_H__ -#define __GIO_ENUM_TYPES_H__ - -#include - -G_BEGIN_DECLS - -/* enumerations from "gioenums.h" */ -GLIB_AVAILABLE_IN_ALL GType g_app_info_create_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_APP_INFO_CREATE_FLAGS (g_app_info_create_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_converter_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_CONVERTER_FLAGS (g_converter_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_converter_result_get_type (void) G_GNUC_CONST; -#define G_TYPE_CONVERTER_RESULT (g_converter_result_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_data_stream_byte_order_get_type (void) G_GNUC_CONST; -#define G_TYPE_DATA_STREAM_BYTE_ORDER (g_data_stream_byte_order_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_data_stream_newline_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_DATA_STREAM_NEWLINE_TYPE (g_data_stream_newline_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_attribute_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_ATTRIBUTE_TYPE (g_file_attribute_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_attribute_info_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_ATTRIBUTE_INFO_FLAGS (g_file_attribute_info_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_attribute_status_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_ATTRIBUTE_STATUS (g_file_attribute_status_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_query_info_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_QUERY_INFO_FLAGS (g_file_query_info_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_create_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_CREATE_FLAGS (g_file_create_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_measure_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_MEASURE_FLAGS (g_file_measure_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_mount_mount_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_MOUNT_MOUNT_FLAGS (g_mount_mount_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_mount_unmount_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_MOUNT_UNMOUNT_FLAGS (g_mount_unmount_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_drive_start_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DRIVE_START_FLAGS (g_drive_start_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_drive_start_stop_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_DRIVE_START_STOP_TYPE (g_drive_start_stop_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_copy_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_COPY_FLAGS (g_file_copy_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_monitor_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_MONITOR_FLAGS (g_file_monitor_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_TYPE (g_file_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_filesystem_preview_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILESYSTEM_PREVIEW_TYPE (g_filesystem_preview_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_file_monitor_event_get_type (void) G_GNUC_CONST; -#define G_TYPE_FILE_MONITOR_EVENT (g_file_monitor_event_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_io_error_enum_get_type (void) G_GNUC_CONST; -#define G_TYPE_IO_ERROR_ENUM (g_io_error_enum_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_ask_password_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_ASK_PASSWORD_FLAGS (g_ask_password_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_password_save_get_type (void) G_GNUC_CONST; -#define G_TYPE_PASSWORD_SAVE (g_password_save_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_mount_operation_result_get_type (void) G_GNUC_CONST; -#define G_TYPE_MOUNT_OPERATION_RESULT (g_mount_operation_result_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_output_stream_splice_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_OUTPUT_STREAM_SPLICE_FLAGS (g_output_stream_splice_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_io_stream_splice_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_IO_STREAM_SPLICE_FLAGS (g_io_stream_splice_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_emblem_origin_get_type (void) G_GNUC_CONST; -#define G_TYPE_EMBLEM_ORIGIN (g_emblem_origin_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_resolver_error_get_type (void) G_GNUC_CONST; -#define G_TYPE_RESOLVER_ERROR (g_resolver_error_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_resolver_record_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_RESOLVER_RECORD_TYPE (g_resolver_record_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_resource_error_get_type (void) G_GNUC_CONST; -#define G_TYPE_RESOURCE_ERROR (g_resource_error_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_resource_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_RESOURCE_FLAGS (g_resource_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_resource_lookup_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_RESOURCE_LOOKUP_FLAGS (g_resource_lookup_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_socket_family_get_type (void) G_GNUC_CONST; -#define G_TYPE_SOCKET_FAMILY (g_socket_family_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_socket_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_SOCKET_TYPE (g_socket_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_socket_msg_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_SOCKET_MSG_FLAGS (g_socket_msg_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_socket_protocol_get_type (void) G_GNUC_CONST; -#define G_TYPE_SOCKET_PROTOCOL (g_socket_protocol_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_zlib_compressor_format_get_type (void) G_GNUC_CONST; -#define G_TYPE_ZLIB_COMPRESSOR_FORMAT (g_zlib_compressor_format_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_unix_socket_address_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_UNIX_SOCKET_ADDRESS_TYPE (g_unix_socket_address_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_bus_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_BUS_TYPE (g_bus_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_bus_name_owner_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_BUS_NAME_OWNER_FLAGS (g_bus_name_owner_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_bus_name_watcher_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_BUS_NAME_WATCHER_FLAGS (g_bus_name_watcher_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_proxy_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_PROXY_FLAGS (g_dbus_proxy_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_error_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_ERROR (g_dbus_error_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_connection_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_CONNECTION_FLAGS (g_dbus_connection_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_capability_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_CAPABILITY_FLAGS (g_dbus_capability_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_call_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_CALL_FLAGS (g_dbus_call_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_message_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_MESSAGE_TYPE (g_dbus_message_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_message_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_MESSAGE_FLAGS (g_dbus_message_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_message_header_field_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_MESSAGE_HEADER_FIELD (g_dbus_message_header_field_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_property_info_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_PROPERTY_INFO_FLAGS (g_dbus_property_info_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_subtree_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_SUBTREE_FLAGS (g_dbus_subtree_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_server_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_SERVER_FLAGS (g_dbus_server_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_signal_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_SIGNAL_FLAGS (g_dbus_signal_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_send_message_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_SEND_MESSAGE_FLAGS (g_dbus_send_message_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_credentials_type_get_type (void) G_GNUC_CONST; -#define G_TYPE_CREDENTIALS_TYPE (g_credentials_type_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_message_byte_order_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_MESSAGE_BYTE_ORDER (g_dbus_message_byte_order_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_application_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_APPLICATION_FLAGS (g_application_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_error_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_ERROR (g_tls_error_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_certificate_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_CERTIFICATE_FLAGS (g_tls_certificate_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_authentication_mode_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_AUTHENTICATION_MODE (g_tls_authentication_mode_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_rehandshake_mode_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_REHANDSHAKE_MODE (g_tls_rehandshake_mode_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_password_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_PASSWORD_FLAGS (g_tls_password_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_interaction_result_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_INTERACTION_RESULT (g_tls_interaction_result_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_interface_skeleton_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_INTERFACE_SKELETON_FLAGS (g_dbus_interface_skeleton_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_dbus_object_manager_client_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_DBUS_OBJECT_MANAGER_CLIENT_FLAGS (g_dbus_object_manager_client_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_database_verify_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_DATABASE_VERIFY_FLAGS (g_tls_database_verify_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_tls_database_lookup_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_TLS_DATABASE_LOOKUP_FLAGS (g_tls_database_lookup_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_io_module_scope_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_IO_MODULE_SCOPE_FLAGS (g_io_module_scope_flags_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_socket_client_event_get_type (void) G_GNUC_CONST; -#define G_TYPE_SOCKET_CLIENT_EVENT (g_socket_client_event_get_type ()) -GLIB_AVAILABLE_IN_ALL GType g_test_dbus_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_TEST_DBUS_FLAGS (g_test_dbus_flags_get_type ()) - -/* enumerations from "gsettings.h" */ -GLIB_AVAILABLE_IN_ALL GType g_settings_bind_flags_get_type (void) G_GNUC_CONST; -#define G_TYPE_SETTINGS_BIND_FLAGS (g_settings_bind_flags_get_type ()) -G_END_DECLS - -#endif /* __GIO_ENUM_TYPES_H__ */ - -/* Generated data ends here */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioerror.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioerror.h deleted file mode 100644 index ed23df4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioerror.h +++ /dev/null @@ -1,55 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_IO_ERROR_H__ -#define __G_IO_ERROR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * G_IO_ERROR: - * - * Error domain for GIO. Errors in this domain will be from the #GIOErrorEnum enumeration. - * See #GError for more information on error domains. - **/ -#define G_IO_ERROR g_io_error_quark() - -GLIB_AVAILABLE_IN_ALL -GQuark g_io_error_quark (void); -GLIB_AVAILABLE_IN_ALL -GIOErrorEnum g_io_error_from_errno (gint err_no); - -#ifdef G_OS_WIN32 -GLIB_AVAILABLE_IN_ALL -GIOErrorEnum g_io_error_from_win32_error (gint error_code); -#endif - -G_END_DECLS - -#endif /* __G_IO_ERROR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giomodule.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giomodule.h deleted file mode 100644 index b0aedeb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giomodule.h +++ /dev/null @@ -1,167 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_IO_MODULE_H__ -#define __G_IO_MODULE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GIOModuleScope GIOModuleScope; - -GLIB_AVAILABLE_IN_2_30 -GIOModuleScope * g_io_module_scope_new (GIOModuleScopeFlags flags); -GLIB_AVAILABLE_IN_2_30 -void g_io_module_scope_free (GIOModuleScope *scope); -GLIB_AVAILABLE_IN_2_30 -void g_io_module_scope_block (GIOModuleScope *scope, - const gchar *basename); - -#define G_IO_TYPE_MODULE (g_io_module_get_type ()) -#define G_IO_MODULE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_IO_TYPE_MODULE, GIOModule)) -#define G_IO_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_IO_TYPE_MODULE, GIOModuleClass)) -#define G_IO_IS_MODULE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_IO_TYPE_MODULE)) -#define G_IO_IS_MODULE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_IO_TYPE_MODULE)) -#define G_IO_MODULE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_IO_TYPE_MODULE, GIOModuleClass)) - -/** - * GIOModule: - * - * Opaque module base class for extending GIO. - **/ -typedef struct _GIOModuleClass GIOModuleClass; - -GLIB_AVAILABLE_IN_ALL -GType g_io_module_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GIOModule *g_io_module_new (const gchar *filename); - -GLIB_AVAILABLE_IN_ALL -void g_io_modules_scan_all_in_directory (const char *dirname); -GLIB_AVAILABLE_IN_ALL -GList *g_io_modules_load_all_in_directory (const gchar *dirname); - -GLIB_AVAILABLE_IN_2_30 -void g_io_modules_scan_all_in_directory_with_scope (const gchar *dirname, - GIOModuleScope *scope); -GLIB_AVAILABLE_IN_2_30 -GList *g_io_modules_load_all_in_directory_with_scope (const gchar *dirname, - GIOModuleScope *scope); - -GLIB_AVAILABLE_IN_ALL -GIOExtensionPoint *g_io_extension_point_register (const char *name); -GLIB_AVAILABLE_IN_ALL -GIOExtensionPoint *g_io_extension_point_lookup (const char *name); -GLIB_AVAILABLE_IN_ALL -void g_io_extension_point_set_required_type (GIOExtensionPoint *extension_point, - GType type); -GLIB_AVAILABLE_IN_ALL -GType g_io_extension_point_get_required_type (GIOExtensionPoint *extension_point); -GLIB_AVAILABLE_IN_ALL -GList *g_io_extension_point_get_extensions (GIOExtensionPoint *extension_point); -GLIB_AVAILABLE_IN_ALL -GIOExtension * g_io_extension_point_get_extension_by_name (GIOExtensionPoint *extension_point, - const char *name); -GLIB_AVAILABLE_IN_ALL -GIOExtension * g_io_extension_point_implement (const char *extension_point_name, - GType type, - const char *extension_name, - gint priority); - -GLIB_AVAILABLE_IN_ALL -GType g_io_extension_get_type (GIOExtension *extension); -GLIB_AVAILABLE_IN_ALL -const char * g_io_extension_get_name (GIOExtension *extension); -GLIB_AVAILABLE_IN_ALL -gint g_io_extension_get_priority (GIOExtension *extension); -GLIB_AVAILABLE_IN_ALL -GTypeClass* g_io_extension_ref_class (GIOExtension *extension); - - -/* API for the modules to implement */ - -/** - * g_io_module_load: - * @module: a #GIOModule. - * - * Required API for GIO modules to implement. - * This function is ran after the module has been loaded into GIO, - * to initialize the module. - **/ -GLIB_AVAILABLE_IN_ALL -void g_io_module_load (GIOModule *module); - -/** - * g_io_module_unload: - * @module: a #GIOModule. - * - * Required API for GIO modules to implement. - * This function is ran when the module is being unloaded from GIO, - * to finalize the module. - **/ -GLIB_AVAILABLE_IN_ALL -void g_io_module_unload (GIOModule *module); - -/** - * g_io_module_query: - * - * Optional API for GIO modules to implement. - * - * Should return a list of all the extension points that may be - * implemented in this module. - * - * This method will not be called in normal use, however it may be - * called when probing existing modules and recording which extension - * points that this model is used for. This means we won't have to - * load and initialze this module unless its needed. - * - * If this function is not implemented by the module the module will - * always be loaded, initialized and then unloaded on application startup - * so that it can register its extension points during init. - * - * Note that a module need not actually implement all the extension points - * that g_io_module_query returns, since the exact list of extension may - * depend on runtime issues. However all extension points actually implemented - * must be returned by g_io_module_query() (if defined). - * - * When installing a module that implements g_io_module_query you must - * run gio-querymodules in order to build the cache files required for - * lazy loading. - * - * Returns: (transfer full): A %NULL-terminated array of strings, listing the supported - * extension points of the module. The array must be suitable for - * freeing with g_strfreev(). - * - * Since: 2.24 - **/ -GLIB_AVAILABLE_IN_ALL -char **g_io_module_query (void); - -G_END_DECLS - -#endif /* __G_IO_MODULE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioscheduler.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioscheduler.h deleted file mode 100644 index c044b82..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gioscheduler.h +++ /dev/null @@ -1,56 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_IO_SCHEDULER_H__ -#define __G_IO_SCHEDULER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -GLIB_DEPRECATED_IN_2_36_FOR ("GThreadPool or g_task_run_in_thread") -void g_io_scheduler_push_job (GIOSchedulerJobFunc job_func, - gpointer user_data, - GDestroyNotify notify, - gint io_priority, - GCancellable *cancellable); -GLIB_DEPRECATED_IN_2_36 -void g_io_scheduler_cancel_all_jobs (void); -GLIB_DEPRECATED_IN_2_36_FOR (g_main_context_invoke) -gboolean g_io_scheduler_job_send_to_mainloop (GIOSchedulerJob *job, - GSourceFunc func, - gpointer user_data, - GDestroyNotify notify); -GLIB_DEPRECATED_IN_2_36_FOR (g_main_context_invoke) -void g_io_scheduler_job_send_to_mainloop_async (GIOSchedulerJob *job, - GSourceFunc func, - gpointer user_data, - GDestroyNotify notify); - -G_END_DECLS - -#endif /* __G_IO_SCHEDULER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giostream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giostream.h deleted file mode 100644 index 561b0e9..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giostream.h +++ /dev/null @@ -1,135 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2008, 2009 Codethink Limited - * Copyright © 2009 Red Hat, Inc. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * See the included COPYING file for more information. - * - * Authors: Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_IO_STREAM_H__ -#define __G_IO_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_IO_STREAM (g_io_stream_get_type ()) -#define G_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_IO_STREAM, GIOStream)) -#define G_IO_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_IO_STREAM, GIOStreamClass)) -#define G_IS_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_IO_STREAM)) -#define G_IS_IO_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_IO_STREAM)) -#define G_IO_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_IO_STREAM, GIOStreamClass)) - -typedef struct _GIOStreamPrivate GIOStreamPrivate; -typedef struct _GIOStreamClass GIOStreamClass; - -/** - * GIOStream: - * - * Base class for read-write streams. - **/ -struct _GIOStream -{ - GObject parent_instance; - - /*< private >*/ - GIOStreamPrivate *priv; -}; - -struct _GIOStreamClass -{ - GObjectClass parent_class; - - GInputStream * (*get_input_stream) (GIOStream *stream); - GOutputStream * (*get_output_stream) (GIOStream *stream); - - gboolean (* close_fn) (GIOStream *stream, - GCancellable *cancellable, - GError **error); - void (* close_async) (GIOStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* close_finish) (GIOStream *stream, - GAsyncResult *result, - GError **error); - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); - void (*_g_reserved8) (void); - void (*_g_reserved9) (void); - void (*_g_reserved10) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_io_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GInputStream * g_io_stream_get_input_stream (GIOStream *stream); -GLIB_AVAILABLE_IN_ALL -GOutputStream *g_io_stream_get_output_stream (GIOStream *stream); - -GLIB_AVAILABLE_IN_ALL -void g_io_stream_splice_async (GIOStream *stream1, - GIOStream *stream2, - GIOStreamSpliceFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_splice_finish (GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_close (GIOStream *stream, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_io_stream_close_async (GIOStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_close_finish (GIOStream *stream, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_is_closed (GIOStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_has_pending (GIOStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_io_stream_set_pending (GIOStream *stream, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_io_stream_clear_pending (GIOStream *stream); - -G_END_DECLS - -#endif /* __G_IO_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giotypes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giotypes.h deleted file mode 100644 index fdf7202..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/giotypes.h +++ /dev/null @@ -1,518 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __GIO_TYPES_H__ -#define __GIO_TYPES_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GAppLaunchContext GAppLaunchContext; -typedef struct _GAppInfo GAppInfo; /* Dummy typedef */ -typedef struct _GAsyncResult GAsyncResult; /* Dummy typedef */ -typedef struct _GAsyncInitable GAsyncInitable; -typedef struct _GBufferedInputStream GBufferedInputStream; -typedef struct _GBufferedOutputStream GBufferedOutputStream; -typedef struct _GCancellable GCancellable; -typedef struct _GCharsetConverter GCharsetConverter; -typedef struct _GConverter GConverter; -typedef struct _GConverterInputStream GConverterInputStream; -typedef struct _GConverterOutputStream GConverterOutputStream; -typedef struct _GDataInputStream GDataInputStream; -typedef struct _GSimplePermission GSimplePermission; -typedef struct _GZlibCompressor GZlibCompressor; -typedef struct _GZlibDecompressor GZlibDecompressor; - -typedef struct _GSimpleActionGroup GSimpleActionGroup; -typedef struct _GRemoteActionGroup GRemoteActionGroup; -typedef struct _GDBusActionGroup GDBusActionGroup; -typedef struct _GActionMap GActionMap; -typedef struct _GActionGroup GActionGroup; -typedef struct _GPropertyAction GPropertyAction; -typedef struct _GSimpleAction GSimpleAction; -typedef struct _GAction GAction; -typedef struct _GApplication GApplication; -typedef struct _GApplicationCommandLine GApplicationCommandLine; -typedef struct _GSettingsBackend GSettingsBackend; -typedef struct _GSettings GSettings; -typedef struct _GPermission GPermission; - -typedef struct _GMenuModel GMenuModel; - -/** - * GDrive: - * - * Opaque drive object. - **/ -typedef struct _GDrive GDrive; /* Dummy typedef */ -typedef struct _GFileEnumerator GFileEnumerator; -typedef struct _GFileMonitor GFileMonitor; -typedef struct _GFilterInputStream GFilterInputStream; -typedef struct _GFilterOutputStream GFilterOutputStream; - -/** - * GFile: - * - * A handle to an object implementing the #GFileIface interface. - * Generally stores a location within the file system. Handles do not - * necessarily represent files or directories that currently exist. - **/ -typedef struct _GFile GFile; /* Dummy typedef */ -typedef struct _GFileInfo GFileInfo; - -/** - * GFileAttributeMatcher: - * - * Determines if a string matches a file attribute. - **/ -typedef struct _GFileAttributeMatcher GFileAttributeMatcher; -typedef struct _GFileAttributeInfo GFileAttributeInfo; -typedef struct _GFileAttributeInfoList GFileAttributeInfoList; -typedef struct _GFileDescriptorBased GFileDescriptorBased; -typedef struct _GFileInputStream GFileInputStream; -typedef struct _GFileOutputStream GFileOutputStream; -typedef struct _GFileIOStream GFileIOStream; -typedef struct _GFileIcon GFileIcon; -typedef struct _GFilenameCompleter GFilenameCompleter; - - -typedef struct _GIcon GIcon; /* Dummy typedef */ -typedef struct _GInetAddress GInetAddress; -typedef struct _GInetAddressMask GInetAddressMask; -typedef struct _GInetSocketAddress GInetSocketAddress; -typedef struct _GInputStream GInputStream; -typedef struct _GInitable GInitable; -typedef struct _GIOModule GIOModule; -typedef struct _GIOExtensionPoint GIOExtensionPoint; -typedef struct _GIOExtension GIOExtension; - -/** - * GIOSchedulerJob: - * - * Opaque class for defining and scheduling IO jobs. - **/ -typedef struct _GIOSchedulerJob GIOSchedulerJob; -typedef struct _GIOStreamAdapter GIOStreamAdapter; -typedef struct _GLoadableIcon GLoadableIcon; /* Dummy typedef */ -typedef struct _GBytesIcon GBytesIcon; -typedef struct _GMemoryInputStream GMemoryInputStream; -typedef struct _GMemoryOutputStream GMemoryOutputStream; - -/** - * GMount: - * - * A handle to an object implementing the #GMountIface interface. - **/ -typedef struct _GMount GMount; /* Dummy typedef */ -typedef struct _GMountOperation GMountOperation; -typedef struct _GNetworkAddress GNetworkAddress; -typedef struct _GNetworkMonitor GNetworkMonitor; -typedef struct _GNetworkService GNetworkService; -typedef struct _GOutputStream GOutputStream; -typedef struct _GIOStream GIOStream; -typedef struct _GPollableInputStream GPollableInputStream; /* Dummy typedef */ -typedef struct _GPollableOutputStream GPollableOutputStream; /* Dummy typedef */ -typedef struct _GResolver GResolver; -/** - * GResource: - * - * A resource bundle. - * - * Since: 2.32 - */ -typedef struct _GResource GResource; -typedef struct _GSeekable GSeekable; -typedef struct _GSimpleAsyncResult GSimpleAsyncResult; - -/** - * GSocket: - * - * A lowlevel network socket object. - * - * Since: 2.22 - **/ -typedef struct _GSocket GSocket; - -/** - * GSocketControlMessage: - * - * Base class for socket-type specific control messages that can be sent and - * received over #GSocket. - **/ -typedef struct _GSocketControlMessage GSocketControlMessage; -/** - * GSocketClient: - * - * A helper class for network clients to make connections. - * - * Since: 2.22 - **/ -typedef struct _GSocketClient GSocketClient; -/** - * GSocketConnection: - * - * A socket connection GIOStream object for connection-oriented sockets. - * - * Since: 2.22 - **/ -typedef struct _GSocketConnection GSocketConnection; -/** - * GSocketListener: - * - * A helper class for network servers to listen for and accept connections. - * - * Since: 2.22 - **/ -typedef struct _GSocketListener GSocketListener; -/** - * GSocketService: - * - * A helper class for handling accepting incomming connections in the - * glib mainloop. - * - * Since: 2.22 - **/ -typedef struct _GSocketService GSocketService; -typedef struct _GSocketAddress GSocketAddress; -typedef struct _GSocketAddressEnumerator GSocketAddressEnumerator; -typedef struct _GSocketConnectable GSocketConnectable; -typedef struct _GSrvTarget GSrvTarget; -typedef struct _GTask GTask; -/** - * GTcpConnection: - * - * A #GSocketConnection for TCP/IP connections. - * - * Since: 2.22 - **/ -typedef struct _GTcpConnection GTcpConnection; -typedef struct _GTcpWrapperConnection GTcpWrapperConnection; -/** - * GThreadedSocketService: - * - * A helper class for handling accepting incoming connections in the - * glib mainloop and handling them in a thread. - * - * Since: 2.22 - **/ -typedef struct _GThreadedSocketService GThreadedSocketService; -typedef struct _GThemedIcon GThemedIcon; -typedef struct _GTlsCertificate GTlsCertificate; -typedef struct _GTlsClientConnection GTlsClientConnection; /* Dummy typedef */ -typedef struct _GTlsConnection GTlsConnection; -typedef struct _GTlsDatabase GTlsDatabase; -typedef struct _GTlsFileDatabase GTlsFileDatabase; -typedef struct _GTlsInteraction GTlsInteraction; -typedef struct _GTlsPassword GTlsPassword; -typedef struct _GTlsServerConnection GTlsServerConnection; /* Dummy typedef */ -typedef struct _GVfs GVfs; /* Dummy typedef */ - -/** - * GProxyResolver: - * - * A helper class to enumerate proxies base on URI. - * - * Since: 2.26 - **/ -typedef struct _GProxyResolver GProxyResolver; -typedef struct _GProxy GProxy; -typedef struct _GProxyAddress GProxyAddress; -typedef struct _GProxyAddressEnumerator GProxyAddressEnumerator; - -/** - * GVolume: - * - * Opaque mountable volume object. - **/ -typedef struct _GVolume GVolume; /* Dummy typedef */ -typedef struct _GVolumeMonitor GVolumeMonitor; - -/** - * GAsyncReadyCallback: - * @source_object: the object the asynchronous operation was started with. - * @res: a #GAsyncResult. - * @user_data: user data passed to the callback. - * - * Type definition for a function that will be called back when an asynchronous - * operation within GIO has been completed. - **/ -typedef void (*GAsyncReadyCallback) (GObject *source_object, - GAsyncResult *res, - gpointer user_data); - -/** - * GFileProgressCallback: - * @current_num_bytes: the current number of bytes in the operation. - * @total_num_bytes: the total number of bytes in the operation. - * @user_data: user data passed to the callback. - * - * When doing file operations that may take a while, such as moving - * a file or copying a file, a progress callback is used to pass how - * far along that operation is to the application. - **/ -typedef void (*GFileProgressCallback) (goffset current_num_bytes, - goffset total_num_bytes, - gpointer user_data); - -/** - * GFileReadMoreCallback: - * @file_contents: the data as currently read. - * @file_size: the size of the data currently read. - * @callback_data: data passed to the callback. - * - * When loading the partial contents of a file with g_file_load_partial_contents_async(), - * it may become necessary to determine if any more data from the file should be loaded. - * A #GFileReadMoreCallback function facilitates this by returning %TRUE if more data - * should be read, or %FALSE otherwise. - * - * Returns: %TRUE if more data should be read back. %FALSE otherwise. - **/ -typedef gboolean (* GFileReadMoreCallback) (const char *file_contents, - goffset file_size, - gpointer callback_data); - -/** - * GFileMeasureProgressCallback: - * @reporting: %TRUE if more reports will come - * @current_size: the current cumulative size measurement - * @num_dirs: the number of directories visited so far - * @num_files: the number of non-directory files encountered - * @user_data: the data passed to the original request for this callback - * - * This callback type is used by g_file_measure_disk_usage() to make - * periodic progress reports when measuring the amount of disk spaced - * used by a directory. - * - * These calls are made on a best-effort basis and not all types of - * #GFile will support them. At the minimum, however, one call will - * always be made immediately. - * - * In the case that there is no support, @reporting will be set to - * %FALSE (and the other values undefined) and no further calls will be - * made. Otherwise, the @reporting will be %TRUE and the other values - * all-zeros during the first (immediate) call. In this way, you can - * know which type of progress UI to show without a delay. - * - * For g_file_measure_disk_usage() the callback is made directly. For - * g_file_measure_disk_usage_async() the callback is made via the - * default main context of the calling thread (ie: the same way that the - * final async result would be reported). - * - * @current_size is in the same units as requested by the operation (see - * %G_FILE_DISK_USAGE_APPARENT_SIZE). - * - * The frequency of the updates is implementation defined, but is - * ideally about once every 200ms. - * - * The last progress callback may or may not be equal to the final - * result. Always check the async result to get the final value. - * - * Since: 2.38 - **/ -typedef void (* GFileMeasureProgressCallback) (gboolean reporting, - guint64 current_size, - guint64 num_dirs, - guint64 num_files, - gpointer user_data); - -/** - * GIOSchedulerJobFunc: - * @job: a #GIOSchedulerJob. - * @cancellable: optional #GCancellable object, %NULL to ignore. - * @user_data: the data to pass to callback function - * - * I/O Job function. - * - * Long-running jobs should periodically check the @cancellable - * to see if they have been cancelled. - * - * Returns: %TRUE if this function should be called again to - * complete the job, %FALSE if the job is complete (or cancelled) - **/ -typedef gboolean (*GIOSchedulerJobFunc) (GIOSchedulerJob *job, - GCancellable *cancellable, - gpointer user_data); - -/** - * GSimpleAsyncThreadFunc: - * @res: a #GSimpleAsyncResult. - * @object: a #GObject. - * @cancellable: optional #GCancellable object, %NULL to ignore. - * - * Simple thread function that runs an asynchronous operation and - * checks for cancellation. - **/ -typedef void (*GSimpleAsyncThreadFunc) (GSimpleAsyncResult *res, - GObject *object, - GCancellable *cancellable); - -/** - * GSocketSourceFunc: - * @socket: the #GSocket - * @condition: the current condition at the source fired. - * @user_data: data passed in by the user. - * - * This is the function type of the callback used for the #GSource - * returned by g_socket_create_source(). - * - * Returns: it should return %FALSE if the source should be removed. - * - * Since: 2.22 - */ -typedef gboolean (*GSocketSourceFunc) (GSocket *socket, - GIOCondition condition, - gpointer user_data); - -/** - * GInputVector: - * @buffer: Pointer to a buffer where data will be written. - * @size: the available size in @buffer. - * - * Structure used for scatter/gather data input. - * You generally pass in an array of #GInputVectors - * and the operation will store the read data starting in the - * first buffer, switching to the next as needed. - * - * Since: 2.22 - */ -typedef struct _GInputVector GInputVector; - -struct _GInputVector { - gpointer buffer; - gsize size; -}; - -/** - * GOutputVector: - * @buffer: Pointer to a buffer of data to read. - * @size: the size of @buffer. - * - * Structure used for scatter/gather data output. - * You generally pass in an array of #GOutputVectors - * and the operation will use all the buffers as if they were - * one buffer. - * - * Since: 2.22 - */ -typedef struct _GOutputVector GOutputVector; - -struct _GOutputVector { - gconstpointer buffer; - gsize size; -}; - -typedef struct _GCredentials GCredentials; -typedef struct _GUnixCredentialsMessage GUnixCredentialsMessage; -typedef struct _GUnixFDList GUnixFDList; -typedef struct _GDBusMessage GDBusMessage; -typedef struct _GDBusConnection GDBusConnection; -typedef struct _GDBusProxy GDBusProxy; -typedef struct _GDBusMethodInvocation GDBusMethodInvocation; -typedef struct _GDBusServer GDBusServer; -typedef struct _GDBusAuthObserver GDBusAuthObserver; -typedef struct _GDBusErrorEntry GDBusErrorEntry; -typedef struct _GDBusInterfaceVTable GDBusInterfaceVTable; -typedef struct _GDBusSubtreeVTable GDBusSubtreeVTable; -typedef struct _GDBusAnnotationInfo GDBusAnnotationInfo; -typedef struct _GDBusArgInfo GDBusArgInfo; -typedef struct _GDBusMethodInfo GDBusMethodInfo; -typedef struct _GDBusSignalInfo GDBusSignalInfo; -typedef struct _GDBusPropertyInfo GDBusPropertyInfo; -typedef struct _GDBusInterfaceInfo GDBusInterfaceInfo; -typedef struct _GDBusNodeInfo GDBusNodeInfo; - -/** - * GCancellableSourceFunc: - * @cancellable: the #GCancellable - * @user_data: data passed in by the user. - * - * This is the function type of the callback used for the #GSource - * returned by g_cancellable_source_new(). - * - * Returns: it should return %FALSE if the source should be removed. - * - * Since: 2.28 - */ -typedef gboolean (*GCancellableSourceFunc) (GCancellable *cancellable, - gpointer user_data); - -/** - * GPollableSourceFunc: - * @pollable_stream: the #GPollableInputStream or #GPollableOutputStream - * @user_data: data passed in by the user. - * - * This is the function type of the callback used for the #GSource - * returned by g_pollable_input_stream_create_source() and - * g_pollable_output_stream_create_source(). - * - * Returns: it should return %FALSE if the source should be removed. - * - * Since: 2.28 - */ -typedef gboolean (*GPollableSourceFunc) (GObject *pollable_stream, - gpointer user_data); - -typedef struct _GDBusInterface GDBusInterface; /* Dummy typedef */ -typedef struct _GDBusInterfaceSkeleton GDBusInterfaceSkeleton; -typedef struct _GDBusObject GDBusObject; /* Dummy typedef */ -typedef struct _GDBusObjectSkeleton GDBusObjectSkeleton; -typedef struct _GDBusObjectProxy GDBusObjectProxy; -typedef struct _GDBusObjectManager GDBusObjectManager; /* Dummy typedef */ -typedef struct _GDBusObjectManagerClient GDBusObjectManagerClient; -typedef struct _GDBusObjectManagerServer GDBusObjectManagerServer; - -/** - * GDBusProxyTypeFunc: - * @manager: A #GDBusObjectManagerClient. - * @object_path: The object path of the remote object. - * @interface_name: (allow-none): The interface name of the remote object or %NULL if a #GDBusObjectProxy #GType is requested. - * @user_data: User data. - * - * Function signature for a function used to determine the #GType to - * use for an interface proxy (if @interface_name is not %NULL) or - * object proxy (if @interface_name is %NULL). - * - * This function is called in the - * thread-default main loop - * that @manager was constructed in. - * - * Returns: A #GType to use for the remote object. The returned type - * must be a #GDBusProxy- or #GDBusObjectProxy-derived - * type. - * - * Since: 2.30 - */ -typedef GType (*GDBusProxyTypeFunc) (GDBusObjectManagerClient *manager, - const gchar *object_path, - const gchar *interface_name, - gpointer user_data); - -typedef struct _GTestDBus GTestDBus; - -G_END_DECLS - -#endif /* __GIO_TYPES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gloadableicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gloadableicon.h deleted file mode 100644 index 5bdece8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gloadableicon.h +++ /dev/null @@ -1,101 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_LOADABLE_ICON_H__ -#define __G_LOADABLE_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_LOADABLE_ICON (g_loadable_icon_get_type ()) -#define G_LOADABLE_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_LOADABLE_ICON, GLoadableIcon)) -#define G_IS_LOADABLE_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_LOADABLE_ICON)) -#define G_LOADABLE_ICON_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_LOADABLE_ICON, GLoadableIconIface)) - -/** - * GLoadableIcon: - * - * Generic type for all kinds of icons that can be loaded - * as a stream. - **/ -typedef struct _GLoadableIconIface GLoadableIconIface; - -/** - * GLoadableIconIface: - * @g_iface: The parent interface. - * @load: Loads an icon. - * @load_async: Loads an icon asynchronously. - * @load_finish: Finishes an asynchronous icon load. - * - * Interface for icons that can be loaded as a stream. - **/ -struct _GLoadableIconIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GInputStream * (* load) (GLoadableIcon *icon, - int size, - char **type, - GCancellable *cancellable, - GError **error); - void (* load_async) (GLoadableIcon *icon, - int size, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GInputStream * (* load_finish) (GLoadableIcon *icon, - GAsyncResult *res, - char **type, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_loadable_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GInputStream *g_loadable_icon_load (GLoadableIcon *icon, - int size, - char **type, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_loadable_icon_load_async (GLoadableIcon *icon, - int size, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GInputStream *g_loadable_icon_load_finish (GLoadableIcon *icon, - GAsyncResult *res, - char **type, - GError **error); - -G_END_DECLS - -#endif /* __G_LOADABLE_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryinputstream.h deleted file mode 100644 index 607c4bb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryinputstream.h +++ /dev/null @@ -1,92 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_MEMORY_INPUT_STREAM_H__ -#define __G_MEMORY_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_MEMORY_INPUT_STREAM (g_memory_input_stream_get_type ()) -#define G_MEMORY_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_MEMORY_INPUT_STREAM, GMemoryInputStream)) -#define G_MEMORY_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_MEMORY_INPUT_STREAM, GMemoryInputStreamClass)) -#define G_IS_MEMORY_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_MEMORY_INPUT_STREAM)) -#define G_IS_MEMORY_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_MEMORY_INPUT_STREAM)) -#define G_MEMORY_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_MEMORY_INPUT_STREAM, GMemoryInputStreamClass)) - -/** - * GMemoryInputStream: - * - * Implements #GInputStream for arbitrary memory chunks. - **/ -typedef struct _GMemoryInputStreamClass GMemoryInputStreamClass; -typedef struct _GMemoryInputStreamPrivate GMemoryInputStreamPrivate; - -struct _GMemoryInputStream -{ - GInputStream parent_instance; - - /*< private >*/ - GMemoryInputStreamPrivate *priv; -}; - -struct _GMemoryInputStreamClass -{ - GInputStreamClass parent_class; - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_memory_input_stream_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GInputStream * g_memory_input_stream_new (void); -GLIB_AVAILABLE_IN_ALL -GInputStream * g_memory_input_stream_new_from_data (const void *data, - gssize len, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_2_34 -GInputStream * g_memory_input_stream_new_from_bytes (GBytes *bytes); - -GLIB_AVAILABLE_IN_ALL -void g_memory_input_stream_add_data (GMemoryInputStream *stream, - const void *data, - gssize len, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_2_34 -void g_memory_input_stream_add_bytes (GMemoryInputStream *stream, - GBytes *bytes); - -G_END_DECLS - -#endif /* __G_MEMORY_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryoutputstream.h deleted file mode 100644 index b95d101..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmemoryoutputstream.h +++ /dev/null @@ -1,109 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Christian Kellner - */ - -#ifndef __G_MEMORY_OUTPUT_STREAM_H__ -#define __G_MEMORY_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_MEMORY_OUTPUT_STREAM (g_memory_output_stream_get_type ()) -#define G_MEMORY_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_MEMORY_OUTPUT_STREAM, GMemoryOutputStream)) -#define G_MEMORY_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_MEMORY_OUTPUT_STREAM, GMemoryOutputStreamClass)) -#define G_IS_MEMORY_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_MEMORY_OUTPUT_STREAM)) -#define G_IS_MEMORY_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_MEMORY_OUTPUT_STREAM)) -#define G_MEMORY_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_MEMORY_OUTPUT_STREAM, GMemoryOutputStreamClass)) - -/** - * GMemoryOutputStream: - * - * Implements #GOutputStream for arbitrary memory chunks. - **/ -typedef struct _GMemoryOutputStreamClass GMemoryOutputStreamClass; -typedef struct _GMemoryOutputStreamPrivate GMemoryOutputStreamPrivate; - -struct _GMemoryOutputStream -{ - GOutputStream parent_instance; - - /*< private >*/ - GMemoryOutputStreamPrivate *priv; -}; - -struct _GMemoryOutputStreamClass -{ - GOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -/** - * GReallocFunc: - * @data: memory block to reallocate - * @size: size to reallocate @data to - * - * Changes the size of the memory block pointed to by @data to - * @size bytes. - * - * The function should have the same semantics as realloc(). - * - * Returns: a pointer to the reallocated memory - */ -typedef gpointer (* GReallocFunc) (gpointer data, - gsize size); - -GLIB_AVAILABLE_IN_ALL -GType g_memory_output_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GOutputStream *g_memory_output_stream_new (gpointer data, - gsize size, - GReallocFunc realloc_function, - GDestroyNotify destroy_function); -GLIB_AVAILABLE_IN_2_36 -GOutputStream *g_memory_output_stream_new_resizable (void); -GLIB_AVAILABLE_IN_ALL -gpointer g_memory_output_stream_get_data (GMemoryOutputStream *ostream); -GLIB_AVAILABLE_IN_ALL -gsize g_memory_output_stream_get_size (GMemoryOutputStream *ostream); -GLIB_AVAILABLE_IN_ALL -gsize g_memory_output_stream_get_data_size (GMemoryOutputStream *ostream); -GLIB_AVAILABLE_IN_ALL -gpointer g_memory_output_stream_steal_data (GMemoryOutputStream *ostream); - -GLIB_AVAILABLE_IN_2_34 -GBytes * g_memory_output_stream_steal_as_bytes (GMemoryOutputStream *ostream); - -G_END_DECLS - -#endif /* __G_MEMORY_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenu.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenu.h deleted file mode 100644 index 68a974f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenu.h +++ /dev/null @@ -1,184 +0,0 @@ -/* - * Copyright © 2011 Canonical Ltd. - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_MENU_H__ -#define __G_MENU_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_MENU (g_menu_get_type ()) -#define G_MENU(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_MENU, GMenu)) -#define G_IS_MENU(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_MENU)) - -#define G_TYPE_MENU_ITEM (g_menu_item_get_type ()) -#define G_MENU_ITEM(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_MENU_ITEM, GMenuItem)) -#define G_IS_MENU_ITEM(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_MENU_ITEM)) - -typedef struct _GMenuItem GMenuItem; -typedef struct _GMenu GMenu; - -GLIB_AVAILABLE_IN_2_32 -GType g_menu_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_32 -GMenu * g_menu_new (void); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_freeze (GMenu *menu); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_insert_item (GMenu *menu, - gint position, - GMenuItem *item); -GLIB_AVAILABLE_IN_2_32 -void g_menu_prepend_item (GMenu *menu, - GMenuItem *item); -GLIB_AVAILABLE_IN_2_32 -void g_menu_append_item (GMenu *menu, - GMenuItem *item); -GLIB_AVAILABLE_IN_2_32 -void g_menu_remove (GMenu *menu, - gint position); - -GLIB_AVAILABLE_IN_2_38 -void g_menu_remove_all (GMenu *menu); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_insert (GMenu *menu, - gint position, - const gchar *label, - const gchar *detailed_action); -GLIB_AVAILABLE_IN_2_32 -void g_menu_prepend (GMenu *menu, - const gchar *label, - const gchar *detailed_action); -GLIB_AVAILABLE_IN_2_32 -void g_menu_append (GMenu *menu, - const gchar *label, - const gchar *detailed_action); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_insert_section (GMenu *menu, - gint position, - const gchar *label, - GMenuModel *section); -GLIB_AVAILABLE_IN_2_32 -void g_menu_prepend_section (GMenu *menu, - const gchar *label, - GMenuModel *section); -GLIB_AVAILABLE_IN_2_32 -void g_menu_append_section (GMenu *menu, - const gchar *label, - GMenuModel *section); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_insert_submenu (GMenu *menu, - gint position, - const gchar *label, - GMenuModel *submenu); -GLIB_AVAILABLE_IN_2_32 -void g_menu_prepend_submenu (GMenu *menu, - const gchar *label, - GMenuModel *submenu); -GLIB_AVAILABLE_IN_2_32 -void g_menu_append_submenu (GMenu *menu, - const gchar *label, - GMenuModel *submenu); - - -GLIB_AVAILABLE_IN_2_32 -GType g_menu_item_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_32 -GMenuItem * g_menu_item_new (const gchar *label, - const gchar *detailed_action); - -GLIB_AVAILABLE_IN_2_34 -GMenuItem * g_menu_item_new_from_model (GMenuModel *model, - gint item_index); - -GLIB_AVAILABLE_IN_2_32 -GMenuItem * g_menu_item_new_submenu (const gchar *label, - GMenuModel *submenu); - -GLIB_AVAILABLE_IN_2_32 -GMenuItem * g_menu_item_new_section (const gchar *label, - GMenuModel *section); - -GLIB_AVAILABLE_IN_2_34 -GVariant * g_menu_item_get_attribute_value (GMenuItem *menu_item, - const gchar *attribute, - const GVariantType *expected_type); -GLIB_AVAILABLE_IN_2_34 -gboolean g_menu_item_get_attribute (GMenuItem *menu_item, - const gchar *attribute, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_2_34 -GMenuModel *g_menu_item_get_link (GMenuItem *menu_item, - const gchar *link); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_attribute_value (GMenuItem *menu_item, - const gchar *attribute, - GVariant *value); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_attribute (GMenuItem *menu_item, - const gchar *attribute, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_link (GMenuItem *menu_item, - const gchar *link, - GMenuModel *model); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_label (GMenuItem *menu_item, - const gchar *label); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_submenu (GMenuItem *menu_item, - GMenuModel *submenu); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_section (GMenuItem *menu_item, - GMenuModel *section); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_action_and_target_value (GMenuItem *menu_item, - const gchar *action, - GVariant *target_value); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_action_and_target (GMenuItem *menu_item, - const gchar *action, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_2_32 -void g_menu_item_set_detailed_action (GMenuItem *menu_item, - const gchar *detailed_action); - -GLIB_AVAILABLE_IN_2_38 -void g_menu_item_set_icon (GMenuItem *menu_item, - GIcon *icon); - -G_END_DECLS - -#endif /* __G_MENU_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenuexporter.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenuexporter.h deleted file mode 100644 index 1673b22..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenuexporter.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright © 2011 Canonical Ltd. - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_MENU_EXPORTER_H__ -#define __G_MENU_EXPORTER_H__ - -#include -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_2_32 -guint g_dbus_connection_export_menu_model (GDBusConnection *connection, - const gchar *object_path, - GMenuModel *menu, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -void g_dbus_connection_unexport_menu_model (GDBusConnection *connection, - guint export_id); - -G_END_DECLS - -#endif /* __G_MENU_EXPORTER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenumodel.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenumodel.h deleted file mode 100644 index 7a2e27e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmenumodel.h +++ /dev/null @@ -1,307 +0,0 @@ -/* - * Copyright © 2011 Canonical Ltd. - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_MENU_MODEL_H__ -#define __G_MENU_MODEL_H__ - -#include - -#include - -G_BEGIN_DECLS - -/** - * G_MENU_ATTRIBUTE_ACTION: - * - * The menu item attribute which holds the action name of the item. Action - * names are namespaced with an identifier for the action group in which the - * action resides. For example, "win." for window-specific actions and "app." - * for application-wide actions. - * - * See also g_menu_model_get_item_attribute() and g_menu_item_set_attribute(). - * - * Since: 2.32 - **/ -#define G_MENU_ATTRIBUTE_ACTION "action" - -/** - * G_MENU_ATTRIBUTE_ACTION_NAMESPACE: - * - * The menu item attribute that holds the namespace for all action names in - * menus that are linked from this item. - * - * Since: 2.36 - **/ -#define G_MENU_ATTRIBUTE_ACTION_NAMESPACE "action-namespace" - -/** - * G_MENU_ATTRIBUTE_TARGET: - * - * The menu item attribute which holds the target with which the item's action - * will be activated. - * - * See also g_menu_item_set_action_and_target() - * - * Since: 2.32 - **/ -#define G_MENU_ATTRIBUTE_TARGET "target" - -/** - * G_MENU_ATTRIBUTE_LABEL: - * - * The menu item attribute which holds the label of the item. - * - * Since: 2.32 - **/ -#define G_MENU_ATTRIBUTE_LABEL "label" - -/** - * G_MENU_ATTRIBUTE_ICON: - * - * The menu item attribute which holds the icon of the item. - * - * The icon is stored in the format returned by g_icon_serialize(). - * - * This attribute is intended only to represent 'noun' icons such as - * favicons for a webpage, or application icons. It should not be used - * for 'verbs' (ie: stock icons). - * - * Since: 2.38 - **/ -#define G_MENU_ATTRIBUTE_ICON "icon" - -/** - * G_MENU_LINK_SUBMENU: - * - * The name of the link that associates a menu item with a submenu. - * - * See also g_menu_item_set_link(). - * - * Since: 2.32 - **/ -#define G_MENU_LINK_SUBMENU "submenu" - -/** - * G_MENU_LINK_SECTION: - * - * The name of the link that associates a menu item with a section. The linked - * menu will usually be shown in place of the menu item, using the item's label - * as a header. - * - * See also g_menu_item_set_link(). - * - * Since: 2.32 - **/ -#define G_MENU_LINK_SECTION "section" - -#define G_TYPE_MENU_MODEL (g_menu_model_get_type ()) -#define G_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_MENU_MODEL, GMenuModel)) -#define G_MENU_MODEL_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_MENU_MODEL, GMenuModelClass)) -#define G_IS_MENU_MODEL(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_MENU_MODEL)) -#define G_IS_MENU_MODEL_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_MENU_MODEL)) -#define G_MENU_MODEL_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_MENU_MODEL, GMenuModelClass)) - -typedef struct _GMenuModelPrivate GMenuModelPrivate; -typedef struct _GMenuModelClass GMenuModelClass; - -typedef struct _GMenuAttributeIterPrivate GMenuAttributeIterPrivate; -typedef struct _GMenuAttributeIterClass GMenuAttributeIterClass; -typedef struct _GMenuAttributeIter GMenuAttributeIter; - -typedef struct _GMenuLinkIterPrivate GMenuLinkIterPrivate; -typedef struct _GMenuLinkIterClass GMenuLinkIterClass; -typedef struct _GMenuLinkIter GMenuLinkIter; - -struct _GMenuModel -{ - GObject parent_instance; - GMenuModelPrivate *priv; -}; - -/** - * GMenuModelClass::get_item_attributes: - * @model: the #GMenuModel to query - * @item_index: The #GMenuItem to query - * @attributes: (out) (element-type utf8 GLib.Variant): Attributes on the item - * - * Gets all the attributes associated with the item in the menu model. - */ -/** - * GMenuModelClass::get_item_links: - * @model: the #GMenuModel to query - * @item_index: The #GMenuItem to query - * @links: (out) (element-type utf8 GLib.MenuModel): Links from the item - * - * Gets all the links associated with the item in the menu model. - */ -struct _GMenuModelClass -{ - GObjectClass parent_class; - - gboolean (*is_mutable) (GMenuModel *model); - gint (*get_n_items) (GMenuModel *model); - void (*get_item_attributes) (GMenuModel *model, - gint item_index, - GHashTable **attributes); - GMenuAttributeIter * (*iterate_item_attributes) (GMenuModel *model, - gint item_index); - GVariant * (*get_item_attribute_value) (GMenuModel *model, - gint item_index, - const gchar *attribute, - const GVariantType *expected_type); - void (*get_item_links) (GMenuModel *model, - gint item_index, - GHashTable **links); - GMenuLinkIter * (*iterate_item_links) (GMenuModel *model, - gint item_index); - GMenuModel * (*get_item_link) (GMenuModel *model, - gint item_index, - const gchar *link); -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_menu_model_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_model_is_mutable (GMenuModel *model); -GLIB_AVAILABLE_IN_2_32 -gint g_menu_model_get_n_items (GMenuModel *model); - -GLIB_AVAILABLE_IN_2_32 -GMenuAttributeIter * g_menu_model_iterate_item_attributes (GMenuModel *model, - gint item_index); -GLIB_AVAILABLE_IN_2_32 -GVariant * g_menu_model_get_item_attribute_value (GMenuModel *model, - gint item_index, - const gchar *attribute, - const GVariantType *expected_type); -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_model_get_item_attribute (GMenuModel *model, - gint item_index, - const gchar *attribute, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_2_32 -GMenuLinkIter * g_menu_model_iterate_item_links (GMenuModel *model, - gint item_index); -GLIB_AVAILABLE_IN_2_32 -GMenuModel * g_menu_model_get_item_link (GMenuModel *model, - gint item_index, - const gchar *link); - -GLIB_AVAILABLE_IN_2_32 -void g_menu_model_items_changed (GMenuModel *model, - gint position, - gint removed, - gint added); - - -#define G_TYPE_MENU_ATTRIBUTE_ITER (g_menu_attribute_iter_get_type ()) -#define G_MENU_ATTRIBUTE_ITER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIter)) -#define G_MENU_ATTRIBUTE_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIterClass)) -#define G_IS_MENU_ATTRIBUTE_ITER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_MENU_ATTRIBUTE_ITER)) -#define G_IS_MENU_ATTRIBUTE_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_MENU_ATTRIBUTE_ITER)) -#define G_MENU_ATTRIBUTE_ITER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_MENU_ATTRIBUTE_ITER, GMenuAttributeIterClass)) - -struct _GMenuAttributeIter -{ - GObject parent_instance; - GMenuAttributeIterPrivate *priv; -}; - -struct _GMenuAttributeIterClass -{ - GObjectClass parent_class; - - gboolean (*get_next) (GMenuAttributeIter *iter, - const gchar **out_name, - GVariant **value); -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_menu_attribute_iter_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_attribute_iter_get_next (GMenuAttributeIter *iter, - const gchar **out_name, - GVariant **value); -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_attribute_iter_next (GMenuAttributeIter *iter); -GLIB_AVAILABLE_IN_2_32 -const gchar * g_menu_attribute_iter_get_name (GMenuAttributeIter *iter); -GLIB_AVAILABLE_IN_2_32 -GVariant * g_menu_attribute_iter_get_value (GMenuAttributeIter *iter); - - -#define G_TYPE_MENU_LINK_ITER (g_menu_link_iter_get_type ()) -#define G_MENU_LINK_ITER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_MENU_LINK_ITER, GMenuLinkIter)) -#define G_MENU_LINK_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_MENU_LINK_ITER, GMenuLinkIterClass)) -#define G_IS_MENU_LINK_ITER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_MENU_LINK_ITER)) -#define G_IS_MENU_LINK_ITER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_MENU_LINK_ITER)) -#define G_MENU_LINK_ITER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_MENU_LINK_ITER, GMenuLinkIterClass)) - -struct _GMenuLinkIter -{ - GObject parent_instance; - GMenuLinkIterPrivate *priv; -}; - -struct _GMenuLinkIterClass -{ - GObjectClass parent_class; - - gboolean (*get_next) (GMenuLinkIter *iter, - const gchar **out_link, - GMenuModel **value); -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_menu_link_iter_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_link_iter_get_next (GMenuLinkIter *iter, - const gchar **out_link, - GMenuModel **value); -GLIB_AVAILABLE_IN_2_32 -gboolean g_menu_link_iter_next (GMenuLinkIter *iter); -GLIB_AVAILABLE_IN_2_32 -const gchar * g_menu_link_iter_get_name (GMenuLinkIter *iter); -GLIB_AVAILABLE_IN_2_32 -GMenuModel * g_menu_link_iter_get_value (GMenuLinkIter *iter); - -G_END_DECLS - -#endif /* __G_MENU_MODEL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmount.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmount.h deleted file mode 100644 index 58f5193..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmount.h +++ /dev/null @@ -1,278 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - * David Zeuthen - */ - -#ifndef __G_MOUNT_H__ -#define __G_MOUNT_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_MOUNT (g_mount_get_type ()) -#define G_MOUNT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_MOUNT, GMount)) -#define G_IS_MOUNT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_MOUNT)) -#define G_MOUNT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_MOUNT, GMountIface)) - -typedef struct _GMountIface GMountIface; - -/** - * GMountIface: - * @g_iface: The parent interface. - * @changed: Changed signal that is emitted when the mount's state has changed. - * @unmounted: The unmounted signal that is emitted when the #GMount have been unmounted. If the recipient is holding references to the object they should release them so the object can be finalized. - * @pre_unmount: The ::pre-unmount signal that is emitted when the #GMount will soon be emitted. If the recipient is somehow holding the mount open by keeping an open file on it it should close the file. - * @get_root: Gets a #GFile to the root directory of the #GMount. - * @get_name: Gets a string containing the name of the #GMount. - * @get_icon: Gets a #GIcon for the #GMount. - * @get_uuid: Gets the UUID for the #GMount. The reference is typically based on the file system UUID for the mount in question and should be considered an opaque string. Returns %NULL if there is no UUID available. - * @get_volume: Gets a #GVolume the mount is located on. Returns %NULL if the #GMount is not associated with a #GVolume. - * @get_drive: Gets a #GDrive the volume of the mount is located on. Returns %NULL if the #GMount is not associated with a #GDrive or a #GVolume. This is convenience method for getting the #GVolume and using that to get the #GDrive. - * @can_unmount: Checks if a #GMount can be unmounted. - * @can_eject: Checks if a #GMount can be ejected. - * @unmount: Starts unmounting a #GMount. - * @unmount_finish: Finishes an unmounting operation. - * @eject: Starts ejecting a #GMount. - * @eject_finish: Finishes an eject operation. - * @remount: Starts remounting a #GMount. - * @remount_finish: Finishes a remounting operation. - * @guess_content_type: Starts guessing the type of the content of a #GMount. - * See g_mount_guess_content_type() for more information on content - * type guessing. This operation was added in 2.18. - * @guess_content_type_finish: Finishes a content type guessing operation. Added in 2.18. - * @guess_content_type_sync: Synchronous variant of @guess_content_type. Added in 2.18 - * @unmount_with_operation: Starts unmounting a #GMount using a #GMountOperation. Since 2.22. - * @unmount_with_operation_finish: Finishes an unmounting operation using a #GMountOperation. Since 2.22. - * @eject_with_operation: Starts ejecting a #GMount using a #GMountOperation. Since 2.22. - * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22. - * @get_default_location: Gets a #GFile indication a start location that can be use as the entry point for this mount. Since 2.24. - * @get_sort_key: Gets a key used for sorting #GMount instance or %NULL if no such key exists. Since 2.32. - * @get_symbolic_icon: Gets a symbolic #GIcon for the #GMount. Since 2.34. - * - * Interface for implementing operations for mounts. - **/ -struct _GMountIface -{ - GTypeInterface g_iface; - - /* signals */ - - void (* changed) (GMount *mount); - void (* unmounted) (GMount *mount); - - /* Virtual Table */ - - GFile * (* get_root) (GMount *mount); - char * (* get_name) (GMount *mount); - GIcon * (* get_icon) (GMount *mount); - char * (* get_uuid) (GMount *mount); - GVolume * (* get_volume) (GMount *mount); - GDrive * (* get_drive) (GMount *mount); - gboolean (* can_unmount) (GMount *mount); - gboolean (* can_eject) (GMount *mount); - - void (* unmount) (GMount *mount, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* unmount_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - - void (* eject) (GMount *mount, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - - void (* remount) (GMount *mount, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* remount_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - - void (* guess_content_type) (GMount *mount, - gboolean force_rescan, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gchar ** (* guess_content_type_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - gchar ** (* guess_content_type_sync) (GMount *mount, - gboolean force_rescan, - GCancellable *cancellable, - GError **error); - - /* Signal, not VFunc */ - void (* pre_unmount) (GMount *mount); - - void (* unmount_with_operation) (GMount *mount, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* unmount_with_operation_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - - void (* eject_with_operation) (GMount *mount, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_with_operation_finish) (GMount *mount, - GAsyncResult *result, - GError **error); - GFile * (* get_default_location) (GMount *mount); - - const gchar * (* get_sort_key) (GMount *mount); - GIcon * (* get_symbolic_icon) (GMount *mount); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_mount_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GFile * g_mount_get_root (GMount *mount); -GLIB_AVAILABLE_IN_ALL -GFile * g_mount_get_default_location (GMount *mount); -GLIB_AVAILABLE_IN_ALL -char * g_mount_get_name (GMount *mount); -GLIB_AVAILABLE_IN_ALL -GIcon * g_mount_get_icon (GMount *mount); -GLIB_AVAILABLE_IN_ALL -GIcon * g_mount_get_symbolic_icon (GMount *mount); -GLIB_AVAILABLE_IN_ALL -char * g_mount_get_uuid (GMount *mount); -GLIB_AVAILABLE_IN_ALL -GVolume * g_mount_get_volume (GMount *mount); -GLIB_AVAILABLE_IN_ALL -GDrive * g_mount_get_drive (GMount *mount); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_can_unmount (GMount *mount); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_can_eject (GMount *mount); - -GLIB_DEPRECATED_FOR(g_mount_unmount_with_operation) -void g_mount_unmount (GMount *mount, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_mount_unmount_with_operation_finish) -gboolean g_mount_unmount_finish (GMount *mount, - GAsyncResult *result, - GError **error); - -GLIB_DEPRECATED_FOR(g_mount_eject_with_operation) -void g_mount_eject (GMount *mount, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_mount_eject_with_operation_finish) -gboolean g_mount_eject_finish (GMount *mount, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_mount_remount (GMount *mount, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_remount_finish (GMount *mount, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_mount_guess_content_type (GMount *mount, - gboolean force_rescan, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gchar ** g_mount_guess_content_type_finish (GMount *mount, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar ** g_mount_guess_content_type_sync (GMount *mount, - gboolean force_rescan, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_is_shadowed (GMount *mount); -GLIB_AVAILABLE_IN_ALL -void g_mount_shadow (GMount *mount); -GLIB_AVAILABLE_IN_ALL -void g_mount_unshadow (GMount *mount); - -GLIB_AVAILABLE_IN_ALL -void g_mount_unmount_with_operation (GMount *mount, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_unmount_with_operation_finish (GMount *mount, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_mount_eject_with_operation (GMount *mount, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_eject_with_operation_finish (GMount *mount, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_mount_get_sort_key (GMount *mount); - -G_END_DECLS - -#endif /* __G_MOUNT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmountoperation.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmountoperation.h deleted file mode 100644 index 7f8baf1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gmountoperation.h +++ /dev/null @@ -1,142 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_MOUNT_OPERATION_H__ -#define __G_MOUNT_OPERATION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_MOUNT_OPERATION (g_mount_operation_get_type ()) -#define G_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_MOUNT_OPERATION, GMountOperation)) -#define G_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_MOUNT_OPERATION, GMountOperationClass)) -#define G_IS_MOUNT_OPERATION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_MOUNT_OPERATION)) -#define G_IS_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_MOUNT_OPERATION)) -#define G_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_MOUNT_OPERATION, GMountOperationClass)) - -/** - * GMountOperation: - * - * Class for providing authentication methods for mounting operations, - * such as mounting a file locally, or authenticating with a server. - **/ -typedef struct _GMountOperationClass GMountOperationClass; -typedef struct _GMountOperationPrivate GMountOperationPrivate; - -struct _GMountOperation -{ - GObject parent_instance; - - GMountOperationPrivate *priv; -}; - -struct _GMountOperationClass -{ - GObjectClass parent_class; - - /* signals: */ - - void (* ask_password) (GMountOperation *op, - const char *message, - const char *default_user, - const char *default_domain, - GAskPasswordFlags flags); - - void (* ask_question) (GMountOperation *op, - const char *message, - const char *choices[]); - - void (* reply) (GMountOperation *op, - GMountOperationResult result); - - void (* aborted) (GMountOperation *op); - - void (* show_processes) (GMountOperation *op, - const gchar *message, - GArray *processes, - const gchar *choices[]); - - void (* show_unmount_progress) (GMountOperation *op, - const gchar *message, - gint64 time_left, - gint64 bytes_left); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); - void (*_g_reserved8) (void); - void (*_g_reserved9) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_mount_operation_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GMountOperation * g_mount_operation_new (void); - -GLIB_AVAILABLE_IN_ALL -const char * g_mount_operation_get_username (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_username (GMountOperation *op, - const char *username); -GLIB_AVAILABLE_IN_ALL -const char * g_mount_operation_get_password (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_password (GMountOperation *op, - const char *password); -GLIB_AVAILABLE_IN_ALL -gboolean g_mount_operation_get_anonymous (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_anonymous (GMountOperation *op, - gboolean anonymous); -GLIB_AVAILABLE_IN_ALL -const char * g_mount_operation_get_domain (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_domain (GMountOperation *op, - const char *domain); -GLIB_AVAILABLE_IN_ALL -GPasswordSave g_mount_operation_get_password_save (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_password_save (GMountOperation *op, - GPasswordSave save); -GLIB_AVAILABLE_IN_ALL -int g_mount_operation_get_choice (GMountOperation *op); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_set_choice (GMountOperation *op, - int choice); -GLIB_AVAILABLE_IN_ALL -void g_mount_operation_reply (GMountOperation *op, - GMountOperationResult result); - -G_END_DECLS - -#endif /* __G_MOUNT_OPERATION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnativevolumemonitor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnativevolumemonitor.h deleted file mode 100644 index e7f6d62..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnativevolumemonitor.h +++ /dev/null @@ -1,63 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_NATIVE_VOLUME_MONITOR_H__ -#define __G_NATIVE_VOLUME_MONITOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_NATIVE_VOLUME_MONITOR (g_native_volume_monitor_get_type ()) -#define G_NATIVE_VOLUME_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NATIVE_VOLUME_MONITOR, GNativeVolumeMonitor)) -#define G_NATIVE_VOLUME_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_NATIVE_VOLUME_MONITOR, GNativeVolumeMonitorClass)) -#define G_IS_NATIVE_VOLUME_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NATIVE_VOLUME_MONITOR)) -#define G_IS_NATIVE_VOLUME_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_NATIVE_VOLUME_MONITOR)) - -#define G_NATIVE_VOLUME_MONITOR_EXTENSION_POINT_NAME "gio-native-volume-monitor" - -typedef struct _GNativeVolumeMonitor GNativeVolumeMonitor; -typedef struct _GNativeVolumeMonitorClass GNativeVolumeMonitorClass; - -struct _GNativeVolumeMonitor -{ - GVolumeMonitor parent_instance; -}; - -struct _GNativeVolumeMonitorClass -{ - GVolumeMonitorClass parent_class; - - GMount * (* get_mount_for_mount_path) (const char *mount_path, - GCancellable *cancellable); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_native_volume_monitor_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_NATIVE_VOLUME_MONITOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkaddress.h deleted file mode 100644 index 326ab21..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkaddress.h +++ /dev/null @@ -1,80 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_NETWORK_ADDRESS_H__ -#define __G_NETWORK_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_NETWORK_ADDRESS (g_network_address_get_type ()) -#define G_NETWORK_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NETWORK_ADDRESS, GNetworkAddress)) -#define G_NETWORK_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_NETWORK_ADDRESS, GNetworkAddressClass)) -#define G_IS_NETWORK_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NETWORK_ADDRESS)) -#define G_IS_NETWORK_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_NETWORK_ADDRESS)) -#define G_NETWORK_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_NETWORK_ADDRESS, GNetworkAddressClass)) - -typedef struct _GNetworkAddressClass GNetworkAddressClass; -typedef struct _GNetworkAddressPrivate GNetworkAddressPrivate; - -struct _GNetworkAddress -{ - GObject parent_instance; - - /*< private >*/ - GNetworkAddressPrivate *priv; -}; - -struct _GNetworkAddressClass -{ - GObjectClass parent_class; - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_network_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketConnectable *g_network_address_new (const gchar *hostname, - guint16 port); -GLIB_AVAILABLE_IN_ALL -GSocketConnectable *g_network_address_parse (const gchar *host_and_port, - guint16 default_port, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocketConnectable *g_network_address_parse_uri (const gchar *uri, - guint16 default_port, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_address_get_hostname (GNetworkAddress *addr); -GLIB_AVAILABLE_IN_ALL -guint16 g_network_address_get_port (GNetworkAddress *addr); -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_address_get_scheme (GNetworkAddress *addr); - - -G_END_DECLS - -#endif /* __G_NETWORK_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworking.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworking.h deleted file mode 100644 index e47c617..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworking.h +++ /dev/null @@ -1,84 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008-2011 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_NETWORKING_H__ -#define __G_NETWORKING_H__ - -#include - -#ifdef G_OS_WIN32 - -#ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0501 -#endif -#include -#undef interface -#include -#include -#include - -#include - -#else /* !G_OS_WIN32 */ - -#include - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#ifndef T_SRV -#define T_SRV 33 -#endif - -#ifndef _PATH_RESCONF -#define _PATH_RESCONF "/etc/resolv.conf" -#endif - -#ifndef CMSG_LEN -/* CMSG_LEN and CMSG_SPACE are defined by RFC 2292, but missing on - * some older platforms. - */ -#define CMSG_LEN(len) ((size_t)CMSG_DATA((struct cmsghdr *)NULL) + (len)) - -/* CMSG_SPACE must add at least as much padding as CMSG_NXTHDR() - * adds. We overestimate here. - */ -#define GLIB_ALIGN_TO_SIZEOF(len, obj) (((len) + sizeof (obj) - 1) & ~(sizeof (obj) - 1)) -#define CMSG_SPACE(len) GLIB_ALIGN_TO_SIZEOF (CMSG_LEN (len), struct cmsghdr) -#endif -#endif - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_2_36 -void g_networking_init (void); - -G_END_DECLS - -#endif /* __G_NETWORKING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkmonitor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkmonitor.h deleted file mode 100644 index 373934e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkmonitor.h +++ /dev/null @@ -1,95 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright 2011 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_NETWORK_MONITOR_H__ -#define __G_NETWORK_MONITOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_NETWORK_MONITOR_EXTENSION_POINT_NAME: - * - * Extension point for network status monitoring functionality. - * See Extending GIO. - * - * Since: 2.30 - */ -#define G_NETWORK_MONITOR_EXTENSION_POINT_NAME "gio-network-monitor" - -#define G_TYPE_NETWORK_MONITOR (g_network_monitor_get_type ()) -#define G_NETWORK_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NETWORK_MONITOR, GNetworkMonitor)) -#define G_IS_NETWORK_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NETWORK_MONITOR)) -#define G_NETWORK_MONITOR_GET_INTERFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), G_TYPE_NETWORK_MONITOR, GNetworkMonitorInterface)) - -typedef struct _GNetworkMonitorInterface GNetworkMonitorInterface; - -struct _GNetworkMonitorInterface { - GTypeInterface g_iface; - - void (*network_changed) (GNetworkMonitor *monitor, - gboolean available); - - gboolean (*can_reach) (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GError **error); - void (*can_reach_async) (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (*can_reach_finish) (GNetworkMonitor *monitor, - GAsyncResult *result, - GError **error); -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_network_monitor_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_32 -GNetworkMonitor *g_network_monitor_get_default (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_get_network_available (GNetworkMonitor *monitor); - -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_can_reach (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_network_monitor_can_reach_async (GNetworkMonitor *monitor, - GSocketConnectable *connectable, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_network_monitor_can_reach_finish (GNetworkMonitor *monitor, - GAsyncResult *result, - GError **error); - -G_END_DECLS - -#endif /* __G_NETWORK_MONITOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkservice.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkservice.h deleted file mode 100644 index 082166d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gnetworkservice.h +++ /dev/null @@ -1,78 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_NETWORK_SERVICE_H__ -#define __G_NETWORK_SERVICE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_NETWORK_SERVICE (g_network_service_get_type ()) -#define G_NETWORK_SERVICE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_NETWORK_SERVICE, GNetworkService)) -#define G_NETWORK_SERVICE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_NETWORK_SERVICE, GNetworkServiceClass)) -#define G_IS_NETWORK_SERVICE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_NETWORK_SERVICE)) -#define G_IS_NETWORK_SERVICE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_NETWORK_SERVICE)) -#define G_NETWORK_SERVICE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_NETWORK_SERVICE, GNetworkServiceClass)) - -typedef struct _GNetworkServiceClass GNetworkServiceClass; -typedef struct _GNetworkServicePrivate GNetworkServicePrivate; - -struct _GNetworkService -{ - GObject parent_instance; - - /*< private >*/ - GNetworkServicePrivate *priv; -}; - -struct _GNetworkServiceClass -{ - GObjectClass parent_class; - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_network_service_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketConnectable *g_network_service_new (const gchar *service, - const gchar *protocol, - const gchar *domain); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_service_get_service (GNetworkService *srv); -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_service_get_protocol (GNetworkService *srv); -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_service_get_domain (GNetworkService *srv); -GLIB_AVAILABLE_IN_ALL -const gchar *g_network_service_get_scheme (GNetworkService *srv); -GLIB_AVAILABLE_IN_ALL -void g_network_service_set_scheme (GNetworkService *srv, const gchar *scheme); - -G_END_DECLS - -#endif /* __G_NETWORK_SERVICE_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/goutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/goutputstream.h deleted file mode 100644 index dd2cbad..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/goutputstream.h +++ /dev/null @@ -1,242 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_OUTPUT_STREAM_H__ -#define __G_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_OUTPUT_STREAM (g_output_stream_get_type ()) -#define G_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_OUTPUT_STREAM, GOutputStream)) -#define G_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_OUTPUT_STREAM, GOutputStreamClass)) -#define G_IS_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_OUTPUT_STREAM)) -#define G_IS_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_OUTPUT_STREAM)) -#define G_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_OUTPUT_STREAM, GOutputStreamClass)) - -/** - * GOutputStream: - * - * Base class for writing output. - * - * All classes derived from GOutputStream should implement synchronous - * writing, splicing, flushing and closing streams, but may implement - * asynchronous versions. - **/ -typedef struct _GOutputStreamClass GOutputStreamClass; -typedef struct _GOutputStreamPrivate GOutputStreamPrivate; - -struct _GOutputStream -{ - GObject parent_instance; - - /*< private >*/ - GOutputStreamPrivate *priv; -}; - - -struct _GOutputStreamClass -{ - GObjectClass parent_class; - - /* Sync ops: */ - - gssize (* write_fn) (GOutputStream *stream, - const void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); - gssize (* splice) (GOutputStream *stream, - GInputStream *source, - GOutputStreamSpliceFlags flags, - GCancellable *cancellable, - GError **error); - gboolean (* flush) (GOutputStream *stream, - GCancellable *cancellable, - GError **error); - gboolean (* close_fn) (GOutputStream *stream, - GCancellable *cancellable, - GError **error); - - /* Async ops: (optional in derived classes) */ - - void (* write_async) (GOutputStream *stream, - const void *buffer, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gssize (* write_finish) (GOutputStream *stream, - GAsyncResult *result, - GError **error); - void (* splice_async) (GOutputStream *stream, - GInputStream *source, - GOutputStreamSpliceFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gssize (* splice_finish) (GOutputStream *stream, - GAsyncResult *result, - GError **error); - void (* flush_async) (GOutputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* flush_finish) (GOutputStream *stream, - GAsyncResult *result, - GError **error); - void (* close_async) (GOutputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* close_finish) (GOutputStream *stream, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); - void (*_g_reserved8) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_output_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gssize g_output_stream_write (GOutputStream *stream, - const void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_write_all (GOutputStream *stream, - const void *buffer, - gsize count, - gsize *bytes_written, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_34 -gssize g_output_stream_write_bytes (GOutputStream *stream, - GBytes *bytes, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_output_stream_splice (GOutputStream *stream, - GInputStream *source, - GOutputStreamSpliceFlags flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_flush (GOutputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_close (GOutputStream *stream, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_output_stream_write_async (GOutputStream *stream, - const void *buffer, - gsize count, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gssize g_output_stream_write_finish (GOutputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_2_34 -void g_output_stream_write_bytes_async (GOutputStream *stream, - GBytes *bytes, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -gssize g_output_stream_write_bytes_finish (GOutputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_output_stream_splice_async (GOutputStream *stream, - GInputStream *source, - GOutputStreamSpliceFlags flags, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gssize g_output_stream_splice_finish (GOutputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_output_stream_flush_async (GOutputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_flush_finish (GOutputStream *stream, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_output_stream_close_async (GOutputStream *stream, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_close_finish (GOutputStream *stream, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_is_closed (GOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_is_closing (GOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_has_pending (GOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -gboolean g_output_stream_set_pending (GOutputStream *stream, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_output_stream_clear_pending (GOutputStream *stream); - - -G_END_DECLS - -#endif /* __G_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpermission.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpermission.h deleted file mode 100644 index 49c2991..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpermission.h +++ /dev/null @@ -1,129 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_PERMISSION_H__ -#define __G_PERMISSION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PERMISSION (g_permission_get_type ()) -#define G_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_PERMISSION, GPermission)) -#define G_PERMISSION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_PERMISSION, GPermissionClass)) -#define G_IS_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_PERMISSION)) -#define G_IS_PERMISSION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_PERMISSION)) -#define G_PERMISSION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_PERMISSION, GPermissionClass)) - -typedef struct _GPermissionPrivate GPermissionPrivate; -typedef struct _GPermissionClass GPermissionClass; - -struct _GPermission -{ - GObject parent_instance; - - /*< private >*/ - GPermissionPrivate *priv; -}; - -struct _GPermissionClass { - GObjectClass parent_class; - - gboolean (*acquire) (GPermission *permission, - GCancellable *cancellable, - GError **error); - void (*acquire_async) (GPermission *permission, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (*acquire_finish) (GPermission *permission, - GAsyncResult *result, - GError **error); - - gboolean (*release) (GPermission *permission, - GCancellable *cancellable, - GError **error); - void (*release_async) (GPermission *permission, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (*release_finish) (GPermission *permission, - GAsyncResult *result, - GError **error); - - gpointer reserved[16]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_permission_get_type (void); -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_acquire (GPermission *permission, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_permission_acquire_async (GPermission *permission, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_acquire_finish (GPermission *permission, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_release (GPermission *permission, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_permission_release_async (GPermission *permission, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_release_finish (GPermission *permission, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_get_allowed (GPermission *permission); -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_get_can_acquire (GPermission *permission); -GLIB_AVAILABLE_IN_ALL -gboolean g_permission_get_can_release (GPermission *permission); - -GLIB_AVAILABLE_IN_ALL -void g_permission_impl_update (GPermission *permission, - gboolean allowed, - gboolean can_acquire, - gboolean can_release); - -G_END_DECLS - -#endif /* __G_PERMISSION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableinputstream.h deleted file mode 100644 index a0b1574..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableinputstream.h +++ /dev/null @@ -1,107 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_POLLABLE_INPUT_STREAM_H__ -#define __G_POLLABLE_INPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_POLLABLE_INPUT_STREAM (g_pollable_input_stream_get_type ()) -#define G_POLLABLE_INPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_POLLABLE_INPUT_STREAM, GPollableInputStream)) -#define G_IS_POLLABLE_INPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_POLLABLE_INPUT_STREAM)) -#define G_POLLABLE_INPUT_STREAM_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_POLLABLE_INPUT_STREAM, GPollableInputStreamInterface)) - -/** - * GPollableInputStream: - * - * An interface for a #GInputStream that can be polled for readability. - * - * Since: 2.28 - */ -typedef struct _GPollableInputStreamInterface GPollableInputStreamInterface; - -/** - * GPollableInputStreamInterface: - * @g_iface: The parent interface. - * @can_poll: Checks if the #GPollableInputStream instance is actually pollable - * @is_readable: Checks if the stream is readable - * @create_source: Creates a #GSource to poll the stream - * @read_nonblocking: Does a non-blocking read or returns - * %G_IO_ERROR_WOULD_BLOCK - * - * The interface for pollable input streams. - * - * The default implementation of @can_poll always returns %TRUE. - * - * The default implementation of @read_nonblocking calls - * g_pollable_input_stream_is_readable(), and then calls - * g_input_stream_read() if it returns %TRUE. This means you only need - * to override it if it is possible that your @is_readable - * implementation may return %TRUE when the stream is not actually - * readable. - * - * Since: 2.28 - */ -struct _GPollableInputStreamInterface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - gboolean (*can_poll) (GPollableInputStream *stream); - - gboolean (*is_readable) (GPollableInputStream *stream); - GSource * (*create_source) (GPollableInputStream *stream, - GCancellable *cancellable); - gssize (*read_nonblocking) (GPollableInputStream *stream, - void *buffer, - gsize count, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_pollable_input_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_pollable_input_stream_can_poll (GPollableInputStream *stream); - -GLIB_AVAILABLE_IN_ALL -gboolean g_pollable_input_stream_is_readable (GPollableInputStream *stream); -GLIB_AVAILABLE_IN_ALL -GSource *g_pollable_input_stream_create_source (GPollableInputStream *stream, - GCancellable *cancellable); - -GLIB_AVAILABLE_IN_ALL -gssize g_pollable_input_stream_read_nonblocking (GPollableInputStream *stream, - void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - - -#endif /* __G_POLLABLE_INPUT_STREAM_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableoutputstream.h deleted file mode 100644 index b6b3e54..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableoutputstream.h +++ /dev/null @@ -1,107 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_POLLABLE_OUTPUT_STREAM_H__ -#define __G_POLLABLE_OUTPUT_STREAM_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_POLLABLE_OUTPUT_STREAM (g_pollable_output_stream_get_type ()) -#define G_POLLABLE_OUTPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_POLLABLE_OUTPUT_STREAM, GPollableOutputStream)) -#define G_IS_POLLABLE_OUTPUT_STREAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_POLLABLE_OUTPUT_STREAM)) -#define G_POLLABLE_OUTPUT_STREAM_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_POLLABLE_OUTPUT_STREAM, GPollableOutputStreamInterface)) - -/** - * GPollableOutputStream: - * - * An interface for a #GOutputStream that can be polled for readability. - * - * Since: 2.28 - */ -typedef struct _GPollableOutputStreamInterface GPollableOutputStreamInterface; - -/** - * GPollableOutputStreamInterface: - * @g_iface: The parent interface. - * @can_poll: Checks if the #GPollableOutputStream instance is actually pollable - * @is_writable: Checks if the stream is writable - * @create_source: Creates a #GSource to poll the stream - * @write_nonblocking: Does a non-blocking write or returns - * %G_IO_ERROR_WOULD_BLOCK - * - * The interface for pollable output streams. - * - * The default implementation of @can_poll always returns %TRUE. - * - * The default implementation of @write_nonblocking calls - * g_pollable_output_stream_is_writable(), and then calls - * g_output_stream_write() if it returns %TRUE. This means you only - * need to override it if it is possible that your @is_writable - * implementation may return %TRUE when the stream is not actually - * writable. - * - * Since: 2.28 - */ -struct _GPollableOutputStreamInterface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - gboolean (*can_poll) (GPollableOutputStream *stream); - - gboolean (*is_writable) (GPollableOutputStream *stream); - GSource * (*create_source) (GPollableOutputStream *stream, - GCancellable *cancellable); - gssize (*write_nonblocking) (GPollableOutputStream *stream, - const void *buffer, - gsize count, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_pollable_output_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_pollable_output_stream_can_poll (GPollableOutputStream *stream); - -GLIB_AVAILABLE_IN_ALL -gboolean g_pollable_output_stream_is_writable (GPollableOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -GSource *g_pollable_output_stream_create_source (GPollableOutputStream *stream, - GCancellable *cancellable); - -GLIB_AVAILABLE_IN_ALL -gssize g_pollable_output_stream_write_nonblocking (GPollableOutputStream *stream, - const void *buffer, - gsize count, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - - -#endif /* __G_POLLABLE_OUTPUT_STREAM_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableutils.h deleted file mode 100644 index cb4612d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpollableutils.h +++ /dev/null @@ -1,66 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2012 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_POLLABLE_UTILS_H__ -#define __G_POLLABLE_UTILS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -GSource *g_pollable_source_new (GObject *pollable_stream); - -GLIB_AVAILABLE_IN_2_34 -GSource *g_pollable_source_new_full (gpointer pollable_stream, - GSource *child_source, - GCancellable *cancellable); - -GLIB_AVAILABLE_IN_2_34 -gssize g_pollable_stream_read (GInputStream *stream, - void *buffer, - gsize count, - gboolean blocking, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_2_34 -gssize g_pollable_stream_write (GOutputStream *stream, - const void *buffer, - gsize count, - gboolean blocking, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_34 -gboolean g_pollable_stream_write_all (GOutputStream *stream, - const void *buffer, - gsize count, - gboolean blocking, - gsize *bytes_written, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - -#endif /* _G_POLLABLE_UTILS_H_ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpropertyaction.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpropertyaction.h deleted file mode 100644 index 3a43af8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gpropertyaction.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright © 2013 Canonical Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_PROPERTY_ACTION_H__ -#define __G_PROPERTY_ACTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PROPERTY_ACTION (g_property_action_get_type ()) -#define G_PROPERTY_ACTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_PROPERTY_ACTION, GPropertyAction)) -#define G_IS_PROPERTY_ACTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_PROPERTY_ACTION)) - -GLIB_AVAILABLE_IN_2_38 -GType g_property_action_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_38 -GPropertyAction * g_property_action_new (const gchar *name, - gpointer object, - const gchar *property_name); - -G_END_DECLS - -#endif /* __G_PROPERTY_ACTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxy.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxy.h deleted file mode 100644 index b022335..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxy.h +++ /dev/null @@ -1,130 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Collabora Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Nicolas Dufresne - */ - -#ifndef __G_PROXY_H__ -#define __G_PROXY_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PROXY (g_proxy_get_type ()) -#define G_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY, GProxy)) -#define G_IS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY)) -#define G_PROXY_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_PROXY, GProxyInterface)) - -/** - * G_PROXY_EXTENSION_POINT_NAME: - * - * Extension point for proxy functionality. - * See Extending GIO. - * - * Since: 2.26 - */ -#define G_PROXY_EXTENSION_POINT_NAME "gio-proxy" - -/** - * GProxy: - * - * Interface that handles proxy connection and payload. - * - * Since: 2.26 - */ -typedef struct _GProxyInterface GProxyInterface; - -/** - * GProxyInterface: - * @g_iface: The parent interface. - * @connect: Connect to proxy server and wrap (if required) the #connection - * to handle payload. - * @connect_async: Same as connect() but asynchronous. - * @connect_finish: Returns the result of connect_async() - * @supports_hostname: Returns whether the proxy supports hostname lookups. - * - * Provides an interface for handling proxy connection and payload. - * - * Since: 2.26 - */ -struct _GProxyInterface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GIOStream * (* connect) (GProxy *proxy, - GIOStream *connection, - GProxyAddress *proxy_address, - GCancellable *cancellable, - GError **error); - - void (* connect_async) (GProxy *proxy, - GIOStream *connection, - GProxyAddress *proxy_address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GIOStream * (* connect_finish) (GProxy *proxy, - GAsyncResult *result, - GError **error); - - gboolean (* supports_hostname) (GProxy *proxy); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_proxy_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GProxy *g_proxy_get_default_for_protocol (const gchar *protocol); - -GLIB_AVAILABLE_IN_ALL -GIOStream *g_proxy_connect (GProxy *proxy, - GIOStream *connection, - GProxyAddress *proxy_address, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_proxy_connect_async (GProxy *proxy, - GIOStream *connection, - GProxyAddress *proxy_address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GIOStream *g_proxy_connect_finish (GProxy *proxy, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_proxy_supports_hostname (GProxy *proxy); - -G_END_DECLS - -#endif /* __G_PROXY_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddress.h deleted file mode 100644 index ed67f33..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddress.h +++ /dev/null @@ -1,88 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Nicolas Dufresne - */ - -#ifndef __G_PROXY_ADDRESS_H__ -#define __G_PROXY_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PROXY_ADDRESS (g_proxy_address_get_type ()) -#define G_PROXY_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY_ADDRESS, GProxyAddress)) -#define G_PROXY_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_PROXY_ADDRESS, GProxyAddressClass)) -#define G_IS_PROXY_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY_ADDRESS)) -#define G_IS_PROXY_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_PROXY_ADDRESS)) -#define G_PROXY_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_PROXY_ADDRESS, GProxyAddressClass)) - -typedef struct _GProxyAddressClass GProxyAddressClass; -typedef struct _GProxyAddressPrivate GProxyAddressPrivate; - -struct _GProxyAddress -{ - GInetSocketAddress parent_instance; - - /*< private >*/ - GProxyAddressPrivate *priv; -}; - -struct _GProxyAddressClass -{ - GInetSocketAddressClass parent_class; -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_proxy_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_proxy_address_new (GInetAddress *inetaddr, - guint16 port, - const gchar *protocol, - const gchar *dest_hostname, - guint16 dest_port, - const gchar *username, - const gchar *password); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_proxy_address_get_protocol (GProxyAddress *proxy); -GLIB_AVAILABLE_IN_2_34 -const gchar *g_proxy_address_get_destination_protocol (GProxyAddress *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_proxy_address_get_destination_hostname (GProxyAddress *proxy); -GLIB_AVAILABLE_IN_ALL -guint16 g_proxy_address_get_destination_port (GProxyAddress *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_proxy_address_get_username (GProxyAddress *proxy); -GLIB_AVAILABLE_IN_ALL -const gchar *g_proxy_address_get_password (GProxyAddress *proxy); - -GLIB_AVAILABLE_IN_2_34 -const gchar *g_proxy_address_get_uri (GProxyAddress *proxy); - -G_END_DECLS - -#endif /* __G_PROXY_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddressenumerator.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddressenumerator.h deleted file mode 100644 index 19bcd51..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyaddressenumerator.h +++ /dev/null @@ -1,76 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Nicolas Dufresne - */ - -#ifndef __G_PROXY_ADDRESS_ENUMERATOR_H__ -#define __G_PROXY_ADDRESS_ENUMERATOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PROXY_ADDRESS_ENUMERATOR (g_proxy_address_enumerator_get_type ()) -#define G_PROXY_ADDRESS_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY_ADDRESS_ENUMERATOR, GProxyAddressEnumerator)) -#define G_PROXY_ADDRESS_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_PROXY_ADDRESS_ENUMERATOR, GProxyAddressEnumeratorClass)) -#define G_IS_PROXY_ADDRESS_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY_ADDRESS_ENUMERATOR)) -#define G_IS_PROXY_ADDRESS_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_PROXY_ADDRESS_ENUMERATOR)) -#define G_PROXY_ADDRESS_ENUMERATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_PROXY_ADDRESS_ENUMERATOR, GProxyAddressEnumeratorClass)) - -/** - * GProxyAddressEnumerator: - * - * A subclass of #GSocketAddressEnumerator that takes another address - * enumerator and wraps its results in #GProxyAddresses as - * directed by the default #GProxyResolver. - */ - -typedef struct _GProxyAddressEnumeratorClass GProxyAddressEnumeratorClass; -typedef struct _GProxyAddressEnumeratorPrivate GProxyAddressEnumeratorPrivate; - -struct _GProxyAddressEnumerator -{ - GSocketAddressEnumerator parent_instance; - GProxyAddressEnumeratorPrivate *priv; -}; - -struct _GProxyAddressEnumeratorClass -{ - GSocketAddressEnumeratorClass parent_class; - - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_proxy_address_enumerator_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_PROXY_ADDRESS_ENUMERATOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyresolver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyresolver.h deleted file mode 100644 index eaad834..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gproxyresolver.h +++ /dev/null @@ -1,97 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Nicolas Dufresne - */ - -#ifndef __G_PROXY_RESOLVER_H__ -#define __G_PROXY_RESOLVER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_PROXY_RESOLVER (g_proxy_resolver_get_type ()) -#define G_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_PROXY_RESOLVER, GProxyResolver)) -#define G_IS_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_PROXY_RESOLVER)) -#define G_PROXY_RESOLVER_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), G_TYPE_PROXY_RESOLVER, GProxyResolverInterface)) - -/** - * G_PROXY_RESOLVER_EXTENSION_POINT_NAME: - * - * Extension point for proxy resolving functionality. - * See Extending GIO. - */ -#define G_PROXY_RESOLVER_EXTENSION_POINT_NAME "gio-proxy-resolver" - -typedef struct _GProxyResolverInterface GProxyResolverInterface; - -struct _GProxyResolverInterface { - GTypeInterface g_iface; - - /* Virtual Table */ - gboolean (* is_supported) (GProxyResolver *resolver); - - gchar ** (* lookup) (GProxyResolver *resolver, - const gchar *uri, - GCancellable *cancellable, - GError **error); - - void (* lookup_async) (GProxyResolver *resolver, - const gchar *uri, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - gchar ** (* lookup_finish) (GProxyResolver *resolver, - GAsyncResult *result, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_proxy_resolver_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GProxyResolver *g_proxy_resolver_get_default (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_proxy_resolver_is_supported (GProxyResolver *resolver); -GLIB_AVAILABLE_IN_ALL -gchar **g_proxy_resolver_lookup (GProxyResolver *resolver, - const gchar *uri, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_proxy_resolver_lookup_async (GProxyResolver *resolver, - const gchar *uri, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gchar **g_proxy_resolver_lookup_finish (GProxyResolver *resolver, - GAsyncResult *result, - GError **error); - - -G_END_DECLS - -#endif /* __G_PROXY_RESOLVER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gremoteactiongroup.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gremoteactiongroup.h deleted file mode 100644 index a9926ee..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gremoteactiongroup.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright © 2011 Canonical Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_REMOTE_ACTION_GROUP_H__ -#define __G_REMOTE_ACTION_GROUP_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -#define G_TYPE_REMOTE_ACTION_GROUP (g_remote_action_group_get_type ()) -#define G_REMOTE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_REMOTE_ACTION_GROUP, GRemoteActionGroup)) -#define G_IS_REMOTE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_REMOTE_ACTION_GROUP)) -#define G_REMOTE_ACTION_GROUP_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), \ - G_TYPE_REMOTE_ACTION_GROUP, \ - GRemoteActionGroupInterface)) - -typedef struct _GRemoteActionGroupInterface GRemoteActionGroupInterface; - -struct _GRemoteActionGroupInterface -{ - GTypeInterface g_iface; - - void (* activate_action_full) (GRemoteActionGroup *remote, - const gchar *action_name, - GVariant *parameter, - GVariant *platform_data); - - void (* change_action_state_full) (GRemoteActionGroup *remote, - const gchar *action_name, - GVariant *value, - GVariant *platform_data); -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_remote_action_group_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -void g_remote_action_group_activate_action_full (GRemoteActionGroup *remote, - const gchar *action_name, - GVariant *parameter, - GVariant *platform_data); - -GLIB_AVAILABLE_IN_2_32 -void g_remote_action_group_change_action_state_full (GRemoteActionGroup *remote, - const gchar *action_name, - GVariant *value, - GVariant *platform_data); - -G_END_DECLS - -#endif /* __G_REMOTE_ACTION_GROUP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresolver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresolver.h deleted file mode 100644 index 454896c..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresolver.h +++ /dev/null @@ -1,214 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_RESOLVER_H__ -#define __G_RESOLVER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_RESOLVER (g_resolver_get_type ()) -#define G_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_RESOLVER, GResolver)) -#define G_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_RESOLVER, GResolverClass)) -#define G_IS_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_RESOLVER)) -#define G_IS_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_RESOLVER)) -#define G_RESOLVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_RESOLVER, GResolverClass)) - -typedef struct _GResolverPrivate GResolverPrivate; -typedef struct _GResolverClass GResolverClass; - -struct _GResolver { - GObject parent_instance; - - GResolverPrivate *priv; -}; - -struct _GResolverClass { - GObjectClass parent_class; - - /* Signals */ - void ( *reload) (GResolver *resolver); - - /* Virtual methods */ - GList * ( *lookup_by_name) (GResolver *resolver, - const gchar *hostname, - GCancellable *cancellable, - GError **error); - void ( *lookup_by_name_async) (GResolver *resolver, - const gchar *hostname, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GList * ( *lookup_by_name_finish) (GResolver *resolver, - GAsyncResult *result, - GError **error); - - gchar * ( *lookup_by_address) (GResolver *resolver, - GInetAddress *address, - GCancellable *cancellable, - GError **error); - void ( *lookup_by_address_async) (GResolver *resolver, - GInetAddress *address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gchar * ( *lookup_by_address_finish) (GResolver *resolver, - GAsyncResult *result, - GError **error); - - GList * ( *lookup_service) (GResolver *resolver, - const gchar *rrname, - GCancellable *cancellable, - GError **error); - void ( *lookup_service_async) (GResolver *resolver, - const gchar *rrname, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GList * ( *lookup_service_finish) (GResolver *resolver, - GAsyncResult *result, - GError **error); - - GList * ( *lookup_records) (GResolver *resolver, - const gchar *rrname, - GResolverRecordType record_type, - GCancellable *cancellable, - GError **error); - - void ( *lookup_records_async) (GResolver *resolver, - const gchar *rrname, - GResolverRecordType record_type, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GList * ( *lookup_records_finish) (GResolver *resolver, - GAsyncResult *result, - GError **error); - - /* Padding for future expansion */ - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_resolver_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GResolver *g_resolver_get_default (void); -GLIB_AVAILABLE_IN_ALL -void g_resolver_set_default (GResolver *resolver); - -GLIB_AVAILABLE_IN_ALL -GList *g_resolver_lookup_by_name (GResolver *resolver, - const gchar *hostname, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_resolver_lookup_by_name_async (GResolver *resolver, - const gchar *hostname, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GList *g_resolver_lookup_by_name_finish (GResolver *resolver, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_resolver_free_addresses (GList *addresses); - -GLIB_AVAILABLE_IN_ALL -gchar *g_resolver_lookup_by_address (GResolver *resolver, - GInetAddress *address, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_resolver_lookup_by_address_async (GResolver *resolver, - GInetAddress *address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gchar *g_resolver_lookup_by_address_finish (GResolver *resolver, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GList *g_resolver_lookup_service (GResolver *resolver, - const gchar *service, - const gchar *protocol, - const gchar *domain, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_resolver_lookup_service_async (GResolver *resolver, - const gchar *service, - const gchar *protocol, - const gchar *domain, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GList *g_resolver_lookup_service_finish (GResolver *resolver, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_2_34 -GList *g_resolver_lookup_records (GResolver *resolver, - const gchar *rrname, - GResolverRecordType record_type, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_34 -void g_resolver_lookup_records_async (GResolver *resolver, - const gchar *rrname, - GResolverRecordType record_type, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -GList *g_resolver_lookup_records_finish (GResolver *resolver, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_resolver_free_targets (GList *targets); - -/** - * G_RESOLVER_ERROR: - * - * Error domain for #GResolver. Errors in this domain will be from the - * #GResolverError enumeration. See #GError for more information on - * error domains. - */ -#define G_RESOLVER_ERROR (g_resolver_error_quark ()) -GLIB_AVAILABLE_IN_ALL -GQuark g_resolver_error_quark (void); - -G_END_DECLS - -#endif /* __G_RESOLVER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresource.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresource.h deleted file mode 100644 index 2db343c..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gresource.h +++ /dev/null @@ -1,131 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_RESOURCE_H__ -#define __G_RESOURCE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_TYPE_RESOURCE: - * - * The #GType for #GResource. - */ -#define G_TYPE_RESOURCE (g_resource_get_type ()) - - -/** - * G_RESOURCE_ERROR: - * - * Error domain for #GResource. Errors in this domain will be from the - * #GResourceError enumeration. See #GError for more information on - * error domains. - */ -#define G_RESOURCE_ERROR (g_resource_error_quark ()) -GLIB_AVAILABLE_IN_2_32 -GQuark g_resource_error_quark (void); - -typedef struct _GStaticResource GStaticResource; - -struct _GStaticResource { - const guint8 *data; - gsize data_len; - GResource *resource; - GStaticResource *next; - gpointer padding; -}; - -GLIB_AVAILABLE_IN_2_32 -GType g_resource_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_32 -GResource * g_resource_new_from_data (GBytes *data, - GError **error); -GLIB_AVAILABLE_IN_2_32 -GResource * g_resource_ref (GResource *resource); -GLIB_AVAILABLE_IN_2_32 -void g_resource_unref (GResource *resource); -GLIB_AVAILABLE_IN_2_32 -GResource * g_resource_load (const gchar *filename, - GError **error); -GLIB_AVAILABLE_IN_2_32 -GInputStream *g_resource_open_stream (GResource *resource, - const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -GBytes * g_resource_lookup_data (GResource *resource, - const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -char ** g_resource_enumerate_children (GResource *resource, - const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gboolean g_resource_get_info (GResource *resource, - const char *path, - GResourceLookupFlags lookup_flags, - gsize *size, - guint32 *flags, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -void g_resources_register (GResource *resource); -GLIB_AVAILABLE_IN_2_32 -void g_resources_unregister (GResource *resource); -GLIB_AVAILABLE_IN_2_32 -GInputStream *g_resources_open_stream (const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -GBytes * g_resources_lookup_data (const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -char ** g_resources_enumerate_children (const char *path, - GResourceLookupFlags lookup_flags, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gboolean g_resources_get_info (const char *path, - GResourceLookupFlags lookup_flags, - gsize *size, - guint32 *flags, - GError **error); - - -GLIB_AVAILABLE_IN_2_32 -void g_static_resource_init (GStaticResource *static_resource); -GLIB_AVAILABLE_IN_2_32 -void g_static_resource_fini (GStaticResource *static_resource); -GLIB_AVAILABLE_IN_2_32 -GResource *g_static_resource_get_resource (GStaticResource *static_resource); - -G_END_DECLS - -#endif /* __G_RESOURCE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gseekable.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gseekable.h deleted file mode 100644 index 245eb07..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gseekable.h +++ /dev/null @@ -1,105 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_SEEKABLE_H__ -#define __G_SEEKABLE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SEEKABLE (g_seekable_get_type ()) -#define G_SEEKABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SEEKABLE, GSeekable)) -#define G_IS_SEEKABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_SEEKABLE)) -#define G_SEEKABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_SEEKABLE, GSeekableIface)) - -/** - * GSeekable: - * - * Seek object for streaming operations. - **/ -typedef struct _GSeekableIface GSeekableIface; - -/** - * GSeekableIface: - * @g_iface: The parent interface. - * @tell: Tells the current location within a stream. - * @can_seek: Checks if seeking is supported by the stream. - * @seek: Seeks to a location within a stream. - * @can_truncate: Checks if truncation is supported by the stream. - * @truncate_fn: Truncates a stream. - * - * Provides an interface for implementing seekable functionality on I/O Streams. - **/ -struct _GSeekableIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - goffset (* tell) (GSeekable *seekable); - - gboolean (* can_seek) (GSeekable *seekable); - gboolean (* seek) (GSeekable *seekable, - goffset offset, - GSeekType type, - GCancellable *cancellable, - GError **error); - - gboolean (* can_truncate) (GSeekable *seekable); - gboolean (* truncate_fn) (GSeekable *seekable, - goffset offset, - GCancellable *cancellable, - GError **error); - - /* TODO: Async seek/truncate */ -}; - -GLIB_AVAILABLE_IN_ALL -GType g_seekable_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -goffset g_seekable_tell (GSeekable *seekable); -GLIB_AVAILABLE_IN_ALL -gboolean g_seekable_can_seek (GSeekable *seekable); -GLIB_AVAILABLE_IN_ALL -gboolean g_seekable_seek (GSeekable *seekable, - goffset offset, - GSeekType type, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_seekable_can_truncate (GSeekable *seekable); -GLIB_AVAILABLE_IN_ALL -gboolean g_seekable_truncate (GSeekable *seekable, - goffset offset, - GCancellable *cancellable, - GError **error); - -G_END_DECLS - - -#endif /* __G_SEEKABLE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettings.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettings.h deleted file mode 100644 index e77e11e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettings.h +++ /dev/null @@ -1,326 +0,0 @@ -/* - * Copyright © 2009, 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_SETTINGS_H__ -#define __G_SETTINGS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_SETTINGS (g_settings_get_type ()) -#define G_SETTINGS(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SETTINGS, GSettings)) -#define G_SETTINGS_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SETTINGS, GSettingsClass)) -#define G_IS_SETTINGS(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_SETTINGS)) -#define G_IS_SETTINGS_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_SETTINGS)) -#define G_SETTINGS_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SETTINGS, GSettingsClass)) - -typedef struct _GSettingsPrivate GSettingsPrivate; -typedef struct _GSettingsClass GSettingsClass; - -struct _GSettingsClass -{ - GObjectClass parent_class; - - /* Signals */ - void (*writable_changed) (GSettings *settings, - const gchar *key); - void (*changed) (GSettings *settings, - const gchar *key); - gboolean (*writable_change_event) (GSettings *settings, - GQuark key); - gboolean (*change_event) (GSettings *settings, - const GQuark *keys, - gint n_keys); - - gpointer padding[20]; -}; - -struct _GSettings -{ - GObject parent_instance; - GSettingsPrivate *priv; -}; - - -GLIB_AVAILABLE_IN_ALL -GType g_settings_get_type (void); - -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_settings_list_schemas (void); -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_settings_list_relocatable_schemas (void); -GLIB_AVAILABLE_IN_ALL -GSettings * g_settings_new (const gchar *schema_id); -GLIB_AVAILABLE_IN_ALL -GSettings * g_settings_new_with_path (const gchar *schema_id, - const gchar *path); -GLIB_AVAILABLE_IN_ALL -GSettings * g_settings_new_with_backend (const gchar *schema_id, - GSettingsBackend *backend); -GLIB_AVAILABLE_IN_ALL -GSettings * g_settings_new_with_backend_and_path (const gchar *schema_id, - GSettingsBackend *backend, - const gchar *path); -GLIB_AVAILABLE_IN_2_32 -GSettings * g_settings_new_full (GSettingsSchema *schema, - GSettingsBackend *backend, - const gchar *path); -GLIB_AVAILABLE_IN_ALL -gchar ** g_settings_list_children (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -gchar ** g_settings_list_keys (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -GVariant * g_settings_get_range (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_range_check (GSettings *settings, - const gchar *key, - GVariant *value); - -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_value (GSettings *settings, - const gchar *key, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_settings_get_value (GSettings *settings, - const gchar *key); - -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set (GSettings *settings, - const gchar *key, - const gchar *format, - ...); -GLIB_AVAILABLE_IN_ALL -void g_settings_get (GSettings *settings, - const gchar *key, - const gchar *format, - ...); -GLIB_AVAILABLE_IN_ALL -void g_settings_reset (GSettings *settings, - const gchar *key); - -GLIB_AVAILABLE_IN_ALL -gint g_settings_get_int (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_int (GSettings *settings, - const gchar *key, - gint value); -GLIB_AVAILABLE_IN_2_32 -guint g_settings_get_uint (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_2_32 -gboolean g_settings_set_uint (GSettings *settings, - const gchar *key, - guint value); -GLIB_AVAILABLE_IN_ALL -gchar * g_settings_get_string (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_string (GSettings *settings, - const gchar *key, - const gchar *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_get_boolean (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_boolean (GSettings *settings, - const gchar *key, - gboolean value); -GLIB_AVAILABLE_IN_ALL -gdouble g_settings_get_double (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_double (GSettings *settings, - const gchar *key, - gdouble value); -GLIB_AVAILABLE_IN_ALL -gchar ** g_settings_get_strv (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_strv (GSettings *settings, - const gchar *key, - const gchar *const *value); -GLIB_AVAILABLE_IN_ALL -gint g_settings_get_enum (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_enum (GSettings *settings, - const gchar *key, - gint value); -GLIB_AVAILABLE_IN_ALL -guint g_settings_get_flags (GSettings *settings, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_set_flags (GSettings *settings, - const gchar *key, - guint value); -GLIB_AVAILABLE_IN_ALL -GSettings * g_settings_get_child (GSettings *settings, - const gchar *name); - -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_is_writable (GSettings *settings, - const gchar *name); - -GLIB_AVAILABLE_IN_ALL -void g_settings_delay (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -void g_settings_apply (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -void g_settings_revert (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -gboolean g_settings_get_has_unapplied (GSettings *settings); -GLIB_AVAILABLE_IN_ALL -void g_settings_sync (void); - -/** - * GSettingsBindSetMapping: - * @value: a #GValue containing the property value to map - * @expected_type: the #GVariantType to create - * @user_data: user data that was specified when the binding was created - * - * The type for the function that is used to convert an object property - * value to a #GVariant for storing it in #GSettings. - * - * Returns: a new #GVariant holding the data from @value, - * or %NULL in case of an error - */ -typedef GVariant * (*GSettingsBindSetMapping) (const GValue *value, - const GVariantType *expected_type, - gpointer user_data); - -/** - * GSettingsBindGetMapping: - * @value: return location for the property value - * @variant: the #GVariant - * @user_data: user data that was specified when the binding was created - * - * The type for the function that is used to convert from #GSettings to - * an object property. The @value is already initialized to hold values - * of the appropriate type. - * - * Returns: %TRUE if the conversion succeeded, %FALSE in case of an error - */ -typedef gboolean (*GSettingsBindGetMapping) (GValue *value, - GVariant *variant, - gpointer user_data); - -/** - * GSettingsGetMapping: - * @value: the #GVariant to map, or %NULL - * @result: (out): the result of the mapping - * @user_data: (closure): the user data that was passed to - * g_settings_get_mapped() - * - * The type of the function that is used to convert from a value stored - * in a #GSettings to a value that is useful to the application. - * - * If the value is successfully mapped, the result should be stored at - * @result and %TRUE returned. If mapping fails (for example, if @value - * is not in the right format) then %FALSE should be returned. - * - * If @value is %NULL then it means that the mapping function is being - * given a "last chance" to successfully return a valid value. %TRUE - * must be returned in this case. - * - * Returns: %TRUE if the conversion succeeded, %FALSE in case of an error - **/ -typedef gboolean (*GSettingsGetMapping) (GVariant *value, - gpointer *result, - gpointer user_data); - -/** - * GSettingsBindFlags: - * @G_SETTINGS_BIND_DEFAULT: Equivalent to G_SETTINGS_BIND_GET|G_SETTINGS_BIND_SET - * @G_SETTINGS_BIND_GET: Update the #GObject property when the setting changes. - * It is an error to use this flag if the property is not writable. - * @G_SETTINGS_BIND_SET: Update the setting when the #GObject property changes. - * It is an error to use this flag if the property is not readable. - * @G_SETTINGS_BIND_NO_SENSITIVITY: Do not try to bind a "sensitivity" property to the writability of the setting - * @G_SETTINGS_BIND_GET_NO_CHANGES: When set in addition to #G_SETTINGS_BIND_GET, set the #GObject property - * value initially from the setting, but do not listen for changes of the setting - * @G_SETTINGS_BIND_INVERT_BOOLEAN: When passed to g_settings_bind(), uses a pair of mapping functions that invert - * the boolean value when mapping between the setting and the property. The setting and property must both - * be booleans. You cannot pass this flag to g_settings_bind_with_mapping(). - * - * Flags used when creating a binding. These flags determine in which - * direction the binding works. The default is to synchronize in both - * directions. - */ -typedef enum -{ - G_SETTINGS_BIND_DEFAULT, - G_SETTINGS_BIND_GET = (1<<0), - G_SETTINGS_BIND_SET = (1<<1), - G_SETTINGS_BIND_NO_SENSITIVITY = (1<<2), - G_SETTINGS_BIND_GET_NO_CHANGES = (1<<3), - G_SETTINGS_BIND_INVERT_BOOLEAN = (1<<4) -} GSettingsBindFlags; - -GLIB_AVAILABLE_IN_ALL -void g_settings_bind (GSettings *settings, - const gchar *key, - gpointer object, - const gchar *property, - GSettingsBindFlags flags); -GLIB_AVAILABLE_IN_ALL -void g_settings_bind_with_mapping (GSettings *settings, - const gchar *key, - gpointer object, - const gchar *property, - GSettingsBindFlags flags, - GSettingsBindGetMapping get_mapping, - GSettingsBindSetMapping set_mapping, - gpointer user_data, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_ALL -void g_settings_bind_writable (GSettings *settings, - const gchar *key, - gpointer object, - const gchar *property, - gboolean inverted); -GLIB_AVAILABLE_IN_ALL -void g_settings_unbind (gpointer object, - const gchar *property); - -GLIB_AVAILABLE_IN_2_32 -GAction * g_settings_create_action (GSettings *settings, - const gchar *key); - -GLIB_AVAILABLE_IN_ALL -gpointer g_settings_get_mapped (GSettings *settings, - const gchar *key, - GSettingsGetMapping mapping, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_SETTINGS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsbackend.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsbackend.h deleted file mode 100644 index 293ca65..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsbackend.h +++ /dev/null @@ -1,156 +0,0 @@ -/* - * Copyright © 2009, 2010 Codethink Limited - * Copyright © 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - * Matthias Clasen - */ - -#ifndef __G_SETTINGS_BACKEND_H__ -#define __G_SETTINGS_BACKEND_H__ - -#if !defined (G_SETTINGS_ENABLE_BACKEND) && !defined (GIO_COMPILATION) -#error "You must define G_SETTINGS_ENABLE_BACKEND before including ." -#endif - -#define __GIO_GIO_H_INSIDE__ -#include -#undef __GIO_GIO_H_INSIDE__ - -G_BEGIN_DECLS - -#define G_TYPE_SETTINGS_BACKEND (g_settings_backend_get_type ()) -#define G_SETTINGS_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SETTINGS_BACKEND, GSettingsBackend)) -#define G_SETTINGS_BACKEND_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SETTINGS_BACKEND, GSettingsBackendClass)) -#define G_IS_SETTINGS_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SETTINGS_BACKEND)) -#define G_IS_SETTINGS_BACKEND_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SETTINGS_BACKEND)) -#define G_SETTINGS_BACKEND_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SETTINGS_BACKEND, GSettingsBackendClass)) - -/** - * G_SETTINGS_BACKEND_EXTENSION_POINT_NAME: - * - * Extension point for #GSettingsBackend functionality. - **/ -#define G_SETTINGS_BACKEND_EXTENSION_POINT_NAME "gsettings-backend" - -/** - * GSettingsBackend: - * - * An implementation of a settings storage repository. - **/ -typedef struct _GSettingsBackendPrivate GSettingsBackendPrivate; -typedef struct _GSettingsBackendClass GSettingsBackendClass; - -struct _GSettingsBackendClass -{ - GObjectClass parent_class; - - GVariant * (*read) (GSettingsBackend *backend, - const gchar *key, - const GVariantType *expected_type, - gboolean default_value); - - gboolean (*get_writable) (GSettingsBackend *backend, - const gchar *key); - - gboolean (*write) (GSettingsBackend *backend, - const gchar *key, - GVariant *value, - gpointer origin_tag); - gboolean (*write_tree) (GSettingsBackend *backend, - GTree *tree, - gpointer origin_tag); - void (*reset) (GSettingsBackend *backend, - const gchar *key, - gpointer origin_tag); - - void (*subscribe) (GSettingsBackend *backend, - const gchar *name); - void (*unsubscribe) (GSettingsBackend *backend, - const gchar *name); - void (*sync) (GSettingsBackend *backend); - - GPermission * (*get_permission) (GSettingsBackend *backend, - const gchar *path); - - gpointer padding[24]; -}; - -struct _GSettingsBackend -{ - GObject parent_instance; - - /*< private >*/ - GSettingsBackendPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_settings_backend_get_type (void); - -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_changed (GSettingsBackend *backend, - const gchar *key, - gpointer origin_tag); -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_path_changed (GSettingsBackend *backend, - const gchar *path, - gpointer origin_tag); -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_flatten_tree (GTree *tree, - gchar **path, - const gchar ***keys, - GVariant ***values); -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_keys_changed (GSettingsBackend *backend, - const gchar *path, - gchar const * const *items, - gpointer origin_tag); - -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_path_writable_changed (GSettingsBackend *backend, - const gchar *path); -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_writable_changed (GSettingsBackend *backend, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -void g_settings_backend_changed_tree (GSettingsBackend *backend, - GTree *tree, - gpointer origin_tag); - -GLIB_AVAILABLE_IN_ALL -GSettingsBackend * g_settings_backend_get_default (void); - -GLIB_AVAILABLE_IN_ALL -GSettingsBackend * g_keyfile_settings_backend_new (const gchar *filename, - const gchar *root_path, - const gchar *root_group); - -GLIB_AVAILABLE_IN_ALL -GSettingsBackend * g_null_settings_backend_new (void); - -GLIB_AVAILABLE_IN_ALL -GSettingsBackend * g_memory_settings_backend_new (void); - -G_END_DECLS - -#endif /* __G_SETTINGS_BACKEND_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsschema.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsschema.h deleted file mode 100644 index 20bf99f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsettingsschema.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * Copyright © 2011 Canonical Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SETTINGS_SCHEMA_H__ -#define __G_SETTINGS_SCHEMA_H__ - -#include - -G_BEGIN_DECLS - -typedef struct _GSettingsSchemaSource GSettingsSchemaSource; -typedef struct _GSettingsSchema GSettingsSchema; - -#define G_TYPE_SETTINGS_SCHEMA_SOURCE (g_settings_schema_source_get_type ()) -GLIB_AVAILABLE_IN_2_32 -GType g_settings_schema_source_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -GSettingsSchemaSource * g_settings_schema_source_get_default (void); -GLIB_AVAILABLE_IN_2_32 -GSettingsSchemaSource * g_settings_schema_source_ref (GSettingsSchemaSource *source); -GLIB_AVAILABLE_IN_2_32 -void g_settings_schema_source_unref (GSettingsSchemaSource *source); - -GLIB_AVAILABLE_IN_2_32 -GSettingsSchemaSource * g_settings_schema_source_new_from_directory (const gchar *directory, - GSettingsSchemaSource *parent, - gboolean trusted, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -GSettingsSchema * g_settings_schema_source_lookup (GSettingsSchemaSource *source, - const gchar *schema_id, - gboolean recursive); - -#define G_TYPE_SETTINGS_SCHEMA (g_settings_schema_get_type ()) -GLIB_AVAILABLE_IN_2_32 -GType g_settings_schema_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -GSettingsSchema * g_settings_schema_ref (GSettingsSchema *schema); -GLIB_AVAILABLE_IN_2_32 -void g_settings_schema_unref (GSettingsSchema *schema); - -GLIB_AVAILABLE_IN_2_32 -const gchar * g_settings_schema_get_id (GSettingsSchema *schema); -GLIB_AVAILABLE_IN_2_32 -const gchar * g_settings_schema_get_path (GSettingsSchema *schema); - -G_END_DECLS - -#endif /* __G_SETTINGS_SCHEMA_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleaction.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleaction.h deleted file mode 100644 index b89b1a9..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleaction.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_SIMPLE_ACTION_H__ -#define __G_SIMPLE_ACTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SIMPLE_ACTION (g_simple_action_get_type ()) -#define G_SIMPLE_ACTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SIMPLE_ACTION, GSimpleAction)) -#define G_IS_SIMPLE_ACTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SIMPLE_ACTION)) - -GLIB_AVAILABLE_IN_ALL -GType g_simple_action_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSimpleAction * g_simple_action_new (const gchar *name, - const GVariantType *parameter_type); - -GLIB_AVAILABLE_IN_ALL -GSimpleAction * g_simple_action_new_stateful (const gchar *name, - const GVariantType *parameter_type, - GVariant *state); - -GLIB_AVAILABLE_IN_ALL -void g_simple_action_set_enabled (GSimpleAction *simple, - gboolean enabled); - -GLIB_AVAILABLE_IN_2_30 -void g_simple_action_set_state (GSimpleAction *simple, - GVariant *value); - -G_END_DECLS - -#endif /* __G_SIMPLE_ACTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleactiongroup.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleactiongroup.h deleted file mode 100644 index 197e30e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleactiongroup.h +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_SIMPLE_ACTION_GROUP_H__ -#define __G_SIMPLE_ACTION_GROUP_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include "gactiongroup.h" -#include "gactionmap.h" - -G_BEGIN_DECLS - -#define G_TYPE_SIMPLE_ACTION_GROUP (g_simple_action_group_get_type ()) -#define G_SIMPLE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroup)) -#define G_SIMPLE_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroupClass)) -#define G_IS_SIMPLE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SIMPLE_ACTION_GROUP)) -#define G_IS_SIMPLE_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SIMPLE_ACTION_GROUP)) -#define G_SIMPLE_ACTION_GROUP_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroupClass)) - -typedef struct _GSimpleActionGroupPrivate GSimpleActionGroupPrivate; -typedef struct _GSimpleActionGroupClass GSimpleActionGroupClass; - -/** - * GSimpleActionGroup: - * - * The #GSimpleActionGroup structure contains private data and should only be accessed using the provided API. - * - * Since: 2.28 - */ -struct _GSimpleActionGroup -{ - /*< private >*/ - GObject parent_instance; - - GSimpleActionGroupPrivate *priv; -}; - -struct _GSimpleActionGroupClass -{ - /*< private >*/ - GObjectClass parent_class; - - /*< private >*/ - gpointer padding[12]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_simple_action_group_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSimpleActionGroup * g_simple_action_group_new (void); - -GLIB_DEPRECATED_IN_2_38_FOR (g_action_map_lookup_action) -GAction * g_simple_action_group_lookup (GSimpleActionGroup *simple, - const gchar *action_name); - -GLIB_DEPRECATED_IN_2_38_FOR (g_action_map_add_action) -void g_simple_action_group_insert (GSimpleActionGroup *simple, - GAction *action); - -GLIB_DEPRECATED_IN_2_38_FOR (g_action_map_remove_action) -void g_simple_action_group_remove (GSimpleActionGroup *simple, - const gchar *action_name); - -GLIB_DEPRECATED_IN_2_38_FOR (g_action_map_add_action_entries) -void g_simple_action_group_add_entries (GSimpleActionGroup *simple, - const GActionEntry *entries, - gint n_entries, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_SIMPLE_ACTION_GROUP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleasyncresult.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleasyncresult.h deleted file mode 100644 index 7134f84..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleasyncresult.h +++ /dev/null @@ -1,164 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_SIMPLE_ASYNC_RESULT_H__ -#define __G_SIMPLE_ASYNC_RESULT_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SIMPLE_ASYNC_RESULT (g_simple_async_result_get_type ()) -#define G_SIMPLE_ASYNC_RESULT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SIMPLE_ASYNC_RESULT, GSimpleAsyncResult)) -#define G_SIMPLE_ASYNC_RESULT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SIMPLE_ASYNC_RESULT, GSimpleAsyncResultClass)) -#define G_IS_SIMPLE_ASYNC_RESULT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SIMPLE_ASYNC_RESULT)) -#define G_IS_SIMPLE_ASYNC_RESULT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SIMPLE_ASYNC_RESULT)) -#define G_SIMPLE_ASYNC_RESULT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SIMPLE_ASYNC_RESULT, GSimpleAsyncResultClass)) - -/** - * GSimpleAsyncResult: - * - * A simple implementation of #GAsyncResult. - **/ -typedef struct _GSimpleAsyncResultClass GSimpleAsyncResultClass; - - -GLIB_AVAILABLE_IN_ALL -GType g_simple_async_result_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSimpleAsyncResult *g_simple_async_result_new (GObject *source_object, - GAsyncReadyCallback callback, - gpointer user_data, - gpointer source_tag); -GLIB_AVAILABLE_IN_ALL -GSimpleAsyncResult *g_simple_async_result_new_error (GObject *source_object, - GAsyncReadyCallback callback, - gpointer user_data, - GQuark domain, - gint code, - const char *format, - ...) G_GNUC_PRINTF (6, 7); -GLIB_AVAILABLE_IN_ALL -GSimpleAsyncResult *g_simple_async_result_new_from_error (GObject *source_object, - GAsyncReadyCallback callback, - gpointer user_data, - const GError *error); -GLIB_AVAILABLE_IN_ALL -GSimpleAsyncResult *g_simple_async_result_new_take_error (GObject *source_object, - GAsyncReadyCallback callback, - gpointer user_data, - GError *error); - -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_op_res_gpointer (GSimpleAsyncResult *simple, - gpointer op_res, - GDestroyNotify destroy_op_res); -GLIB_AVAILABLE_IN_ALL -gpointer g_simple_async_result_get_op_res_gpointer (GSimpleAsyncResult *simple); - -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_op_res_gssize (GSimpleAsyncResult *simple, - gssize op_res); -GLIB_AVAILABLE_IN_ALL -gssize g_simple_async_result_get_op_res_gssize (GSimpleAsyncResult *simple); - -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_op_res_gboolean (GSimpleAsyncResult *simple, - gboolean op_res); -GLIB_AVAILABLE_IN_ALL -gboolean g_simple_async_result_get_op_res_gboolean (GSimpleAsyncResult *simple); - - - -GLIB_AVAILABLE_IN_2_32 -void g_simple_async_result_set_check_cancellable (GSimpleAsyncResult *simple, - GCancellable *check_cancellable); -GLIB_AVAILABLE_IN_ALL -gpointer g_simple_async_result_get_source_tag (GSimpleAsyncResult *simple); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_handle_cancellation (GSimpleAsyncResult *simple, - gboolean handle_cancellation); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_complete (GSimpleAsyncResult *simple); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_complete_in_idle (GSimpleAsyncResult *simple); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_run_in_thread (GSimpleAsyncResult *simple, - GSimpleAsyncThreadFunc func, - int io_priority, - GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_from_error (GSimpleAsyncResult *simple, - const GError *error); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_take_error (GSimpleAsyncResult *simple, - GError *error); -GLIB_AVAILABLE_IN_ALL -gboolean g_simple_async_result_propagate_error (GSimpleAsyncResult *simple, - GError **dest); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_error (GSimpleAsyncResult *simple, - GQuark domain, - gint code, - const char *format, - ...) G_GNUC_PRINTF (4, 5); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_result_set_error_va (GSimpleAsyncResult *simple, - GQuark domain, - gint code, - const char *format, - va_list args) - G_GNUC_PRINTF(4, 0); -GLIB_AVAILABLE_IN_ALL -gboolean g_simple_async_result_is_valid (GAsyncResult *result, - GObject *source, - gpointer source_tag); - -GLIB_AVAILABLE_IN_ALL -void g_simple_async_report_error_in_idle (GObject *object, - GAsyncReadyCallback callback, - gpointer user_data, - GQuark domain, - gint code, - const char *format, - ...) G_GNUC_PRINTF(6, 7); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_report_gerror_in_idle (GObject *object, - GAsyncReadyCallback callback, - gpointer user_data, - const GError *error); -GLIB_AVAILABLE_IN_ALL -void g_simple_async_report_take_gerror_in_idle (GObject *object, - GAsyncReadyCallback callback, - gpointer user_data, - GError *error); - -G_END_DECLS - - - -#endif /* __G_SIMPLE_ASYNC_RESULT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimplepermission.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimplepermission.h deleted file mode 100644 index 4cc336b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimplepermission.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_SIMPLE_PERMISSION_H__ -#define __G_SIMPLE_PERMISSION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SIMPLE_PERMISSION (g_simple_permission_get_type ()) -#define G_SIMPLE_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SIMPLE_PERMISSION, \ - GSimplePermission)) -#define G_IS_SIMPLE_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SIMPLE_PERMISSION)) - -GLIB_AVAILABLE_IN_ALL -GType g_simple_permission_get_type (void); -GLIB_AVAILABLE_IN_ALL -GPermission * g_simple_permission_new (gboolean allowed); - -G_END_DECLS - -#endif /* __G_SIMPLE_PERMISSION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleproxyresolver.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleproxyresolver.h deleted file mode 100644 index a451f99..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsimpleproxyresolver.h +++ /dev/null @@ -1,91 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright 2010, 2013 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SIMPLE_PROXY_RESOLVER_H__ -#define __G_SIMPLE_PROXY_RESOLVER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SIMPLE_PROXY_RESOLVER (g_simple_proxy_resolver_get_type ()) -#define G_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolver)) -#define G_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass)) -#define G_IS_SIMPLE_PROXY_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SIMPLE_PROXY_RESOLVER)) -#define G_IS_SIMPLE_PROXY_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SIMPLE_PROXY_RESOLVER)) -#define G_SIMPLE_PROXY_RESOLVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SIMPLE_PROXY_RESOLVER, GSimpleProxyResolverClass)) - -/** - * GSimpleProxyResolver: - * - * A #GProxyResolver implementation for using a fixed set of proxies. - **/ -typedef struct _GSimpleProxyResolver GSimpleProxyResolver; -typedef struct _GSimpleProxyResolverPrivate GSimpleProxyResolverPrivate; -typedef struct _GSimpleProxyResolverClass GSimpleProxyResolverClass; - -struct _GSimpleProxyResolver -{ - GObject parent_instance; - - /*< private >*/ - GSimpleProxyResolverPrivate *priv; -}; - -struct _GSimpleProxyResolverClass -{ - GObjectClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_2_36 -GType g_simple_proxy_resolver_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_36 -GProxyResolver *g_simple_proxy_resolver_new (const gchar *default_proxy, - gchar **ignore_hosts); - -GLIB_AVAILABLE_IN_2_36 -void g_simple_proxy_resolver_set_default_proxy (GSimpleProxyResolver *resolver, - const gchar *default_proxy); - -GLIB_AVAILABLE_IN_2_36 -void g_simple_proxy_resolver_set_ignore_hosts (GSimpleProxyResolver *resolver, - gchar **ignore_hosts); - -GLIB_AVAILABLE_IN_2_36 -void g_simple_proxy_resolver_set_uri_proxy (GSimpleProxyResolver *resolver, - const gchar *uri_scheme, - const gchar *proxy); - -G_END_DECLS - -#endif /* __G_SIMPLE_PROXY_RESOLVER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocket.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocket.h deleted file mode 100644 index edc0292..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocket.h +++ /dev/null @@ -1,291 +0,0 @@ -/* - * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima - * Copyright © 2009 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - * Ryan Lortie - */ - -#ifndef __G_SOCKET_H__ -#define __G_SOCKET_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET (g_socket_get_type ()) -#define G_SOCKET(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET, GSocket)) -#define G_SOCKET_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET, GSocketClass)) -#define G_IS_SOCKET(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET)) -#define G_IS_SOCKET_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET)) -#define G_SOCKET_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET, GSocketClass)) - -typedef struct _GSocketPrivate GSocketPrivate; -typedef struct _GSocketClass GSocketClass; - -struct _GSocketClass -{ - GObjectClass parent_class; - - /*< private >*/ - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); - void (*_g_reserved7) (void); - void (*_g_reserved8) (void); - void (*_g_reserved9) (void); - void (*_g_reserved10) (void); -}; - -struct _GSocket -{ - GObject parent_instance; - GSocketPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GSocket * g_socket_new (GSocketFamily family, - GSocketType type, - GSocketProtocol protocol, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocket * g_socket_new_from_fd (gint fd, - GError **error); -GLIB_AVAILABLE_IN_ALL -int g_socket_get_fd (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GSocketFamily g_socket_get_family (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GSocketType g_socket_get_socket_type (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GSocketProtocol g_socket_get_protocol (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GSocketAddress * g_socket_get_local_address (GSocket *socket, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocketAddress * g_socket_get_remote_address (GSocket *socket, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_set_blocking (GSocket *socket, - gboolean blocking); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_get_blocking (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -void g_socket_set_keepalive (GSocket *socket, - gboolean keepalive); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_get_keepalive (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -gint g_socket_get_listen_backlog (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -void g_socket_set_listen_backlog (GSocket *socket, - gint backlog); -GLIB_AVAILABLE_IN_ALL -guint g_socket_get_timeout (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -void g_socket_set_timeout (GSocket *socket, - guint timeout); - -GLIB_AVAILABLE_IN_2_32 -guint g_socket_get_ttl (GSocket *socket); -GLIB_AVAILABLE_IN_2_32 -void g_socket_set_ttl (GSocket *socket, - guint ttl); - -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_get_broadcast (GSocket *socket); -GLIB_AVAILABLE_IN_2_32 -void g_socket_set_broadcast (GSocket *socket, - gboolean broadcast); - -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_get_multicast_loopback (GSocket *socket); -GLIB_AVAILABLE_IN_2_32 -void g_socket_set_multicast_loopback (GSocket *socket, - gboolean loopback); -GLIB_AVAILABLE_IN_2_32 -guint g_socket_get_multicast_ttl (GSocket *socket); -GLIB_AVAILABLE_IN_2_32 -void g_socket_set_multicast_ttl (GSocket *socket, - guint ttl); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_is_connected (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_bind (GSocket *socket, - GSocketAddress *address, - gboolean allow_reuse, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_join_multicast_group (GSocket *socket, - GInetAddress *group, - gboolean source_specific, - const gchar *iface, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_leave_multicast_group (GSocket *socket, - GInetAddress *group, - gboolean source_specific, - const gchar *iface, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_connect (GSocket *socket, - GSocketAddress *address, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_check_connect_result (GSocket *socket, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gssize g_socket_get_available_bytes (GSocket *socket); - -GLIB_AVAILABLE_IN_ALL -GIOCondition g_socket_condition_check (GSocket *socket, - GIOCondition condition); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_condition_wait (GSocket *socket, - GIOCondition condition, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_condition_timed_wait (GSocket *socket, - GIOCondition condition, - gint64 timeout, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocket * g_socket_accept (GSocket *socket, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_listen (GSocket *socket, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_receive (GSocket *socket, - gchar *buffer, - gsize size, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_receive_from (GSocket *socket, - GSocketAddress **address, - gchar *buffer, - gsize size, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_send (GSocket *socket, - const gchar *buffer, - gsize size, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_send_to (GSocket *socket, - GSocketAddress *address, - const gchar *buffer, - gsize size, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_receive_message (GSocket *socket, - GSocketAddress **address, - GInputVector *vectors, - gint num_vectors, - GSocketControlMessage ***messages, - gint *num_messages, - gint *flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_send_message (GSocket *socket, - GSocketAddress *address, - GOutputVector *vectors, - gint num_vectors, - GSocketControlMessage **messages, - gint num_messages, - gint flags, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_close (GSocket *socket, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_shutdown (GSocket *socket, - gboolean shutdown_read, - gboolean shutdown_write, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_is_closed (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GSource * g_socket_create_source (GSocket *socket, - GIOCondition condition, - GCancellable *cancellable); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_speaks_ipv4 (GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GCredentials *g_socket_get_credentials (GSocket *socket, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gssize g_socket_receive_with_blocking (GSocket *socket, - gchar *buffer, - gsize size, - gboolean blocking, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gssize g_socket_send_with_blocking (GSocket *socket, - const gchar *buffer, - gsize size, - gboolean blocking, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_2_36 -gboolean g_socket_get_option (GSocket *socket, - gint level, - gint optname, - gint *value, - GError **error); -GLIB_AVAILABLE_IN_2_36 -gboolean g_socket_set_option (GSocket *socket, - gint level, - gint optname, - gint value, - GError **error); - -G_END_DECLS - -#endif /* __G_SOCKET_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddress.h deleted file mode 100644 index dce3139..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddress.h +++ /dev/null @@ -1,84 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - */ - -#ifndef __G_SOCKET_ADDRESS_H__ -#define __G_SOCKET_ADDRESS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_ADDRESS (g_socket_address_get_type ()) -#define G_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SOCKET_ADDRESS, GSocketAddress)) -#define G_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SOCKET_ADDRESS, GSocketAddressClass)) -#define G_IS_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SOCKET_ADDRESS)) -#define G_IS_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SOCKET_ADDRESS)) -#define G_SOCKET_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SOCKET_ADDRESS, GSocketAddressClass)) - -typedef struct _GSocketAddressClass GSocketAddressClass; - -struct _GSocketAddress -{ - GObject parent_instance; -}; - -struct _GSocketAddressClass -{ - GObjectClass parent_class; - - GSocketFamily (*get_family) (GSocketAddress *address); - - gssize (*get_native_size) (GSocketAddress *address); - - gboolean (*to_native) (GSocketAddress *address, - gpointer dest, - gsize destlen, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketFamily g_socket_address_get_family (GSocketAddress *address); - -GLIB_AVAILABLE_IN_ALL -GSocketAddress * g_socket_address_new_from_native (gpointer native, - gsize len); - -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_address_to_native (GSocketAddress *address, - gpointer dest, - gsize destlen, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gssize g_socket_address_get_native_size (GSocketAddress *address); - -G_END_DECLS - -#endif /* __G_SOCKET_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddressenumerator.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddressenumerator.h deleted file mode 100644 index bf415d1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketaddressenumerator.h +++ /dev/null @@ -1,93 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SOCKET_ADDRESS_ENUMERATOR_H__ -#define __G_SOCKET_ADDRESS_ENUMERATOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_ADDRESS_ENUMERATOR (g_socket_address_enumerator_get_type ()) -#define G_SOCKET_ADDRESS_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_SOCKET_ADDRESS_ENUMERATOR, GSocketAddressEnumerator)) -#define G_SOCKET_ADDRESS_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_SOCKET_ADDRESS_ENUMERATOR, GSocketAddressEnumeratorClass)) -#define G_IS_SOCKET_ADDRESS_ENUMERATOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_SOCKET_ADDRESS_ENUMERATOR)) -#define G_IS_SOCKET_ADDRESS_ENUMERATOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_SOCKET_ADDRESS_ENUMERATOR)) -#define G_SOCKET_ADDRESS_ENUMERATOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_SOCKET_ADDRESS_ENUMERATOR, GSocketAddressEnumeratorClass)) - -/** - * GSocketAddressEnumerator: - * - * Enumerator type for objects that contain or generate - * #GSocketAddresses. - */ -typedef struct _GSocketAddressEnumeratorClass GSocketAddressEnumeratorClass; - -struct _GSocketAddressEnumerator -{ - GObject parent_instance; - -}; - -struct _GSocketAddressEnumeratorClass -{ - GObjectClass parent_class; - - /* Virtual Table */ - - GSocketAddress * (* next) (GSocketAddressEnumerator *enumerator, - GCancellable *cancellable, - GError **error); - - void (* next_async) (GSocketAddressEnumerator *enumerator, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - GSocketAddress * (* next_finish) (GSocketAddressEnumerator *enumerator, - GAsyncResult *result, - GError **error); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_address_enumerator_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_socket_address_enumerator_next (GSocketAddressEnumerator *enumerator, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_socket_address_enumerator_next_async (GSocketAddressEnumerator *enumerator, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_socket_address_enumerator_next_finish (GSocketAddressEnumerator *enumerator, - GAsyncResult *result, - GError **error); - -G_END_DECLS - - -#endif /* __G_SOCKET_ADDRESS_ENUMERATOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketclient.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketclient.h deleted file mode 100644 index 72bace7..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketclient.h +++ /dev/null @@ -1,199 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2008, 2009 Codethink Limited - * Copyright © 2009 Red Hat, Inc - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_SOCKET_CLIENT_H__ -#define __G_SOCKET_CLIENT_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_CLIENT (g_socket_client_get_type ()) -#define G_SOCKET_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET_CLIENT, GSocketClient)) -#define G_SOCKET_CLIENT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET_CLIENT, GSocketClientClass)) -#define G_IS_SOCKET_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET_CLIENT)) -#define G_IS_SOCKET_CLIENT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET_CLIENT)) -#define G_SOCKET_CLIENT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET_CLIENT, GSocketClientClass)) - -typedef struct _GSocketClientPrivate GSocketClientPrivate; -typedef struct _GSocketClientClass GSocketClientClass; - -struct _GSocketClientClass -{ - GObjectClass parent_class; - - void (* event) (GSocketClient *client, - GSocketClientEvent event, - GSocketConnectable *connectable, - GIOStream *connection); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); -}; - -struct _GSocketClient -{ - GObject parent_instance; - GSocketClientPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_client_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketClient *g_socket_client_new (void); - -GLIB_AVAILABLE_IN_ALL -GSocketFamily g_socket_client_get_family (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_family (GSocketClient *client, - GSocketFamily family); -GLIB_AVAILABLE_IN_ALL -GSocketType g_socket_client_get_socket_type (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_socket_type (GSocketClient *client, - GSocketType type); -GLIB_AVAILABLE_IN_ALL -GSocketProtocol g_socket_client_get_protocol (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_protocol (GSocketClient *client, - GSocketProtocol protocol); -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_socket_client_get_local_address (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_local_address (GSocketClient *client, - GSocketAddress *address); -GLIB_AVAILABLE_IN_ALL -guint g_socket_client_get_timeout (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_timeout (GSocketClient *client, - guint timeout); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_client_get_enable_proxy (GSocketClient *client); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_set_enable_proxy (GSocketClient *client, - gboolean enable); - -GLIB_AVAILABLE_IN_2_28 -gboolean g_socket_client_get_tls (GSocketClient *client); -GLIB_AVAILABLE_IN_2_28 -void g_socket_client_set_tls (GSocketClient *client, - gboolean tls); -GLIB_AVAILABLE_IN_2_28 -GTlsCertificateFlags g_socket_client_get_tls_validation_flags (GSocketClient *client); -GLIB_AVAILABLE_IN_2_28 -void g_socket_client_set_tls_validation_flags (GSocketClient *client, - GTlsCertificateFlags flags); -GLIB_AVAILABLE_IN_2_36 -GProxyResolver *g_socket_client_get_proxy_resolver (GSocketClient *client); -GLIB_AVAILABLE_IN_2_36 -void g_socket_client_set_proxy_resolver (GSocketClient *client, - GProxyResolver *proxy_resolver); - -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect (GSocketClient *client, - GSocketConnectable *connectable, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_to_host (GSocketClient *client, - const gchar *host_and_port, - guint16 default_port, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_to_service (GSocketClient *client, - const gchar *domain, - const gchar *service, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_26 -GSocketConnection * g_socket_client_connect_to_uri (GSocketClient *client, - const gchar *uri, - guint16 default_port, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_connect_async (GSocketClient *client, - GSocketConnectable *connectable, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_finish (GSocketClient *client, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_connect_to_host_async (GSocketClient *client, - const gchar *host_and_port, - guint16 default_port, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_to_host_finish (GSocketClient *client, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_socket_client_connect_to_service_async (GSocketClient *client, - const gchar *domain, - const gchar *service, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_to_service_finish (GSocketClient *client, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_connect_to_uri_async (GSocketClient *client, - const gchar *uri, - guint16 default_port, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_client_connect_to_uri_finish (GSocketClient *client, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_client_add_application_proxy (GSocketClient *client, - const gchar *protocol); - -G_END_DECLS - -#endif /* __G_SOCKET_CLIENT_H___ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnectable.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnectable.h deleted file mode 100644 index 5a80ea8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnectable.h +++ /dev/null @@ -1,77 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SOCKET_CONNECTABLE_H__ -#define __G_SOCKET_CONNECTABLE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_CONNECTABLE (g_socket_connectable_get_type ()) -#define G_SOCKET_CONNECTABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SOCKET_CONNECTABLE, GSocketConnectable)) -#define G_IS_SOCKET_CONNECTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_SOCKET_CONNECTABLE)) -#define G_SOCKET_CONNECTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_SOCKET_CONNECTABLE, GSocketConnectableIface)) - -/** - * GSocketConnectable: - * - * Interface for objects that contain or generate #GSocketAddresses. - */ -typedef struct _GSocketConnectableIface GSocketConnectableIface; - -/** - * GSocketConnectableIface: - * @g_iface: The parent interface. - * @enumerate: Creates a #GSocketAddressEnumerator - * @proxy_enumerate: Creates a #GProxyAddressEnumerator - * - * Provides an interface for returning a #GSocketAddressEnumerator - * and #GProxyAddressEnumerator - */ -struct _GSocketConnectableIface -{ - GTypeInterface g_iface; - - /* Virtual Table */ - - GSocketAddressEnumerator * (* enumerate) (GSocketConnectable *connectable); - - GSocketAddressEnumerator * (* proxy_enumerate) (GSocketConnectable *connectable); - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_connectable_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketAddressEnumerator *g_socket_connectable_enumerate (GSocketConnectable *connectable); - -GLIB_AVAILABLE_IN_ALL -GSocketAddressEnumerator *g_socket_connectable_proxy_enumerate (GSocketConnectable *connectable); - -G_END_DECLS - - -#endif /* __G_SOCKET_CONNECTABLE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnection.h deleted file mode 100644 index b93201f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketconnection.h +++ /dev/null @@ -1,117 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima - * Copyright © 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - * Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_SOCKET_CONNECTION_H__ -#define __G_SOCKET_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_CONNECTION (g_socket_connection_get_type ()) -#define G_SOCKET_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET_CONNECTION, GSocketConnection)) -#define G_SOCKET_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET_CONNECTION, GSocketConnectionClass)) -#define G_IS_SOCKET_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET_CONNECTION)) -#define G_IS_SOCKET_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET_CONNECTION)) -#define G_SOCKET_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET_CONNECTION, GSocketConnectionClass)) - -typedef struct _GSocketConnectionPrivate GSocketConnectionPrivate; -typedef struct _GSocketConnectionClass GSocketConnectionClass; - -struct _GSocketConnectionClass -{ - GIOStreamClass parent_class; - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); -}; - -struct _GSocketConnection -{ - GIOStream parent_instance; - GSocketConnectionPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_connection_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_connection_is_connected (GSocketConnection *connection); -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_connection_connect (GSocketConnection *connection, - GSocketAddress *address, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_32 -void g_socket_connection_connect_async (GSocketConnection *connection, - GSocketAddress *address, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_32 -gboolean g_socket_connection_connect_finish (GSocketConnection *connection, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GSocket *g_socket_connection_get_socket (GSocketConnection *connection); -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_socket_connection_get_local_address (GSocketConnection *connection, - GError **error); -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_socket_connection_get_remote_address (GSocketConnection *connection, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_socket_connection_factory_register_type (GType g_type, - GSocketFamily family, - GSocketType type, - gint protocol); -GLIB_AVAILABLE_IN_ALL -GType g_socket_connection_factory_lookup_type (GSocketFamily family, - GSocketType type, - gint protocol_id); -GLIB_AVAILABLE_IN_ALL -GSocketConnection *g_socket_connection_factory_create_connection (GSocket *socket); - -G_END_DECLS - -#endif /* __G_SOCKET_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketcontrolmessage.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketcontrolmessage.h deleted file mode 100644 index aaa7c93..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketcontrolmessage.h +++ /dev/null @@ -1,111 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_SOCKET_CONTROL_MESSAGE_H__ -#define __G_SOCKET_CONTROL_MESSAGE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_CONTROL_MESSAGE (g_socket_control_message_get_type ()) -#define G_SOCKET_CONTROL_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET_CONTROL_MESSAGE, \ - GSocketControlMessage)) -#define G_SOCKET_CONTROL_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET_CONTROL_MESSAGE, \ - GSocketControlMessageClass)) -#define G_IS_SOCKET_CONTROL_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET_CONTROL_MESSAGE)) -#define G_IS_SOCKET_CONTROL_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET_CONTROL_MESSAGE)) -#define G_SOCKET_CONTROL_MESSAGE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET_CONTROL_MESSAGE, \ - GSocketControlMessageClass)) - -typedef struct _GSocketControlMessagePrivate GSocketControlMessagePrivate; -typedef struct _GSocketControlMessageClass GSocketControlMessageClass; - -/** - * GSocketControlMessageClass: - * @get_size: gets the size of the message. - * @get_level: gets the protocol of the message. - * @get_type: gets the protocol specific type of the message. - * @serialize: Writes out the message data. - * @deserialize: Tries to deserialize a message. - **/ - -struct _GSocketControlMessageClass -{ - GObjectClass parent_class; - - gsize (* get_size) (GSocketControlMessage *message); - int (* get_level) (GSocketControlMessage *message); - int (* get_type) (GSocketControlMessage *message); - void (* serialize) (GSocketControlMessage *message, - gpointer data); - GSocketControlMessage *(* deserialize) (int level, - int type, - gsize size, - gpointer data); - - /*< private >*/ - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -struct _GSocketControlMessage -{ - GObject parent_instance; - GSocketControlMessagePrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_control_message_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gsize g_socket_control_message_get_size (GSocketControlMessage *message); -GLIB_AVAILABLE_IN_ALL -int g_socket_control_message_get_level (GSocketControlMessage *message); -GLIB_AVAILABLE_IN_ALL -int g_socket_control_message_get_msg_type (GSocketControlMessage *message); -GLIB_AVAILABLE_IN_ALL -void g_socket_control_message_serialize (GSocketControlMessage *message, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GSocketControlMessage *g_socket_control_message_deserialize (int level, - int type, - gsize size, - gpointer data); - - -G_END_DECLS - -#endif /* __G_SOCKET_CONTROL_MESSAGE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketlistener.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketlistener.h deleted file mode 100644 index 09f3985..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketlistener.h +++ /dev/null @@ -1,152 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima - * Copyright © 2009 Codethink Limited - * Copyright © 2009 Red Hat, Inc - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - * Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_SOCKET_LISTENER_H__ -#define __G_SOCKET_LISTENER_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_LISTENER (g_socket_listener_get_type ()) -#define G_SOCKET_LISTENER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET_LISTENER, GSocketListener)) -#define G_SOCKET_LISTENER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET_LISTENER, GSocketListenerClass)) -#define G_IS_SOCKET_LISTENER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET_LISTENER)) -#define G_IS_SOCKET_LISTENER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET_LISTENER)) -#define G_SOCKET_LISTENER_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET_LISTENER, GSocketListenerClass)) - -typedef struct _GSocketListenerPrivate GSocketListenerPrivate; -typedef struct _GSocketListenerClass GSocketListenerClass; - -/** - * GSocketListenerClass: - * @changed: virtual method called when the set of socket listened to changes - **/ -struct _GSocketListenerClass -{ - GObjectClass parent_class; - - void (* changed) (GSocketListener *listener); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); -}; - -struct _GSocketListener -{ - GObject parent_instance; - GSocketListenerPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_listener_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketListener * g_socket_listener_new (void); - -GLIB_AVAILABLE_IN_ALL -void g_socket_listener_set_backlog (GSocketListener *listener, - int listen_backlog); - -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_listener_add_socket (GSocketListener *listener, - GSocket *socket, - GObject *source_object, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_listener_add_address (GSocketListener *listener, - GSocketAddress *address, - GSocketType type, - GSocketProtocol protocol, - GObject *source_object, - GSocketAddress **effective_address, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_listener_add_inet_port (GSocketListener *listener, - guint16 port, - GObject *source_object, - GError **error); -GLIB_AVAILABLE_IN_ALL -guint16 g_socket_listener_add_any_inet_port (GSocketListener *listener, - GObject *source_object, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GSocket * g_socket_listener_accept_socket (GSocketListener *listener, - GObject **source_object, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_socket_listener_accept_socket_async (GSocketListener *listener, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSocket * g_socket_listener_accept_socket_finish (GSocketListener *listener, - GAsyncResult *result, - GObject **source_object, - GError **error); - - -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_listener_accept (GSocketListener *listener, - GObject **source_object, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_socket_listener_accept_async (GSocketListener *listener, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GSocketConnection * g_socket_listener_accept_finish (GSocketListener *listener, - GAsyncResult *result, - GObject **source_object, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_socket_listener_close (GSocketListener *listener); - -G_END_DECLS - -#endif /* __G_SOCKET_LISTENER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketservice.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketservice.h deleted file mode 100644 index d10b566..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsocketservice.h +++ /dev/null @@ -1,93 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * Copyright © 2009 Red Hat, Inc - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_SOCKET_SERVICE_H__ -#define __G_SOCKET_SERVICE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_SOCKET_SERVICE (g_socket_service_get_type ()) -#define G_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_SOCKET_SERVICE, GSocketService)) -#define G_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_SOCKET_SERVICE, GSocketServiceClass)) -#define G_IS_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_SOCKET_SERVICE)) -#define G_IS_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_SOCKET_SERVICE)) -#define G_SOCKET_SERVICE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_SOCKET_SERVICE, GSocketServiceClass)) - -typedef struct _GSocketServicePrivate GSocketServicePrivate; -typedef struct _GSocketServiceClass GSocketServiceClass; - -/** - * GSocketServiceClass: - * @incomming: signal emitted when new connections are accepted - */ -struct _GSocketServiceClass -{ - GSocketListenerClass parent_class; - - gboolean (* incoming) (GSocketService *service, - GSocketConnection *connection, - GObject *source_object); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); -}; - -struct _GSocketService -{ - GSocketListener parent_instance; - GSocketServicePrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_socket_service_get_type (void); - -GLIB_AVAILABLE_IN_ALL -GSocketService *g_socket_service_new (void); -GLIB_AVAILABLE_IN_ALL -void g_socket_service_start (GSocketService *service); -GLIB_AVAILABLE_IN_ALL -void g_socket_service_stop (GSocketService *service); -GLIB_AVAILABLE_IN_ALL -gboolean g_socket_service_is_active (GSocketService *service); - - -G_END_DECLS - -#endif /* __G_SOCKET_SERVICE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsrvtarget.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsrvtarget.h deleted file mode 100644 index 6135ef2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gsrvtarget.h +++ /dev/null @@ -1,61 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SRV_TARGET_H__ -#define __G_SRV_TARGET_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -GType g_srv_target_get_type (void) G_GNUC_CONST; -#define G_TYPE_SRV_TARGET (g_srv_target_get_type ()) - -GLIB_AVAILABLE_IN_ALL -GSrvTarget *g_srv_target_new (const gchar *hostname, - guint16 port, - guint16 priority, - guint16 weight); -GLIB_AVAILABLE_IN_ALL -GSrvTarget *g_srv_target_copy (GSrvTarget *target); -GLIB_AVAILABLE_IN_ALL -void g_srv_target_free (GSrvTarget *target); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_srv_target_get_hostname (GSrvTarget *target); -GLIB_AVAILABLE_IN_ALL -guint16 g_srv_target_get_port (GSrvTarget *target); -GLIB_AVAILABLE_IN_ALL -guint16 g_srv_target_get_priority (GSrvTarget *target); -GLIB_AVAILABLE_IN_ALL -guint16 g_srv_target_get_weight (GSrvTarget *target); - -GLIB_AVAILABLE_IN_ALL -GList *g_srv_target_list_sort (GList *targets); - -G_END_DECLS - -#endif /* __G_SRV_TARGET_H__ */ - diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtask.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtask.h deleted file mode 100644 index d5a2d77..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtask.h +++ /dev/null @@ -1,160 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright 2011 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TASK_H__ -#define __G_TASK_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TASK (g_task_get_type ()) -#define G_TASK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TASK, GTask)) -#define G_TASK_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TASK, GTaskClass)) -#define G_IS_TASK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TASK)) -#define G_IS_TASK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TASK)) -#define G_TASK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TASK, GTaskClass)) - -typedef struct _GTaskClass GTaskClass; - -GLIB_AVAILABLE_IN_2_36 -GType g_task_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_36 -GTask *g_task_new (gpointer source_object, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer callback_data); - -GLIB_AVAILABLE_IN_2_36 -void g_task_report_error (gpointer source_object, - GAsyncReadyCallback callback, - gpointer callback_data, - gpointer source_tag, - GError *error); -GLIB_AVAILABLE_IN_2_36 -void g_task_report_new_error (gpointer source_object, - GAsyncReadyCallback callback, - gpointer callback_data, - gpointer source_tag, - GQuark domain, - gint code, - const char *format, - ...) G_GNUC_PRINTF(7, 8); - -GLIB_AVAILABLE_IN_2_36 -void g_task_set_task_data (GTask *task, - gpointer task_data, - GDestroyNotify task_data_destroy); -GLIB_AVAILABLE_IN_2_36 -void g_task_set_priority (GTask *task, - gint priority); -GLIB_AVAILABLE_IN_2_36 -void g_task_set_check_cancellable (GTask *task, - gboolean check_cancellable); -GLIB_AVAILABLE_IN_2_36 -void g_task_set_source_tag (GTask *task, - gpointer source_tag); - -GLIB_AVAILABLE_IN_2_36 -gpointer g_task_get_source_object (GTask *task); -GLIB_AVAILABLE_IN_2_36 -gpointer g_task_get_task_data (GTask *task); -GLIB_AVAILABLE_IN_2_36 -gint g_task_get_priority (GTask *task); -GLIB_AVAILABLE_IN_2_36 -GMainContext *g_task_get_context (GTask *task); -GLIB_AVAILABLE_IN_2_36 -GCancellable *g_task_get_cancellable (GTask *task); -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_get_check_cancellable (GTask *task); -GLIB_AVAILABLE_IN_2_36 -gpointer g_task_get_source_tag (GTask *task); - -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_is_valid (gpointer result, - gpointer source_object); - - -typedef void (*GTaskThreadFunc) (GTask *task, - gpointer source_object, - gpointer task_data, - GCancellable *cancellable); -GLIB_AVAILABLE_IN_2_36 -void g_task_run_in_thread (GTask *task, - GTaskThreadFunc task_func); -GLIB_AVAILABLE_IN_2_36 -void g_task_run_in_thread_sync (GTask *task, - GTaskThreadFunc task_func); -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_set_return_on_cancel (GTask *task, - gboolean return_on_cancel); -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_get_return_on_cancel (GTask *task); - -GLIB_AVAILABLE_IN_2_36 -void g_task_attach_source (GTask *task, - GSource *source, - GSourceFunc callback); - - -GLIB_AVAILABLE_IN_2_36 -void g_task_return_pointer (GTask *task, - gpointer result, - GDestroyNotify result_destroy); -GLIB_AVAILABLE_IN_2_36 -void g_task_return_boolean (GTask *task, - gboolean result); -GLIB_AVAILABLE_IN_2_36 -void g_task_return_int (GTask *task, - gssize result); - -GLIB_AVAILABLE_IN_2_36 -void g_task_return_error (GTask *task, - GError *error); -GLIB_AVAILABLE_IN_2_36 -void g_task_return_new_error (GTask *task, - GQuark domain, - gint code, - const char *format, - ...) G_GNUC_PRINTF (4, 5); - -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_return_error_if_cancelled (GTask *task); - -GLIB_AVAILABLE_IN_2_36 -gpointer g_task_propagate_pointer (GTask *task, - GError **error); -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_propagate_boolean (GTask *task, - GError **error); -GLIB_AVAILABLE_IN_2_36 -gssize g_task_propagate_int (GTask *task, - GError **error); -GLIB_AVAILABLE_IN_2_36 -gboolean g_task_had_error (GTask *task); - -G_END_DECLS - -#endif /* __G_TASK_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpconnection.h deleted file mode 100644 index 3d02f3a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpconnection.h +++ /dev/null @@ -1,71 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2008, 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_TCP_CONNECTION_H__ -#define __G_TCP_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TCP_CONNECTION (g_tcp_connection_get_type ()) -#define G_TCP_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_TCP_CONNECTION, GTcpConnection)) -#define G_TCP_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_TCP_CONNECTION, GTcpConnectionClass)) -#define G_IS_TCP_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_TCP_CONNECTION)) -#define G_IS_TCP_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_TCP_CONNECTION)) -#define G_TCP_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_TCP_CONNECTION, GTcpConnectionClass)) - -typedef struct _GTcpConnectionPrivate GTcpConnectionPrivate; -typedef struct _GTcpConnectionClass GTcpConnectionClass; - -struct _GTcpConnectionClass -{ - GSocketConnectionClass parent_class; -}; - -struct _GTcpConnection -{ - GSocketConnection parent_instance; - GTcpConnectionPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tcp_connection_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -void g_tcp_connection_set_graceful_disconnect (GTcpConnection *connection, - gboolean graceful_disconnect); -GLIB_AVAILABLE_IN_ALL -gboolean g_tcp_connection_get_graceful_disconnect (GTcpConnection *connection); - -G_END_DECLS - -#endif /* __G_TCP_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpwrapperconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpwrapperconnection.h deleted file mode 100644 index 43b1e3e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtcpwrapperconnection.h +++ /dev/null @@ -1,71 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * Copyright © 2010 Collabora Ltd. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Nicolas Dufresne - * - */ - -#ifndef __G_TCP_WRAPPER_CONNECTION_H__ -#define __G_TCP_WRAPPER_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TCP_WRAPPER_CONNECTION (g_tcp_wrapper_connection_get_type ()) -#define G_TCP_WRAPPER_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_TCP_WRAPPER_CONNECTION, GTcpWrapperConnection)) -#define G_TCP_WRAPPER_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_TCP_WRAPPER_CONNECTION, GTcpWrapperConnectionClass)) -#define G_IS_TCP_WRAPPER_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_TCP_WRAPPER_CONNECTION)) -#define G_IS_TCP_WRAPPER_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_TCP_WRAPPER_CONNECTION)) -#define G_TCP_WRAPPER_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_TCP_WRAPPER_CONNECTION, GTcpWrapperConnectionClass)) - -typedef struct _GTcpWrapperConnectionPrivate GTcpWrapperConnectionPrivate; -typedef struct _GTcpWrapperConnectionClass GTcpWrapperConnectionClass; - -struct _GTcpWrapperConnectionClass -{ - GTcpConnectionClass parent_class; -}; - -struct _GTcpWrapperConnection -{ - GTcpConnection parent_instance; - GTcpWrapperConnectionPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tcp_wrapper_connection_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketConnection *g_tcp_wrapper_connection_new (GIOStream *base_io_stream, - GSocket *socket); -GLIB_AVAILABLE_IN_ALL -GIOStream *g_tcp_wrapper_connection_get_base_io_stream (GTcpWrapperConnection *conn); - -G_END_DECLS - -#endif /* __G_TCP_WRAPPER_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtestdbus.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtestdbus.h deleted file mode 100644 index 00644d6..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtestdbus.h +++ /dev/null @@ -1,74 +0,0 @@ -/* GIO testing utilities - * - * Copyright (C) 2008-2010 Red Hat, Inc. - * Copyright (C) 2012 Collabora Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: David Zeuthen - * Xavier Claessens - */ - -#ifndef __G_TEST_DBUS_H__ -#define __G_TEST_DBUS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TEST_DBUS \ - (g_test_dbus_get_type ()) -#define G_TEST_DBUS(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_TEST_DBUS, \ - GTestDBus)) -#define G_IS_TEST_DBUS(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_TEST_DBUS)) - -GLIB_AVAILABLE_IN_2_34 -GType g_test_dbus_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_2_34 -GTestDBus * g_test_dbus_new (GTestDBusFlags flags); - -GLIB_AVAILABLE_IN_2_34 -GTestDBusFlags g_test_dbus_get_flags (GTestDBus *self); - -GLIB_AVAILABLE_IN_2_34 -const gchar * g_test_dbus_get_bus_address (GTestDBus *self); - -GLIB_AVAILABLE_IN_2_34 -void g_test_dbus_add_service_dir (GTestDBus *self, - const gchar *path); - -GLIB_AVAILABLE_IN_2_34 -void g_test_dbus_up (GTestDBus *self); - -GLIB_AVAILABLE_IN_2_34 -void g_test_dbus_stop (GTestDBus *self); - -GLIB_AVAILABLE_IN_2_34 -void g_test_dbus_down (GTestDBus *self); - -GLIB_AVAILABLE_IN_2_34 -void g_test_dbus_unset (void); - -G_END_DECLS - -#endif /* __G_TEST_DBUS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthemedicon.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthemedicon.h deleted file mode 100644 index 4cbd29b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthemedicon.h +++ /dev/null @@ -1,70 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_THEMED_ICON_H__ -#define __G_THEMED_ICON_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_THEMED_ICON (g_themed_icon_get_type ()) -#define G_THEMED_ICON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_THEMED_ICON, GThemedIcon)) -#define G_THEMED_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_THEMED_ICON, GThemedIconClass)) -#define G_IS_THEMED_ICON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_THEMED_ICON)) -#define G_IS_THEMED_ICON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_THEMED_ICON)) -#define G_THEMED_ICON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_THEMED_ICON, GThemedIconClass)) - -/** - * GThemedIcon: - * - * An implementation of #GIcon for themed icons. - **/ -typedef struct _GThemedIconClass GThemedIconClass; - -GLIB_AVAILABLE_IN_ALL -GType g_themed_icon_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GIcon *g_themed_icon_new (const char *iconname); -GLIB_AVAILABLE_IN_ALL -GIcon *g_themed_icon_new_with_default_fallbacks (const char *iconname); -GLIB_AVAILABLE_IN_ALL -GIcon *g_themed_icon_new_from_names (char **iconnames, - int len); -GLIB_AVAILABLE_IN_ALL -void g_themed_icon_prepend_name (GThemedIcon *icon, - const char *iconname); -GLIB_AVAILABLE_IN_ALL -void g_themed_icon_append_name (GThemedIcon *icon, - const char *iconname); - -GLIB_AVAILABLE_IN_ALL -const gchar* const * g_themed_icon_get_names (GThemedIcon *icon); - -G_END_DECLS - -#endif /* __G_THEMED_ICON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthreadedsocketservice.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthreadedsocketservice.h deleted file mode 100644 index 229be7e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gthreadedsocketservice.h +++ /dev/null @@ -1,83 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * Copyright © 2009 Red Hat, Inc - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - * Alexander Larsson - */ - -#ifndef __G_THREADED_SOCKET_SERVICE_H__ -#define __G_THREADED_SOCKET_SERVICE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_THREADED_SOCKET_SERVICE (g_threaded_socket_service_get_type ()) -#define G_THREADED_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_THREADED_SOCKET_SERVICE, \ - GThreadedSocketService)) -#define G_THREADED_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_THREADED_SOCKET_SERVICE, \ - GThreadedSocketServiceClass)) -#define G_IS_THREADED_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_THREADED_SOCKET_SERVICE)) -#define G_IS_THREADED_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_THREADED_SOCKET_SERVICE)) -#define G_THREADED_SOCKET_SERVICE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_THREADED_SOCKET_SERVICE, \ - GThreadedSocketServiceClass)) - -typedef struct _GThreadedSocketServicePrivate GThreadedSocketServicePrivate; -typedef struct _GThreadedSocketServiceClass GThreadedSocketServiceClass; - -struct _GThreadedSocketServiceClass -{ - GSocketServiceClass parent_class; - - gboolean (* run) (GThreadedSocketService *service, - GSocketConnection *connection, - GObject *source_object); - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -struct _GThreadedSocketService -{ - GSocketService parent_instance; - GThreadedSocketServicePrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_threaded_socket_service_get_type (void); -GLIB_AVAILABLE_IN_ALL -GSocketService * g_threaded_socket_service_new (int max_threads); - -G_END_DECLS - -#endif /* __G_THREADED_SOCKET_SERVICE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsbackend.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsbackend.h deleted file mode 100644 index 19f08ad..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsbackend.h +++ /dev/null @@ -1,98 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TLS_BACKEND_H__ -#define __G_TLS_BACKEND_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_TLS_BACKEND_EXTENSION_POINT_NAME: - * - * Extension point for TLS functionality via #GTlsBackend. - * See Extending GIO. - */ -#define G_TLS_BACKEND_EXTENSION_POINT_NAME "gio-tls-backend" - -#define G_TYPE_TLS_BACKEND (g_tls_backend_get_type ()) -#define G_TLS_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_TLS_BACKEND, GTlsBackend)) -#define G_IS_TLS_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_TLS_BACKEND)) -#define G_TLS_BACKEND_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_TLS_BACKEND, GTlsBackendInterface)) - -typedef struct _GTlsBackend GTlsBackend; -typedef struct _GTlsBackendInterface GTlsBackendInterface; - -/** - * GTlsBackendInterface: - * @g_iface: The parent interface. - * @supports_tls: returns whether the backend supports TLS. - * @get_default_database: returns a default #GTlsDatabase instance. - * @get_certificate_type: returns the #GTlsCertificate implementation type - * @get_client_connection_type: returns the #GTlsClientConnection implementation type - * @get_server_connection_type: returns the #GTlsServerConnection implementation type - * @get_file_database_type: returns the #GTlsFileDatabase implementation type. - * - * Provides an interface for describing TLS-related types. - * - * Since: 2.28 - */ -struct _GTlsBackendInterface -{ - GTypeInterface g_iface; - - /* methods */ - gboolean ( *supports_tls) (GTlsBackend *backend); - GType ( *get_certificate_type) (void); - GType ( *get_client_connection_type) (void); - GType ( *get_server_connection_type) (void); - GType ( *get_file_database_type) (void); - GTlsDatabase * ( *get_default_database) (GTlsBackend *backend); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_backend_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsBackend * g_tls_backend_get_default (void); - -GLIB_AVAILABLE_IN_ALL -GTlsDatabase * g_tls_backend_get_default_database (GTlsBackend *backend); - -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_backend_supports_tls (GTlsBackend *backend); - -GLIB_AVAILABLE_IN_ALL -GType g_tls_backend_get_certificate_type (GTlsBackend *backend); -GLIB_AVAILABLE_IN_ALL -GType g_tls_backend_get_client_connection_type (GTlsBackend *backend); -GLIB_AVAILABLE_IN_ALL -GType g_tls_backend_get_server_connection_type (GTlsBackend *backend); -GLIB_AVAILABLE_IN_ALL -GType g_tls_backend_get_file_database_type (GTlsBackend *backend); - -G_END_DECLS - -#endif /* __G_TLS_BACKEND_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlscertificate.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlscertificate.h deleted file mode 100644 index dd6c3a1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlscertificate.h +++ /dev/null @@ -1,94 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TLS_CERTIFICATE_H__ -#define __G_TLS_CERTIFICATE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_CERTIFICATE (g_tls_certificate_get_type ()) -#define G_TLS_CERTIFICATE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_CERTIFICATE, GTlsCertificate)) -#define G_TLS_CERTIFICATE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_CERTIFICATE, GTlsCertificateClass)) -#define G_IS_TLS_CERTIFICATE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_CERTIFICATE)) -#define G_IS_TLS_CERTIFICATE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_CERTIFICATE)) -#define G_TLS_CERTIFICATE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_CERTIFICATE, GTlsCertificateClass)) - -typedef struct _GTlsCertificateClass GTlsCertificateClass; -typedef struct _GTlsCertificatePrivate GTlsCertificatePrivate; - -struct _GTlsCertificate { - GObject parent_instance; - - GTlsCertificatePrivate *priv; -}; - -struct _GTlsCertificateClass -{ - GObjectClass parent_class; - - GTlsCertificateFlags (* verify) (GTlsCertificate *cert, - GSocketConnectable *identity, - GTlsCertificate *trusted_ca); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_certificate_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_certificate_new_from_pem (const gchar *data, - gssize length, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_certificate_new_from_file (const gchar *file, - GError **error); -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_certificate_new_from_files (const gchar *cert_file, - const gchar *key_file, - GError **error); -GLIB_AVAILABLE_IN_ALL -GList *g_tls_certificate_list_new_from_file (const gchar *file, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_certificate_get_issuer (GTlsCertificate *cert); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificateFlags g_tls_certificate_verify (GTlsCertificate *cert, - GSocketConnectable *identity, - GTlsCertificate *trusted_ca); - -GLIB_AVAILABLE_IN_2_34 -gboolean g_tls_certificate_is_same (GTlsCertificate *cert_one, - GTlsCertificate *cert_two); - -G_END_DECLS - -#endif /* __G_TLS_CERTIFICATE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsclientconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsclientconnection.h deleted file mode 100644 index aa216f4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsclientconnection.h +++ /dev/null @@ -1,73 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TLS_CLIENT_CONNECTION_H__ -#define __G_TLS_CLIENT_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_CLIENT_CONNECTION (g_tls_client_connection_get_type ()) -#define G_TLS_CLIENT_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_CLIENT_CONNECTION, GTlsClientConnection)) -#define G_IS_TLS_CLIENT_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_CLIENT_CONNECTION)) -#define G_TLS_CLIENT_CONNECTION_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TLS_CLIENT_CONNECTION, GTlsClientConnectionInterface)) - -typedef struct _GTlsClientConnectionInterface GTlsClientConnectionInterface; - -struct _GTlsClientConnectionInterface -{ - GTypeInterface g_iface; - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_client_connection_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GIOStream * g_tls_client_connection_new (GIOStream *base_io_stream, - GSocketConnectable *server_identity, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificateFlags g_tls_client_connection_get_validation_flags (GTlsClientConnection *conn); -GLIB_AVAILABLE_IN_ALL -void g_tls_client_connection_set_validation_flags (GTlsClientConnection *conn, - GTlsCertificateFlags flags); -GLIB_AVAILABLE_IN_ALL -GSocketConnectable *g_tls_client_connection_get_server_identity (GTlsClientConnection *conn); -GLIB_AVAILABLE_IN_ALL -void g_tls_client_connection_set_server_identity (GTlsClientConnection *conn, - GSocketConnectable *identity); -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_client_connection_get_use_ssl3 (GTlsClientConnection *conn); -GLIB_AVAILABLE_IN_ALL -void g_tls_client_connection_set_use_ssl3 (GTlsClientConnection *conn, - gboolean use_ssl3); -GLIB_AVAILABLE_IN_ALL -GList * g_tls_client_connection_get_accepted_cas (GTlsClientConnection *conn); - -G_END_DECLS - -#endif /* __G_TLS_CLIENT_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsconnection.h deleted file mode 100644 index 465c936..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsconnection.h +++ /dev/null @@ -1,156 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TLS_CONNECTION_H__ -#define __G_TLS_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_CONNECTION (g_tls_connection_get_type ()) -#define G_TLS_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_CONNECTION, GTlsConnection)) -#define G_TLS_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_CONNECTION, GTlsConnectionClass)) -#define G_IS_TLS_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_CONNECTION)) -#define G_IS_TLS_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_CONNECTION)) -#define G_TLS_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_CONNECTION, GTlsConnectionClass)) - -typedef struct _GTlsConnectionClass GTlsConnectionClass; -typedef struct _GTlsConnectionPrivate GTlsConnectionPrivate; - -struct _GTlsConnection { - GIOStream parent_instance; - - GTlsConnectionPrivate *priv; -}; - -struct _GTlsConnectionClass -{ - GIOStreamClass parent_class; - - /* signals */ - gboolean ( *accept_certificate) (GTlsConnection *connection, - GTlsCertificate *peer_cert, - GTlsCertificateFlags errors); - - /* methods */ - gboolean ( *handshake ) (GTlsConnection *conn, - GCancellable *cancellable, - GError **error); - - void ( *handshake_async ) (GTlsConnection *conn, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean ( *handshake_finish ) (GTlsConnection *conn, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_connection_get_type (void) G_GNUC_CONST; - -GLIB_DEPRECATED -void g_tls_connection_set_use_system_certdb (GTlsConnection *conn, - gboolean use_system_certdb); -GLIB_DEPRECATED -gboolean g_tls_connection_get_use_system_certdb (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_set_database (GTlsConnection *conn, - GTlsDatabase *database); -GLIB_AVAILABLE_IN_ALL -GTlsDatabase * g_tls_connection_get_database (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_set_certificate (GTlsConnection *conn, - GTlsCertificate *certificate); -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_connection_get_certificate (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_set_interaction (GTlsConnection *conn, - GTlsInteraction *interaction); -GLIB_AVAILABLE_IN_ALL -GTlsInteraction * g_tls_connection_get_interaction (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate *g_tls_connection_get_peer_certificate (GTlsConnection *conn); -GLIB_AVAILABLE_IN_ALL -GTlsCertificateFlags g_tls_connection_get_peer_certificate_errors (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_set_require_close_notify (GTlsConnection *conn, - gboolean require_close_notify); -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_connection_get_require_close_notify (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_set_rehandshake_mode (GTlsConnection *conn, - GTlsRehandshakeMode mode); -GLIB_AVAILABLE_IN_ALL -GTlsRehandshakeMode g_tls_connection_get_rehandshake_mode (GTlsConnection *conn); - -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_connection_handshake (GTlsConnection *conn, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_connection_handshake_async (GTlsConnection *conn, - int io_priority, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_connection_handshake_finish (GTlsConnection *conn, - GAsyncResult *result, - GError **error); - -/** - * G_TLS_ERROR: - * - * Error domain for TLS. Errors in this domain will be from the - * #GTlsError enumeration. See #GError for more information on error - * domains. - */ -#define G_TLS_ERROR (g_tls_error_quark ()) -GLIB_AVAILABLE_IN_ALL -GQuark g_tls_error_quark (void); - - -/*< protected >*/ -GLIB_AVAILABLE_IN_ALL -gboolean g_tls_connection_emit_accept_certificate (GTlsConnection *conn, - GTlsCertificate *peer_cert, - GTlsCertificateFlags errors); - -G_END_DECLS - -#endif /* __G_TLS_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsdatabase.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsdatabase.h deleted file mode 100644 index c11ca7a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsdatabase.h +++ /dev/null @@ -1,249 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Stef Walter - */ - -#ifndef __G_TLS_DATABASE_H__ -#define __G_TLS_DATABASE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TLS_DATABASE_PURPOSE_AUTHENTICATE_SERVER "1.3.6.1.5.5.7.3.1" -#define G_TLS_DATABASE_PURPOSE_AUTHENTICATE_CLIENT "1.3.6.1.5.5.7.3.2" - -#define G_TYPE_TLS_DATABASE (g_tls_database_get_type ()) -#define G_TLS_DATABASE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_DATABASE, GTlsDatabase)) -#define G_TLS_DATABASE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_DATABASE, GTlsDatabaseClass)) -#define G_IS_TLS_DATABASE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_DATABASE)) -#define G_IS_TLS_DATABASE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_DATABASE)) -#define G_TLS_DATABASE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_DATABASE, GTlsDatabaseClass)) - -typedef struct _GTlsDatabaseClass GTlsDatabaseClass; -typedef struct _GTlsDatabasePrivate GTlsDatabasePrivate; - -struct _GTlsDatabase -{ - GObject parent_instance; - - GTlsDatabasePrivate *priv; -}; - -struct _GTlsDatabaseClass -{ - GObjectClass parent_class; - - /* virtual methods */ - - GTlsCertificateFlags (*verify_chain) (GTlsDatabase *self, - GTlsCertificate *chain, - const gchar *purpose, - GSocketConnectable *identity, - GTlsInteraction *interaction, - GTlsDatabaseVerifyFlags flags, - GCancellable *cancellable, - GError **error); - - void (*verify_chain_async) (GTlsDatabase *self, - GTlsCertificate *chain, - const gchar *purpose, - GSocketConnectable *identity, - GTlsInteraction *interaction, - GTlsDatabaseVerifyFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GTlsCertificateFlags (*verify_chain_finish) (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - - gchar* (*create_certificate_handle) (GTlsDatabase *self, - GTlsCertificate *certificate); - - GTlsCertificate* (*lookup_certificate_for_handle) (GTlsDatabase *self, - const gchar *handle, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - - void (*lookup_certificate_for_handle_async) (GTlsDatabase *self, - const gchar *handle, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GTlsCertificate* (*lookup_certificate_for_handle_finish) (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - - GTlsCertificate* (*lookup_certificate_issuer) (GTlsDatabase *self, - GTlsCertificate *certificate, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - - void (*lookup_certificate_issuer_async) (GTlsDatabase *self, - GTlsCertificate *certificate, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GTlsCertificate* (*lookup_certificate_issuer_finish) (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - - GList* (*lookup_certificates_issued_by) (GTlsDatabase *self, - GByteArray *issuer_raw_dn, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - - void (*lookup_certificates_issued_by_async) (GTlsDatabase *self, - GByteArray *issuer_raw_dn, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GList* (*lookup_certificates_issued_by_finish) (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[16]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_database_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsCertificateFlags g_tls_database_verify_chain (GTlsDatabase *self, - GTlsCertificate *chain, - const gchar *purpose, - GSocketConnectable *identity, - GTlsInteraction *interaction, - GTlsDatabaseVerifyFlags flags, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_database_verify_chain_async (GTlsDatabase *self, - GTlsCertificate *chain, - const gchar *purpose, - GSocketConnectable *identity, - GTlsInteraction *interaction, - GTlsDatabaseVerifyFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificateFlags g_tls_database_verify_chain_finish (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gchar* g_tls_database_create_certificate_handle (GTlsDatabase *self, - GTlsCertificate *certificate); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate* g_tls_database_lookup_certificate_for_handle (GTlsDatabase *self, - const gchar *handle, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_database_lookup_certificate_for_handle_async (GTlsDatabase *self, - const gchar *handle, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate* g_tls_database_lookup_certificate_for_handle_finish (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate* g_tls_database_lookup_certificate_issuer (GTlsDatabase *self, - GTlsCertificate *certificate, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_database_lookup_certificate_issuer_async (GTlsDatabase *self, - GTlsCertificate *certificate, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GTlsCertificate* g_tls_database_lookup_certificate_issuer_finish (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_ALL -GList* g_tls_database_lookup_certificates_issued_by (GTlsDatabase *self, - GByteArray *issuer_raw_dn, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_database_lookup_certificates_issued_by_async (GTlsDatabase *self, - GByteArray *issuer_raw_dn, - GTlsInteraction *interaction, - GTlsDatabaseLookupFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GList* g_tls_database_lookup_certificates_issued_by_finish (GTlsDatabase *self, - GAsyncResult *result, - GError **error); - -G_END_DECLS - -#endif /* __G_TLS_DATABASE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsfiledatabase.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsfiledatabase.h deleted file mode 100644 index 5024949..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsfiledatabase.h +++ /dev/null @@ -1,58 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2010 Collabora, Ltd. - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * See the included COPYING file for more information. - * - * Author: Stef Walter - */ - -#ifndef __G_TLS_FILE_DATABASE_H__ -#define __G_TLS_FILE_DATABASE_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_FILE_DATABASE (g_tls_file_database_get_type ()) -#define G_TLS_FILE_DATABASE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_FILE_DATABASE, GTlsFileDatabase)) -#define G_IS_TLS_FILE_DATABASE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_FILE_DATABASE)) -#define G_TLS_FILE_DATABASE_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TLS_FILE_DATABASE, GTlsFileDatabaseInterface)) - -typedef struct _GTlsFileDatabaseInterface GTlsFileDatabaseInterface; - -/** - * GTlsFileDatabaseInterface: - * @g_iface: The parent interface. - * - * Provides an interface for #GTlsFileDatabase implementations. - * - */ -struct _GTlsFileDatabaseInterface -{ - GTypeInterface g_iface; - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[8]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_file_database_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsDatabase* g_tls_file_database_new (const gchar *anchors, - GError **error); - -G_END_DECLS - -#endif /* __G_TLS_FILE_DATABASE_H___ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsinteraction.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsinteraction.h deleted file mode 100644 index 283464e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsinteraction.h +++ /dev/null @@ -1,107 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2011 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Stef Walter - */ - -#ifndef __G_TLS_INTERACTION_H__ -#define __G_TLS_INTERACTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_INTERACTION (g_tls_interaction_get_type ()) -#define G_TLS_INTERACTION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TLS_INTERACTION, GTlsInteraction)) -#define G_TLS_INTERACTION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TLS_INTERACTION, GTlsInteractionClass)) -#define G_IS_TLS_INTERACTION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TLS_INTERACTION)) -#define G_IS_TLS_INTERACTION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TLS_INTERACTION)) -#define G_TLS_INTERACTION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TLS_INTERACTION, GTlsInteractionClass)) - -typedef struct _GTlsInteractionClass GTlsInteractionClass; -typedef struct _GTlsInteractionPrivate GTlsInteractionPrivate; - -struct _GTlsInteraction -{ - /*< private >*/ - GObject parent_instance; - GTlsInteractionPrivate *priv; -}; - -struct _GTlsInteractionClass -{ - /*< private >*/ - GObjectClass parent_class; - - /*< public >*/ - GTlsInteractionResult (* ask_password) (GTlsInteraction *interaction, - GTlsPassword *password, - GCancellable *cancellable, - GError **error); - - void (* ask_password_async) (GTlsInteraction *interaction, - GTlsPassword *password, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - - GTlsInteractionResult (* ask_password_finish) (GTlsInteraction *interaction, - GAsyncResult *result, - GError **error); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[24]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_interaction_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsInteractionResult g_tls_interaction_invoke_ask_password (GTlsInteraction *interaction, - GTlsPassword *password, - GCancellable *cancellable, - GError **error); - - -GLIB_AVAILABLE_IN_ALL -GTlsInteractionResult g_tls_interaction_ask_password (GTlsInteraction *interaction, - GTlsPassword *password, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_tls_interaction_ask_password_async (GTlsInteraction *interaction, - GTlsPassword *password, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GTlsInteractionResult g_tls_interaction_ask_password_finish (GTlsInteraction *interaction, - GAsyncResult *result, - GError **error); - -G_END_DECLS - -#endif /* __G_TLS_INTERACTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlspassword.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlspassword.h deleted file mode 100644 index 3db365d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlspassword.h +++ /dev/null @@ -1,112 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2011 Collabora, Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Stef Walter - */ - -#ifndef __G_TLS_PASSWORD_H__ -#define __G_TLS_PASSWORD_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_PASSWORD (g_tls_password_get_type ()) -#define G_TLS_PASSWORD(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TLS_PASSWORD, GTlsPassword)) -#define G_TLS_PASSWORD_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TLS_PASSWORD, GTlsPasswordClass)) -#define G_IS_TLS_PASSWORD(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TLS_PASSWORD)) -#define G_IS_TLS_PASSWORD_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TLS_PASSWORD)) -#define G_TLS_PASSWORD_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TLS_PASSWORD, GTlsPasswordClass)) - -typedef struct _GTlsPasswordClass GTlsPasswordClass; -typedef struct _GTlsPasswordPrivate GTlsPasswordPrivate; - -struct _GTlsPassword -{ - GObject parent_instance; - - GTlsPasswordPrivate *priv; -}; - -struct _GTlsPasswordClass -{ - GObjectClass parent_class; - - /* methods */ - - const guchar * ( *get_value) (GTlsPassword *password, - gsize *length); - - void ( *set_value) (GTlsPassword *password, - guchar *value, - gssize length, - GDestroyNotify destroy); - - const gchar* ( *get_default_warning) (GTlsPassword *password); - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[4]; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_password_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GTlsPassword * g_tls_password_new (GTlsPasswordFlags flags, - const gchar *description); - -GLIB_AVAILABLE_IN_ALL -const guchar * g_tls_password_get_value (GTlsPassword *password, - gsize *length); -GLIB_AVAILABLE_IN_ALL -void g_tls_password_set_value (GTlsPassword *password, - const guchar *value, - gssize length); -GLIB_AVAILABLE_IN_ALL -void g_tls_password_set_value_full (GTlsPassword *password, - guchar *value, - gssize length, - GDestroyNotify destroy); - -GLIB_AVAILABLE_IN_ALL -GTlsPasswordFlags g_tls_password_get_flags (GTlsPassword *password); -GLIB_AVAILABLE_IN_ALL -void g_tls_password_set_flags (GTlsPassword *password, - GTlsPasswordFlags flags); - -GLIB_AVAILABLE_IN_ALL -const gchar* g_tls_password_get_description (GTlsPassword *password); -GLIB_AVAILABLE_IN_ALL -void g_tls_password_set_description (GTlsPassword *password, - const gchar *description); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_tls_password_get_warning (GTlsPassword *password); -GLIB_AVAILABLE_IN_ALL -void g_tls_password_set_warning (GTlsPassword *password, - const gchar *warning); - -G_END_DECLS - -#endif /* __G_TLS_PASSWORD_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsserverconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsserverconnection.h deleted file mode 100644 index 6550d19..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gtlsserverconnection.h +++ /dev/null @@ -1,63 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TLS_SERVER_CONNECTION_H__ -#define __G_TLS_SERVER_CONNECTION_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_TLS_SERVER_CONNECTION (g_tls_server_connection_get_type ()) -#define G_TLS_SERVER_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_SERVER_CONNECTION, GTlsServerConnection)) -#define G_IS_TLS_SERVER_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_SERVER_CONNECTION)) -#define G_TLS_SERVER_CONNECTION_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TLS_SERVER_CONNECTION, GTlsServerConnectionInterface)) - -/** - * GTlsServerConnection: - * - * TLS server-side connection. This is the server-side implementation - * of a #GTlsConnection. - * - * Since: 2.28 - */ -typedef struct _GTlsServerConnectionInterface GTlsServerConnectionInterface; - -struct _GTlsServerConnectionInterface -{ - GTypeInterface g_iface; - -}; - -GLIB_AVAILABLE_IN_ALL -GType g_tls_server_connection_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GIOStream * g_tls_server_connection_new (GIOStream *base_io_stream, - GTlsCertificate *certificate, - GError **error); - -G_END_DECLS - -#endif /* __G_TLS_SERVER_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixconnection.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixconnection.h deleted file mode 100644 index bd87374..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixconnection.h +++ /dev/null @@ -1,100 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_UNIX_CONNECTION_H__ -#define __G_UNIX_CONNECTION_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_CONNECTION (g_unix_connection_get_type ()) -#define G_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_UNIX_CONNECTION, GUnixConnection)) -#define G_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_UNIX_CONNECTION, GUnixConnectionClass)) -#define G_IS_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_UNIX_CONNECTION)) -#define G_IS_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_UNIX_CONNECTION)) -#define G_UNIX_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_UNIX_CONNECTION, GUnixConnectionClass)) - -typedef struct _GUnixConnection GUnixConnection; -typedef struct _GUnixConnectionPrivate GUnixConnectionPrivate; -typedef struct _GUnixConnectionClass GUnixConnectionClass; - -struct _GUnixConnectionClass -{ - GSocketConnectionClass parent_class; -}; - -struct _GUnixConnection -{ - GSocketConnection parent_instance; - GUnixConnectionPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_connection_get_type (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_connection_send_fd (GUnixConnection *connection, - gint fd, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint g_unix_connection_receive_fd (GUnixConnection *connection, - GCancellable *cancellable, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_connection_send_credentials (GUnixConnection *connection, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_32 -void g_unix_connection_send_credentials_async (GUnixConnection *connection, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_2_32 -gboolean g_unix_connection_send_credentials_finish (GUnixConnection *connection, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -GCredentials *g_unix_connection_receive_credentials (GUnixConnection *connection, - GCancellable *cancellable, - GError **error); -GLIB_AVAILABLE_IN_2_32 -void g_unix_connection_receive_credentials_async (GUnixConnection *connection, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GCredentials *g_unix_connection_receive_credentials_finish (GUnixConnection *connection, - GAsyncResult *result, - GError **error); - -G_END_DECLS - -#endif /* __G_UNIX_CONNECTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixcredentialsmessage.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixcredentialsmessage.h deleted file mode 100644 index 17b4a31..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixcredentialsmessage.h +++ /dev/null @@ -1,87 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2010 Red Hat, Inc. - * Copyright (C) 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: David Zeuthen - */ - -#ifndef __G_UNIX_CREDENTIALS_MESSAGE_H__ -#define __G_UNIX_CREDENTIALS_MESSAGE_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_CREDENTIALS_MESSAGE (g_unix_credentials_message_get_type ()) -#define G_UNIX_CREDENTIALS_MESSAGE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_CREDENTIALS_MESSAGE, GUnixCredentialsMessage)) -#define G_UNIX_CREDENTIALS_MESSAGE_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), G_TYPE_UNIX_CREDENTIALS_MESSAGE, GUnixCredentialsMessageClass)) -#define G_IS_UNIX_CREDENTIALS_MESSAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_CREDENTIALS_MESSAGE)) -#define G_IS_UNIX_CREDENTIALS_MESSAGE_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), G_TYPE_UNIX_CREDENTIALS_MESSAGE)) -#define G_UNIX_CREDENTIALS_MESSAGE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_UNIX_CREDENTIALS_MESSAGE, GUnixCredentialsMessageClass)) - -typedef struct _GUnixCredentialsMessagePrivate GUnixCredentialsMessagePrivate; -typedef struct _GUnixCredentialsMessageClass GUnixCredentialsMessageClass; - -/** - * GUnixCredentialsMessageClass: - * - * Class structure for #GUnixCredentialsMessage. - * - * Since: 2.26 - */ -struct _GUnixCredentialsMessageClass -{ - GSocketControlMessageClass parent_class; - - /*< private >*/ - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); -}; - -/** - * GUnixCredentialsMessage: - * - * The #GUnixCredentialsMessage structure contains only private data - * and should only be accessed using the provided API. - * - * Since: 2.26 - */ -struct _GUnixCredentialsMessage -{ - GSocketControlMessage parent_instance; - GUnixCredentialsMessagePrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_credentials_message_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GSocketControlMessage *g_unix_credentials_message_new (void); -GLIB_AVAILABLE_IN_ALL -GSocketControlMessage *g_unix_credentials_message_new_with_credentials (GCredentials *credentials); -GLIB_AVAILABLE_IN_ALL -GCredentials *g_unix_credentials_message_get_credentials (GUnixCredentialsMessage *message); - -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_credentials_message_is_supported (void); - -G_END_DECLS - -#endif /* __G_UNIX_CREDENTIALS_MESSAGE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdlist.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdlist.h deleted file mode 100644 index 6bbfb48..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdlist.h +++ /dev/null @@ -1,96 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_UNIX_FD_LIST_H__ -#define __G_UNIX_FD_LIST_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_FD_LIST (g_unix_fd_list_get_type ()) -#define G_UNIX_FD_LIST(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_UNIX_FD_LIST, GUnixFDList)) -#define G_UNIX_FD_LIST_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_UNIX_FD_LIST, GUnixFDListClass)) -#define G_IS_UNIX_FD_LIST(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_UNIX_FD_LIST)) -#define G_IS_UNIX_FD_LIST_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_UNIX_FD_LIST)) -#define G_UNIX_FD_LIST_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_UNIX_FD_LIST, GUnixFDListClass)) - -typedef struct _GUnixFDListPrivate GUnixFDListPrivate; -typedef struct _GUnixFDListClass GUnixFDListClass; - -struct _GUnixFDListClass -{ - GObjectClass parent_class; - - /*< private >*/ - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -struct _GUnixFDList -{ - GObject parent_instance; - GUnixFDListPrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_fd_list_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GUnixFDList * g_unix_fd_list_new (void); -GLIB_AVAILABLE_IN_ALL -GUnixFDList * g_unix_fd_list_new_from_array (const gint *fds, - gint n_fds); - -GLIB_AVAILABLE_IN_ALL -gint g_unix_fd_list_append (GUnixFDList *list, - gint fd, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gint g_unix_fd_list_get_length (GUnixFDList *list); - -GLIB_AVAILABLE_IN_ALL -gint g_unix_fd_list_get (GUnixFDList *list, - gint index_, - GError **error); - -GLIB_AVAILABLE_IN_ALL -const gint * g_unix_fd_list_peek_fds (GUnixFDList *list, - gint *length); - -GLIB_AVAILABLE_IN_ALL -gint * g_unix_fd_list_steal_fds (GUnixFDList *list, - gint *length); - -G_END_DECLS - -#endif /* __G_UNIX_FD_LIST_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdmessage.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdmessage.h deleted file mode 100644 index 41f9b0a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixfdmessage.h +++ /dev/null @@ -1,84 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright © 2009 Codethink Limited - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation; either version 2 of the licence or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Ryan Lortie - */ - -#ifndef __G_UNIX_FD_MESSAGE_H__ -#define __G_UNIX_FD_MESSAGE_H__ - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_FD_MESSAGE (g_unix_fd_message_get_type ()) -#define G_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ - G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessage)) -#define G_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ - G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass)) -#define G_IS_UNIX_FD_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ - G_TYPE_UNIX_FD_MESSAGE)) -#define G_IS_UNIX_FD_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ - G_TYPE_UNIX_FD_MESSAGE)) -#define G_UNIX_FD_MESSAGE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ - G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass)) - -typedef struct _GUnixFDMessagePrivate GUnixFDMessagePrivate; -typedef struct _GUnixFDMessageClass GUnixFDMessageClass; -typedef struct _GUnixFDMessage GUnixFDMessage; - -struct _GUnixFDMessageClass -{ - GSocketControlMessageClass parent_class; - - /*< private >*/ - - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); -}; - -struct _GUnixFDMessage -{ - GSocketControlMessage parent_instance; - GUnixFDMessagePrivate *priv; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_fd_message_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GSocketControlMessage * g_unix_fd_message_new_with_fd_list (GUnixFDList *fd_list); -GLIB_AVAILABLE_IN_ALL -GSocketControlMessage * g_unix_fd_message_new (void); - -GLIB_AVAILABLE_IN_ALL -GUnixFDList * g_unix_fd_message_get_fd_list (GUnixFDMessage *message); - -GLIB_AVAILABLE_IN_ALL -gint * g_unix_fd_message_steal_fds (GUnixFDMessage *message, - gint *length); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_fd_message_append_fd (GUnixFDMessage *message, - gint fd, - GError **error); - -G_END_DECLS - -#endif /* __G_UNIX_FD_MESSAGE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixinputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixinputstream.h deleted file mode 100644 index a8beb88..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixinputstream.h +++ /dev/null @@ -1,83 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_UNIX_INPUT_STREAM_H__ -#define __G_UNIX_INPUT_STREAM_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_INPUT_STREAM (g_unix_input_stream_get_type ()) -#define G_UNIX_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_INPUT_STREAM, GUnixInputStream)) -#define G_UNIX_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_INPUT_STREAM, GUnixInputStreamClass)) -#define G_IS_UNIX_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_INPUT_STREAM)) -#define G_IS_UNIX_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_INPUT_STREAM)) -#define G_UNIX_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_UNIX_INPUT_STREAM, GUnixInputStreamClass)) - -/** - * GUnixInputStream: - * - * Implements #GInputStream for reading from selectable unix file descriptors - **/ -typedef struct _GUnixInputStream GUnixInputStream; -typedef struct _GUnixInputStreamClass GUnixInputStreamClass; -typedef struct _GUnixInputStreamPrivate GUnixInputStreamPrivate; - -struct _GUnixInputStream -{ - GInputStream parent_instance; - - /*< private >*/ - GUnixInputStreamPrivate *priv; -}; - -struct _GUnixInputStreamClass -{ - GInputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_input_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GInputStream * g_unix_input_stream_new (gint fd, - gboolean close_fd); -GLIB_AVAILABLE_IN_ALL -void g_unix_input_stream_set_close_fd (GUnixInputStream *stream, - gboolean close_fd); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_input_stream_get_close_fd (GUnixInputStream *stream); -GLIB_AVAILABLE_IN_ALL -gint g_unix_input_stream_get_fd (GUnixInputStream *stream); - -G_END_DECLS - -#endif /* __G_UNIX_INPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixmounts.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixmounts.h deleted file mode 100644 index bd269a3..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixmounts.h +++ /dev/null @@ -1,141 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_UNIX_MOUNTS_H__ -#define __G_UNIX_MOUNTS_H__ - -#include - -G_BEGIN_DECLS - -/** - * GUnixMountEntry: - * - * Defines a Unix mount entry (e.g. /media/cdrom). - * This corresponds roughly to a mtab entry. - **/ -typedef struct _GUnixMountEntry GUnixMountEntry; - -/** - * GUnixMountPoint: - * - * Defines a Unix mount point (e.g. /dev). - * This corresponds roughly to a fstab entry. - **/ -typedef struct _GUnixMountPoint GUnixMountPoint; - -/** - * GUnixMountMonitor: - * - * Watches #GUnixMounts for changes. - **/ -typedef struct _GUnixMountMonitor GUnixMountMonitor; -typedef struct _GUnixMountMonitorClass GUnixMountMonitorClass; - -#define G_TYPE_UNIX_MOUNT_MONITOR (g_unix_mount_monitor_get_type ()) -#define G_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitor)) -#define G_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_MOUNT_MONITOR, GUnixMountMonitorClass)) -#define G_IS_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT_MONITOR)) -#define G_IS_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT_MONITOR)) - -GLIB_AVAILABLE_IN_ALL -void g_unix_mount_free (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -void g_unix_mount_point_free (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -gint g_unix_mount_compare (GUnixMountEntry *mount1, - GUnixMountEntry *mount2); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_get_mount_path (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_get_device_path (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_get_fs_type (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_is_readonly (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_is_system_internal (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_guess_can_eject (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_guess_should_display (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -char * g_unix_mount_guess_name (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -GIcon * g_unix_mount_guess_icon (GUnixMountEntry *mount_entry); -GLIB_AVAILABLE_IN_ALL -GIcon * g_unix_mount_guess_symbolic_icon (GUnixMountEntry *mount_entry); - - -GLIB_AVAILABLE_IN_ALL -gint g_unix_mount_point_compare (GUnixMountPoint *mount1, - GUnixMountPoint *mount2); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_point_get_mount_path (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_point_get_device_path (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_mount_point_get_fs_type (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_2_32 -const char * g_unix_mount_point_get_options (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_point_is_readonly (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_point_is_user_mountable (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_point_is_loopback (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_point_guess_can_eject (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -char * g_unix_mount_point_guess_name (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -GIcon * g_unix_mount_point_guess_icon (GUnixMountPoint *mount_point); -GLIB_AVAILABLE_IN_ALL -GIcon * g_unix_mount_point_guess_symbolic_icon (GUnixMountPoint *mount_point); - - -GLIB_AVAILABLE_IN_ALL -GList * g_unix_mount_points_get (guint64 *time_read); -GLIB_AVAILABLE_IN_ALL -GList * g_unix_mounts_get (guint64 *time_read); -GLIB_AVAILABLE_IN_ALL -GUnixMountEntry *g_unix_mount_at (const char *mount_path, - guint64 *time_read); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mounts_changed_since (guint64 time); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_mount_points_changed_since (guint64 time); - -GLIB_AVAILABLE_IN_ALL -GType g_unix_mount_monitor_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GUnixMountMonitor *g_unix_mount_monitor_new (void); -GLIB_AVAILABLE_IN_ALL -void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor, - int limit_msec); - -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_is_mount_path_system_internal (const char *mount_path); - -G_END_DECLS - -#endif /* __G_UNIX_MOUNTS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixoutputstream.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixoutputstream.h deleted file mode 100644 index 9ef2e52..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixoutputstream.h +++ /dev/null @@ -1,82 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_UNIX_OUTPUT_STREAM_H__ -#define __G_UNIX_OUTPUT_STREAM_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_OUTPUT_STREAM (g_unix_output_stream_get_type ()) -#define G_UNIX_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_OUTPUT_STREAM, GUnixOutputStream)) -#define G_UNIX_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_OUTPUT_STREAM, GUnixOutputStreamClass)) -#define G_IS_UNIX_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_OUTPUT_STREAM)) -#define G_IS_UNIX_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_OUTPUT_STREAM)) -#define G_UNIX_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_UNIX_OUTPUT_STREAM, GUnixOutputStreamClass)) - -/** - * GUnixOutputStream: - * - * Implements #GOutputStream for outputting to selectable unix file descriptors - **/ -typedef struct _GUnixOutputStream GUnixOutputStream; -typedef struct _GUnixOutputStreamClass GUnixOutputStreamClass; -typedef struct _GUnixOutputStreamPrivate GUnixOutputStreamPrivate; - -struct _GUnixOutputStream -{ - GOutputStream parent_instance; - - /*< private >*/ - GUnixOutputStreamPrivate *priv; -}; - -struct _GUnixOutputStreamClass -{ - GOutputStreamClass parent_class; - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_output_stream_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GOutputStream * g_unix_output_stream_new (gint fd, - gboolean close_fd); -GLIB_AVAILABLE_IN_ALL -void g_unix_output_stream_set_close_fd (GUnixOutputStream *stream, - gboolean close_fd); -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_output_stream_get_close_fd (GUnixOutputStream *stream); -GLIB_AVAILABLE_IN_ALL -gint g_unix_output_stream_get_fd (GUnixOutputStream *stream); -G_END_DECLS - -#endif /* __G_UNIX_OUTPUT_STREAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixsocketaddress.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixsocketaddress.h deleted file mode 100644 index 39d5821..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gunixsocketaddress.h +++ /dev/null @@ -1,81 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Authors: Christian Kellner - * Samuel Cormier-Iijima - */ - -#ifndef __G_UNIX_SOCKET_ADDRESS_H__ -#define __G_UNIX_SOCKET_ADDRESS_H__ - -#include - -G_BEGIN_DECLS - -#define G_TYPE_UNIX_SOCKET_ADDRESS (g_unix_socket_address_get_type ()) -#define G_UNIX_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_UNIX_SOCKET_ADDRESS, GUnixSocketAddress)) -#define G_UNIX_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_UNIX_SOCKET_ADDRESS, GUnixSocketAddressClass)) -#define G_IS_UNIX_SOCKET_ADDRESS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_SOCKET_ADDRESS)) -#define G_IS_UNIX_SOCKET_ADDRESS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_SOCKET_ADDRESS)) -#define G_UNIX_SOCKET_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_UNIX_SOCKET_ADDRESS, GUnixSocketAddressClass)) - -typedef struct _GUnixSocketAddress GUnixSocketAddress; -typedef struct _GUnixSocketAddressClass GUnixSocketAddressClass; -typedef struct _GUnixSocketAddressPrivate GUnixSocketAddressPrivate; - -struct _GUnixSocketAddress -{ - GSocketAddress parent_instance; - - /*< private >*/ - GUnixSocketAddressPrivate *priv; -}; - -struct _GUnixSocketAddressClass -{ - GSocketAddressClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_unix_socket_address_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_unix_socket_address_new (const gchar *path); -GLIB_DEPRECATED_FOR(g_unix_socket_address_new_with_type) -GSocketAddress *g_unix_socket_address_new_abstract (const gchar *path, - gint path_len); -GLIB_AVAILABLE_IN_ALL -GSocketAddress *g_unix_socket_address_new_with_type (const gchar *path, - gint path_len, - GUnixSocketAddressType type); -GLIB_AVAILABLE_IN_ALL -const char * g_unix_socket_address_get_path (GUnixSocketAddress *address); -GLIB_AVAILABLE_IN_ALL -gsize g_unix_socket_address_get_path_len (GUnixSocketAddress *address); -GLIB_AVAILABLE_IN_ALL -GUnixSocketAddressType g_unix_socket_address_get_address_type (GUnixSocketAddress *address); -GLIB_DEPRECATED -gboolean g_unix_socket_address_get_is_abstract (GUnixSocketAddress *address); - -GLIB_AVAILABLE_IN_ALL -gboolean g_unix_socket_address_abstract_names_supported (void); - -G_END_DECLS - -#endif /* __G_UNIX_SOCKET_ADDRESS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvfs.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvfs.h deleted file mode 100644 index 4150ae9..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvfs.h +++ /dev/null @@ -1,134 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_VFS_H__ -#define __G_VFS_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_VFS (g_vfs_get_type ()) -#define G_VFS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_VFS, GVfs)) -#define G_VFS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_VFS, GVfsClass)) -#define G_VFS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_VFS, GVfsClass)) -#define G_IS_VFS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_VFS)) -#define G_IS_VFS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_VFS)) - -/** - * G_VFS_EXTENSION_POINT_NAME: - * - * Extension point for #GVfs functionality. - * See Extending GIO. - */ -#define G_VFS_EXTENSION_POINT_NAME "gio-vfs" - -/** - * GVfs: - * - * Virtual File System object. - **/ -typedef struct _GVfsClass GVfsClass; - -struct _GVfs -{ - GObject parent_instance; -}; - -struct _GVfsClass -{ - GObjectClass parent_class; - - /* Virtual Table */ - - gboolean (* is_active) (GVfs *vfs); - GFile * (* get_file_for_path) (GVfs *vfs, - const char *path); - GFile * (* get_file_for_uri) (GVfs *vfs, - const char *uri); - const gchar * const * (* get_supported_uri_schemes) (GVfs *vfs); - GFile * (* parse_name) (GVfs *vfs, - const char *parse_name); - - /*< private >*/ - void (* local_file_add_info) (GVfs *vfs, - const char *filename, - guint64 device, - GFileAttributeMatcher *attribute_matcher, - GFileInfo *info, - GCancellable *cancellable, - gpointer *extra_data, - GDestroyNotify *free_extra_data); - void (* add_writable_namespaces) (GVfs *vfs, - GFileAttributeInfoList *list); - gboolean (* local_file_set_attributes) (GVfs *vfs, - const char *filename, - GFileInfo *info, - GFileQueryInfoFlags flags, - GCancellable *cancellable, - GError **error); - void (* local_file_removed) (GVfs *vfs, - const char *filename); - void (* local_file_moved) (GVfs *vfs, - const char *source, - const char *dest); - GIcon * (* deserialize_icon) (GVfs *vfs, - GVariant *value); - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_vfs_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_vfs_is_active (GVfs *vfs); -GLIB_AVAILABLE_IN_ALL -GFile * g_vfs_get_file_for_path (GVfs *vfs, - const char *path); -GLIB_AVAILABLE_IN_ALL -GFile * g_vfs_get_file_for_uri (GVfs *vfs, - const char *uri); -GLIB_AVAILABLE_IN_ALL -const gchar* const * g_vfs_get_supported_uri_schemes (GVfs *vfs); - -GLIB_AVAILABLE_IN_ALL -GFile * g_vfs_parse_name (GVfs *vfs, - const char *parse_name); - -GLIB_AVAILABLE_IN_ALL -GVfs * g_vfs_get_default (void); -GLIB_AVAILABLE_IN_ALL -GVfs * g_vfs_get_local (void); - -G_END_DECLS - -#endif /* __G_VFS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolume.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolume.h deleted file mode 100644 index 0a4abe0..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolume.h +++ /dev/null @@ -1,256 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - * David Zeuthen - */ - -#ifndef __G_VOLUME_H__ -#define __G_VOLUME_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_VOLUME_IDENTIFIER_KIND_HAL_UDI: - * - * The string used to obtain a Hal UDI with g_volume_get_identifier(). - */ -#define G_VOLUME_IDENTIFIER_KIND_HAL_UDI "hal-udi" - -/** - * G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE: - * - * The string used to obtain a Unix device path with g_volume_get_identifier(). - */ -#define G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE "unix-device" - -/** - * G_VOLUME_IDENTIFIER_KIND_LABEL: - * - * The string used to obtain a filesystem label with g_volume_get_identifier(). - */ -#define G_VOLUME_IDENTIFIER_KIND_LABEL "label" - -/** - * G_VOLUME_IDENTIFIER_KIND_UUID: - * - * The string used to obtain a UUID with g_volume_get_identifier(). - */ -#define G_VOLUME_IDENTIFIER_KIND_UUID "uuid" - -/** - * G_VOLUME_IDENTIFIER_KIND_NFS_MOUNT: - * - * The string used to obtain a NFS mount with g_volume_get_identifier(). - */ -#define G_VOLUME_IDENTIFIER_KIND_NFS_MOUNT "nfs-mount" - -/** - * G_VOLUME_IDENTIFIER_KIND_CLASS: - * - * The string used to obtain the volume class - * with g_volume_get_identifier(). - * - * Known volume classes include device and - * network. Other classes may be added in the - * future. - * - * This is intended to be used by applications to classify #GVolume - * instances into different sections - for example a file manager or - * file chooser can use this information to show - * network volumes under a "Network" heading and - * device volumes under a "Devices" heading. - */ -#define G_VOLUME_IDENTIFIER_KIND_CLASS "class" - - -#define G_TYPE_VOLUME (g_volume_get_type ()) -#define G_VOLUME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_VOLUME, GVolume)) -#define G_IS_VOLUME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_VOLUME)) -#define G_VOLUME_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_VOLUME, GVolumeIface)) - -/** - * GVolumeIface: - * @g_iface: The parent interface. - * @changed: Changed signal that is emitted when the volume's state has changed. - * @removed: The removed signal that is emitted when the #GVolume have been removed. If the recipient is holding references to the object they should release them so the object can be finalized. - * @get_name: Gets a string containing the name of the #GVolume. - * @get_icon: Gets a #GIcon for the #GVolume. - * @get_uuid: Gets the UUID for the #GVolume. The reference is typically based on the file system UUID for the mount in question and should be considered an opaque string. Returns %NULL if there is no UUID available. - * @get_drive: Gets a #GDrive the volume is located on. Returns %NULL if the #GVolume is not associated with a #GDrive. - * @get_mount: Gets a #GMount representing the mounted volume. Returns %NULL if the #GVolume is not mounted. - * @can_mount: Returns %TRUE if the #GVolume can be mounted. - * @can_eject: Checks if a #GVolume can be ejected. - * @mount_fn: Mounts a given #GVolume. - * #GVolume implementations must emit the #GMountOperation::aborted - * signal before completing a mount operation that is aborted while - * awaiting input from the user through a #GMountOperation instance. - * @mount_finish: Finishes a mount operation. - * @eject: Ejects a given #GVolume. - * @eject_finish: Finishes an eject operation. - * @get_identifier: Returns the identifier of the given kind, or %NULL if - * the #GVolume doesn't have one. - * @enumerate_identifiers: Returns an array strings listing the kinds - * of identifiers which the #GVolume has. - * @should_automount: Returns %TRUE if the #GVolume should be automatically mounted. - * @get_activation_root: Returns the activation root for the #GVolume if it is known in advance or %NULL if - * it is not known. - * @eject_with_operation: Starts ejecting a #GVolume using a #GMountOperation. Since 2.22. - * @eject_with_operation_finish: Finishes an eject operation using a #GMountOperation. Since 2.22. - * @get_sort_key: Gets a key used for sorting #GVolume instance or %NULL if no such key exists. Since 2.32. - * @get_symbolic_icon: Gets a symbolic #GIcon for the #GVolume. Since 2.34. - * - * Interface for implementing operations for mountable volumes. - **/ -typedef struct _GVolumeIface GVolumeIface; - -struct _GVolumeIface -{ - GTypeInterface g_iface; - - /* signals */ - - void (* changed) (GVolume *volume); - void (* removed) (GVolume *volume); - - /* Virtual Table */ - - char * (* get_name) (GVolume *volume); - GIcon * (* get_icon) (GVolume *volume); - char * (* get_uuid) (GVolume *volume); - GDrive * (* get_drive) (GVolume *volume); - GMount * (* get_mount) (GVolume *volume); - gboolean (* can_mount) (GVolume *volume); - gboolean (* can_eject) (GVolume *volume); - void (* mount_fn) (GVolume *volume, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* mount_finish) (GVolume *volume, - GAsyncResult *result, - GError **error); - void (* eject) (GVolume *volume, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_finish) (GVolume *volume, - GAsyncResult *result, - GError **error); - - char * (* get_identifier) (GVolume *volume, - const char *kind); - char ** (* enumerate_identifiers) (GVolume *volume); - - gboolean (* should_automount) (GVolume *volume); - - GFile * (* get_activation_root) (GVolume *volume); - - void (* eject_with_operation) (GVolume *volume, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* eject_with_operation_finish) (GVolume *volume, - GAsyncResult *result, - GError **error); - - const gchar * (* get_sort_key) (GVolume *volume); - GIcon * (* get_symbolic_icon) (GVolume *volume); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_volume_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -char * g_volume_get_name (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -GIcon * g_volume_get_icon (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -GIcon * g_volume_get_symbolic_icon (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -char * g_volume_get_uuid (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -GDrive * g_volume_get_drive (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -GMount * g_volume_get_mount (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -gboolean g_volume_can_mount (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -gboolean g_volume_can_eject (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -gboolean g_volume_should_automount (GVolume *volume); -GLIB_AVAILABLE_IN_ALL -void g_volume_mount (GVolume *volume, - GMountMountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_volume_mount_finish (GVolume *volume, - GAsyncResult *result, - GError **error); -GLIB_DEPRECATED_FOR(g_volume_eject_with_operation) -void g_volume_eject (GVolume *volume, - GMountUnmountFlags flags, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_volume_eject_with_operation_finish) -gboolean g_volume_eject_finish (GVolume *volume, - GAsyncResult *result, - GError **error); -GLIB_AVAILABLE_IN_ALL -char * g_volume_get_identifier (GVolume *volume, - const char *kind); -GLIB_AVAILABLE_IN_ALL -char ** g_volume_enumerate_identifiers (GVolume *volume); - -GLIB_AVAILABLE_IN_ALL -GFile * g_volume_get_activation_root (GVolume *volume); - -GLIB_AVAILABLE_IN_ALL -void g_volume_eject_with_operation (GVolume *volume, - GMountUnmountFlags flags, - GMountOperation *mount_operation, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_volume_eject_with_operation_finish (GVolume *volume, - GAsyncResult *result, - GError **error); - -GLIB_AVAILABLE_IN_2_32 -const gchar *g_volume_get_sort_key (GVolume *volume); - -G_END_DECLS - -#endif /* __G_VOLUME_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolumemonitor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolumemonitor.h deleted file mode 100644 index 0a37e12..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gvolumemonitor.h +++ /dev/null @@ -1,156 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - * David Zeuthen - */ - -#ifndef __G_VOLUME_MONITOR_H__ -#define __G_VOLUME_MONITOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_TYPE_VOLUME_MONITOR (g_volume_monitor_get_type ()) -#define G_VOLUME_MONITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_VOLUME_MONITOR, GVolumeMonitor)) -#define G_VOLUME_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_VOLUME_MONITOR, GVolumeMonitorClass)) -#define G_VOLUME_MONITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_VOLUME_MONITOR, GVolumeMonitorClass)) -#define G_IS_VOLUME_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_VOLUME_MONITOR)) -#define G_IS_VOLUME_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_VOLUME_MONITOR)) - -/** - * G_VOLUME_MONITOR_EXTENSION_POINT_NAME: - * - * Extension point for volume monitor functionality. - * See Extending GIO. - */ -#define G_VOLUME_MONITOR_EXTENSION_POINT_NAME "gio-volume-monitor" - -/** - * GVolumeMonitor: - * - * A Volume Monitor that watches for volume events. - **/ -typedef struct _GVolumeMonitorClass GVolumeMonitorClass; - -struct _GVolumeMonitor -{ - GObject parent_instance; - - /*< private >*/ - gpointer priv; -}; - -struct _GVolumeMonitorClass -{ - GObjectClass parent_class; - - /*< public >*/ - /* signals */ - void (* volume_added) (GVolumeMonitor *volume_monitor, - GVolume *volume); - void (* volume_removed) (GVolumeMonitor *volume_monitor, - GVolume *volume); - void (* volume_changed) (GVolumeMonitor *volume_monitor, - GVolume *volume); - - void (* mount_added) (GVolumeMonitor *volume_monitor, - GMount *mount); - void (* mount_removed) (GVolumeMonitor *volume_monitor, - GMount *mount); - void (* mount_pre_unmount) (GVolumeMonitor *volume_monitor, - GMount *mount); - void (* mount_changed) (GVolumeMonitor *volume_monitor, - GMount *mount); - - void (* drive_connected) (GVolumeMonitor *volume_monitor, - GDrive *drive); - void (* drive_disconnected) (GVolumeMonitor *volume_monitor, - GDrive *drive); - void (* drive_changed) (GVolumeMonitor *volume_monitor, - GDrive *drive); - - /* Vtable */ - - gboolean (* is_supported) (void); - - GList * (* get_connected_drives) (GVolumeMonitor *volume_monitor); - GList * (* get_volumes) (GVolumeMonitor *volume_monitor); - GList * (* get_mounts) (GVolumeMonitor *volume_monitor); - - GVolume * (* get_volume_for_uuid) (GVolumeMonitor *volume_monitor, - const char *uuid); - - GMount * (* get_mount_for_uuid) (GVolumeMonitor *volume_monitor, - const char *uuid); - - - /* These arguments are unfortunately backwards by mistake (bug #520169). Deprecated in 2.20. */ - GVolume * (* adopt_orphan_mount) (GMount *mount, - GVolumeMonitor *volume_monitor); - - /* signal added in 2.17 */ - void (* drive_eject_button) (GVolumeMonitor *volume_monitor, - GDrive *drive); - - /* signal added in 2.21 */ - void (* drive_stop_button) (GVolumeMonitor *volume_monitor, - GDrive *drive); - - /*< private >*/ - /* Padding for future expansion */ - void (*_g_reserved1) (void); - void (*_g_reserved2) (void); - void (*_g_reserved3) (void); - void (*_g_reserved4) (void); - void (*_g_reserved5) (void); - void (*_g_reserved6) (void); -}; - -GLIB_AVAILABLE_IN_ALL -GType g_volume_monitor_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GVolumeMonitor *g_volume_monitor_get (void); -GLIB_AVAILABLE_IN_ALL -GList * g_volume_monitor_get_connected_drives (GVolumeMonitor *volume_monitor); -GLIB_AVAILABLE_IN_ALL -GList * g_volume_monitor_get_volumes (GVolumeMonitor *volume_monitor); -GLIB_AVAILABLE_IN_ALL -GList * g_volume_monitor_get_mounts (GVolumeMonitor *volume_monitor); -GLIB_AVAILABLE_IN_ALL -GVolume * g_volume_monitor_get_volume_for_uuid (GVolumeMonitor *volume_monitor, - const char *uuid); -GLIB_AVAILABLE_IN_ALL -GMount * g_volume_monitor_get_mount_for_uuid (GVolumeMonitor *volume_monitor, - const char *uuid); - -GLIB_DEPRECATED -GVolume * g_volume_monitor_adopt_orphan_mount (GMount *mount); - -G_END_DECLS - -#endif /* __G_VOLUME_MONITOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibcompressor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibcompressor.h deleted file mode 100644 index 609e42f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibcompressor.h +++ /dev/null @@ -1,64 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_ZLIB_COMPRESSOR_H__ -#define __G_ZLIB_COMPRESSOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_ZLIB_COMPRESSOR (g_zlib_compressor_get_type ()) -#define G_ZLIB_COMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_ZLIB_COMPRESSOR, GZlibCompressor)) -#define G_ZLIB_COMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_ZLIB_COMPRESSOR, GZlibCompressorClass)) -#define G_IS_ZLIB_COMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_ZLIB_COMPRESSOR)) -#define G_IS_ZLIB_COMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_ZLIB_COMPRESSOR)) -#define G_ZLIB_COMPRESSOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_ZLIB_COMPRESSOR, GZlibCompressorClass)) - -typedef struct _GZlibCompressorClass GZlibCompressorClass; - -struct _GZlibCompressorClass -{ - GObjectClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_zlib_compressor_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GZlibCompressor *g_zlib_compressor_new (GZlibCompressorFormat format, - int level); - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_zlib_compressor_get_file_info (GZlibCompressor *compressor); -GLIB_AVAILABLE_IN_ALL -void g_zlib_compressor_set_file_info (GZlibCompressor *compressor, - GFileInfo *file_info); - -G_END_DECLS - -#endif /* __G_ZLIB_COMPRESSOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibdecompressor.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibdecompressor.h deleted file mode 100644 index ecc4f4e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gio/gzlibdecompressor.h +++ /dev/null @@ -1,60 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2009 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_ZLIB_DECOMPRESSOR_H__ -#define __G_ZLIB_DECOMPRESSOR_H__ - -#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_ZLIB_DECOMPRESSOR (g_zlib_decompressor_get_type ()) -#define G_ZLIB_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_ZLIB_DECOMPRESSOR, GZlibDecompressor)) -#define G_ZLIB_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_ZLIB_DECOMPRESSOR, GZlibDecompressorClass)) -#define G_IS_ZLIB_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_ZLIB_DECOMPRESSOR)) -#define G_IS_ZLIB_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_ZLIB_DECOMPRESSOR)) -#define G_ZLIB_DECOMPRESSOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_ZLIB_DECOMPRESSOR, GZlibDecompressorClass)) - -typedef struct _GZlibDecompressorClass GZlibDecompressorClass; - -struct _GZlibDecompressorClass -{ - GObjectClass parent_class; -}; - -GLIB_AVAILABLE_IN_ALL -GType g_zlib_decompressor_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GZlibDecompressor *g_zlib_decompressor_new (GZlibCompressorFormat format); - -GLIB_AVAILABLE_IN_ALL -GFileInfo *g_zlib_decompressor_get_file_info (GZlibDecompressor *decompressor); - -G_END_DECLS - -#endif /* __G_ZLIB_DECOMPRESSOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-object.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-object.h deleted file mode 100644 index 336ba93..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-object.h +++ /dev/null @@ -1,42 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998, 1999, 2000 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __GLIB_GOBJECT_H__ -#define __GLIB_GOBJECT_H__ - -#define __GLIB_GOBJECT_H_INSIDE__ - -/* topmost include file for GObject header files */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#undef __GLIB_GOBJECT_H_INSIDE__ - -#endif /* __GLIB_GOBJECT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-unix.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-unix.h deleted file mode 100644 index 66ccf74..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib-unix.h +++ /dev/null @@ -1,123 +0,0 @@ -/* glib-unix.h - Unix specific integration - * Copyright (C) 2011 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_UNIX_H__ -#define __G_UNIX_H__ - -/* We need to include the UNIX headers needed to use the APIs below, - * but we also take this opportunity to include a wide selection of - * other UNIX headers. If one of the headers below is broken on some - * system, work around it here (or better, fix the system or tell - * people to use a better one). - */ -#include -#include -#include -#include -#include - -#include - -#ifndef G_OS_UNIX -#error "This header may only be used on UNIX" -#endif - -G_BEGIN_DECLS - -/** - * G_UNIX_ERROR: - * - * Error domain for API in the "g_unix_" namespace. Note that there is - * no exported enumeration mapping %errno. Instead, all functions - * ensure that %errno is relevant. The code for all #G_UNIX_ERROR is - * always 0, and the error message is always - * generated via g_strerror(). - * - * It is expected that most code will not look at %errno from these - * APIs. Important cases where one would want to differentiate between - * errors are already covered by existing cross-platform GLib API, - * such as e.g. #GFile wrapping ENOENT. However, it is - * provided for completeness, at least. - */ -#define G_UNIX_ERROR (g_unix_error_quark()) - -GLIB_AVAILABLE_IN_2_30 -GQuark g_unix_error_quark (void); - -GLIB_AVAILABLE_IN_2_30 -gboolean g_unix_open_pipe (gint *fds, - gint flags, - GError **error); - -GLIB_AVAILABLE_IN_2_30 -gboolean g_unix_set_fd_nonblocking (gint fd, - gboolean nonblock, - GError **error); - -GLIB_AVAILABLE_IN_2_30 -GSource *g_unix_signal_source_new (gint signum); - -GLIB_AVAILABLE_IN_2_30 -guint g_unix_signal_add_full (gint priority, - gint signum, - GSourceFunc handler, - gpointer user_data, - GDestroyNotify notify); - -GLIB_AVAILABLE_IN_2_30 -guint g_unix_signal_add (gint signum, - GSourceFunc handler, - gpointer user_data); - -/** - * GUnixFDSourceFunc: - * @fd: the fd that triggered the event - * @condition: the IO conditions reported on @fd - * @user_data: user data passed to g_unix_fd_add() - * - * The type of functions to be called when a UNIX fd watch source - * triggers. - * - * Returns: %FALSE if the source should be removed - **/ -typedef gboolean (*GUnixFDSourceFunc) (gint fd, - GIOCondition condition, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_36 -GSource *g_unix_fd_source_new (gint fd, - GIOCondition condition); - -GLIB_AVAILABLE_IN_2_36 -guint g_unix_fd_add_full (gint priority, - gint fd, - GIOCondition condition, - GUnixFDSourceFunc function, - gpointer user_data, - GDestroyNotify notify); - -GLIB_AVAILABLE_IN_2_36 -guint g_unix_fd_add (gint fd, - GIOCondition condition, - GUnixFDSourceFunc function, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_UNIX_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib.h deleted file mode 100644 index ce7447e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib.h +++ /dev/null @@ -1,114 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_LIB_H__ -#define __G_LIB_H__ - -#define __GLIB_H_INSIDE__ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifdef G_PLATFORM_WIN32 -#include -#endif - -#ifndef G_DISABLE_DEPRECATED -#include -#include -#include -#include -#include -#include -#endif /* G_DISABLE_DEPRECATED */ - -#undef __GLIB_H_INSIDE__ - -#endif /* __G_LIB_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gallocator.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gallocator.h deleted file mode 100644 index a3dc2a1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gallocator.h +++ /dev/null @@ -1,90 +0,0 @@ -/* - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_ALLOCATOR_H__ -#define __G_ALLOCATOR_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GAllocator GAllocator; -typedef struct _GMemChunk GMemChunk; - -#define G_ALLOC_ONLY 1 -#define G_ALLOC_AND_FREE 2 -#define G_ALLOCATOR_LIST 1 -#define G_ALLOCATOR_SLIST 2 -#define G_ALLOCATOR_NODE 3 - -#define g_chunk_new(type, chunk) ((type *) g_mem_chunk_alloc (chunk)) -#define g_chunk_new0(type, chunk) ((type *) g_mem_chunk_alloc0 (chunk)) -#define g_chunk_free(mem, mem_chunk) (g_mem_chunk_free (mem_chunk, mem)) -#define g_mem_chunk_create(type, x, y) (g_mem_chunk_new (NULL, sizeof (type), 0, 0)) - - -GLIB_DEPRECATED -GMemChunk * g_mem_chunk_new (const gchar *name, - gint atom_size, - gsize area_size, - gint type); -GLIB_DEPRECATED -void g_mem_chunk_destroy (GMemChunk *mem_chunk); -GLIB_DEPRECATED -gpointer g_mem_chunk_alloc (GMemChunk *mem_chunk); -GLIB_DEPRECATED -gpointer g_mem_chunk_alloc0 (GMemChunk *mem_chunk); -GLIB_DEPRECATED -void g_mem_chunk_free (GMemChunk *mem_chunk, - gpointer mem); -GLIB_DEPRECATED -void g_mem_chunk_clean (GMemChunk *mem_chunk); -GLIB_DEPRECATED -void g_mem_chunk_reset (GMemChunk *mem_chunk); -GLIB_DEPRECATED -void g_mem_chunk_print (GMemChunk *mem_chunk); -GLIB_DEPRECATED -void g_mem_chunk_info (void); -GLIB_DEPRECATED -void g_blow_chunks (void); - - -GLIB_DEPRECATED -GAllocator * g_allocator_new (const gchar *name, - guint n_preallocs); -GLIB_DEPRECATED -void g_allocator_free (GAllocator *allocator); -GLIB_DEPRECATED -void g_list_push_allocator (GAllocator *allocator); -GLIB_DEPRECATED -void g_list_pop_allocator (void); -GLIB_DEPRECATED -void g_slist_push_allocator (GAllocator *allocator); -GLIB_DEPRECATED -void g_slist_pop_allocator (void); -GLIB_DEPRECATED -void g_node_push_allocator (GAllocator *allocator); -GLIB_DEPRECATED -void g_node_pop_allocator (void); - -G_END_DECLS - -#endif /* __G_ALLOCATOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcache.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcache.h deleted file mode 100644 index a7854e0..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcache.h +++ /dev/null @@ -1,73 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_CACHE_H__ -#define __G_CACHE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GCache GCache; - -typedef gpointer (*GCacheNewFunc) (gpointer key); -typedef gpointer (*GCacheDupFunc) (gpointer value); -typedef void (*GCacheDestroyFunc) (gpointer value); - -/* Caches - */ -GLIB_DEPRECATED -GCache* g_cache_new (GCacheNewFunc value_new_func, - GCacheDestroyFunc value_destroy_func, - GCacheDupFunc key_dup_func, - GCacheDestroyFunc key_destroy_func, - GHashFunc hash_key_func, - GHashFunc hash_value_func, - GEqualFunc key_equal_func); -GLIB_DEPRECATED -void g_cache_destroy (GCache *cache); -GLIB_DEPRECATED -gpointer g_cache_insert (GCache *cache, - gpointer key); -GLIB_DEPRECATED -void g_cache_remove (GCache *cache, - gconstpointer value); -GLIB_DEPRECATED -void g_cache_key_foreach (GCache *cache, - GHFunc func, - gpointer user_data); -GLIB_DEPRECATED -void g_cache_value_foreach (GCache *cache, - GHFunc func, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_CACHE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcompletion.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcompletion.h deleted file mode 100644 index fa77596..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gcompletion.h +++ /dev/null @@ -1,85 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_COMPLETION_H__ -#define __G_COMPLETION_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GCompletion GCompletion; - -typedef gchar* (*GCompletionFunc) (gpointer); - -/* GCompletion - */ - -typedef gint (*GCompletionStrncmpFunc) (const gchar *s1, - const gchar *s2, - gsize n); - -struct _GCompletion -{ - GList* items; - GCompletionFunc func; - - gchar* prefix; - GList* cache; - GCompletionStrncmpFunc strncmp_func; -}; - -GLIB_DEPRECATED_IN_2_26 -GCompletion* g_completion_new (GCompletionFunc func); -GLIB_DEPRECATED_IN_2_26 -void g_completion_add_items (GCompletion* cmp, - GList* items); -GLIB_DEPRECATED_IN_2_26 -void g_completion_remove_items (GCompletion* cmp, - GList* items); -GLIB_DEPRECATED_IN_2_26 -void g_completion_clear_items (GCompletion* cmp); -GLIB_DEPRECATED_IN_2_26 -GList* g_completion_complete (GCompletion* cmp, - const gchar* prefix, - gchar** new_prefix); -GLIB_DEPRECATED_IN_2_26 -GList* g_completion_complete_utf8 (GCompletion *cmp, - const gchar* prefix, - gchar** new_prefix); -GLIB_DEPRECATED_IN_2_26 -void g_completion_set_compare (GCompletion *cmp, - GCompletionStrncmpFunc strncmp_func); -GLIB_DEPRECATED_IN_2_26 -void g_completion_free (GCompletion* cmp); - -G_END_DECLS - -#endif /* __G_COMPLETION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gmain.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gmain.h deleted file mode 100644 index bb62240..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gmain.h +++ /dev/null @@ -1,138 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_DEPRECATED_MAIN_H__ -#define __G_DEPRECATED_MAIN_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* ============== Compat main loop stuff ================== */ - -/** - * g_main_new: - * @is_running: set to %TRUE to indicate that the loop is running. This - * is not very important since calling g_main_run() will set this - * to %TRUE anyway. - * - * Creates a new #GMainLoop for th default main context. - * - * Returns: a new #GMainLoop - * - * Deprecated: 2.2: Use g_main_loop_new() instead - */ -#define g_main_new(is_running) g_main_loop_new (NULL, is_running) - -/** - * g_main_run: - * @loop: a #GMainLoop - * - * Runs a main loop until it stops running. - * - * Deprecated: 2.2: Use g_main_loop_run() instead - */ -#define g_main_run(loop) g_main_loop_run(loop) - -/** - * g_main_quit: - * @loop: a #GMainLoop - * - * Stops the #GMainLoop. - * If g_main_run() was called to run the #GMainLoop, it will now return. - * - * Deprecated: 2.2: Use g_main_loop_quit() instead - */ -#define g_main_quit(loop) g_main_loop_quit(loop) - -/** - * g_main_destroy: - * @loop: a #GMainLoop - * - * Frees the memory allocated for the #GMainLoop. - * - * Deprecated: 2.2: Use g_main_loop_unref() instead - */ -#define g_main_destroy(loop) g_main_loop_unref(loop) - -/** - * g_main_is_running: - * @loop: a #GMainLoop - * - * Checks if the main loop is running. - * - * Returns: %TRUE if the main loop is running - * - * Deprecated: 2.2: Use g_main_loop_is_running() instead - */ -#define g_main_is_running(loop) g_main_loop_is_running(loop) - -/** - * g_main_iteration: - * @may_block: set to %TRUE if it should block (i.e. wait) until an event - * source becomes ready. It will return after an event source has been - * processed. If set to %FALSE it will return immediately if no event - * source is ready to be processed. - * - * Runs a single iteration for the default #GMainContext. - * - * Returns: %TRUE if more events are pending. - * - * Deprecated: 2.2: Use g_main_context_iteration() instead. - */ -#define g_main_iteration(may_block) g_main_context_iteration (NULL, may_block) - -/** - * g_main_pending: - * - * Checks if any events are pending for the default #GMainContext - * (i.e. ready to be processed). - * - * Returns: %TRUE if any events are pending. - * - * Deprected: 2.2: Use g_main_context_pending() instead. - */ -#define g_main_pending() g_main_context_pending (NULL) - -/** - * g_main_set_poll_func: - * @func: the function to call to poll all file descriptors - * - * Sets the function to use for the handle polling of file descriptors - * for the default main context. - * - * Deprecated: 2.2: Use g_main_context_set_poll_func() again - */ -#define g_main_set_poll_func(func) g_main_context_set_poll_func (NULL, func) - - -G_END_DECLS - -#endif /* __G_DEPRECATED_MAIN_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/grel.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/grel.h deleted file mode 100644 index b76e006..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/grel.h +++ /dev/null @@ -1,107 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_REL_H__ -#define __G_REL_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GRelation GRelation; -typedef struct _GTuples GTuples; - -struct _GTuples -{ - guint len; -}; - -/* GRelation - * - * Indexed Relations. Imagine a really simple table in a - * database. Relations are not ordered. This data type is meant for - * maintaining a N-way mapping. - * - * g_relation_new() creates a relation with FIELDS fields - * - * g_relation_destroy() frees all resources - * g_tuples_destroy() frees the result of g_relation_select() - * - * g_relation_index() indexes relation FIELD with the provided - * equality and hash functions. this must be done before any - * calls to insert are made. - * - * g_relation_insert() inserts a new tuple. you are expected to - * provide the right number of fields. - * - * g_relation_delete() deletes all relations with KEY in FIELD - * g_relation_select() returns ... - * g_relation_count() counts ... - */ - -GLIB_DEPRECATED_IN_2_26 -GRelation* g_relation_new (gint fields); -GLIB_DEPRECATED_IN_2_26 -void g_relation_destroy (GRelation *relation); -GLIB_DEPRECATED_IN_2_26 -void g_relation_index (GRelation *relation, - gint field, - GHashFunc hash_func, - GEqualFunc key_equal_func); -GLIB_DEPRECATED_IN_2_26 -void g_relation_insert (GRelation *relation, - ...); -GLIB_DEPRECATED_IN_2_26 -gint g_relation_delete (GRelation *relation, - gconstpointer key, - gint field); -GLIB_DEPRECATED_IN_2_26 -GTuples* g_relation_select (GRelation *relation, - gconstpointer key, - gint field); -GLIB_DEPRECATED_IN_2_26 -gint g_relation_count (GRelation *relation, - gconstpointer key, - gint field); -GLIB_DEPRECATED_IN_2_26 -gboolean g_relation_exists (GRelation *relation, - ...); -GLIB_DEPRECATED_IN_2_26 -void g_relation_print (GRelation *relation); -GLIB_DEPRECATED_IN_2_26 -void g_tuples_destroy (GTuples *tuples); -GLIB_DEPRECATED_IN_2_26 -gpointer g_tuples_index (GTuples *tuples, - gint index_, - gint field); - -G_END_DECLS - -#endif /* __G_REL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gthread.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gthread.h deleted file mode 100644 index 462bb8f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/deprecated/gthread.h +++ /dev/null @@ -1,286 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_DEPRECATED_THREAD_H__ -#define __G_DEPRECATED_THREAD_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef enum -{ - G_THREAD_PRIORITY_LOW, - G_THREAD_PRIORITY_NORMAL, - G_THREAD_PRIORITY_HIGH, - G_THREAD_PRIORITY_URGENT -} GThreadPriority; - -struct _GThread -{ - /*< private >*/ - GThreadFunc func; - gpointer data; - gboolean joinable; - GThreadPriority priority; -}; - -typedef struct _GThreadFunctions GThreadFunctions; -struct _GThreadFunctions -{ - GMutex* (*mutex_new) (void); - void (*mutex_lock) (GMutex *mutex); - gboolean (*mutex_trylock) (GMutex *mutex); - void (*mutex_unlock) (GMutex *mutex); - void (*mutex_free) (GMutex *mutex); - GCond* (*cond_new) (void); - void (*cond_signal) (GCond *cond); - void (*cond_broadcast) (GCond *cond); - void (*cond_wait) (GCond *cond, - GMutex *mutex); - gboolean (*cond_timed_wait) (GCond *cond, - GMutex *mutex, - GTimeVal *end_time); - void (*cond_free) (GCond *cond); - GPrivate* (*private_new) (GDestroyNotify destructor); - gpointer (*private_get) (GPrivate *private_key); - void (*private_set) (GPrivate *private_key, - gpointer data); - void (*thread_create) (GThreadFunc func, - gpointer data, - gulong stack_size, - gboolean joinable, - gboolean bound, - GThreadPriority priority, - gpointer thread, - GError **error); - void (*thread_yield) (void); - void (*thread_join) (gpointer thread); - void (*thread_exit) (void); - void (*thread_set_priority)(gpointer thread, - GThreadPriority priority); - void (*thread_self) (gpointer thread); - gboolean (*thread_equal) (gpointer thread1, - gpointer thread2); -}; - -GLIB_VAR GThreadFunctions g_thread_functions_for_glib_use; -GLIB_VAR gboolean g_thread_use_default_impl; - -GLIB_VAR guint64 (*g_thread_gettime) (void); - -GLIB_DEPRECATED_IN_2_32_FOR(g_thread_new) -GThread *g_thread_create (GThreadFunc func, - gpointer data, - gboolean joinable, - GError **error); - -GLIB_DEPRECATED_IN_2_32_FOR(g_thread_new) -GThread *g_thread_create_full (GThreadFunc func, - gpointer data, - gulong stack_size, - gboolean joinable, - gboolean bound, - GThreadPriority priority, - GError **error); - -GLIB_DEPRECATED_IN_2_32 -void g_thread_set_priority (GThread *thread, - GThreadPriority priority); - -GLIB_DEPRECATED_IN_2_32 -void g_thread_foreach (GFunc thread_func, - gpointer user_data); - -#ifndef G_OS_WIN32 -#include -#endif - -#define g_static_mutex_get_mutex g_static_mutex_get_mutex_impl -#define G_STATIC_MUTEX_INIT { NULL } -typedef struct -{ - GMutex *mutex; -#ifndef G_OS_WIN32 - /* only for ABI compatibility reasons */ - pthread_mutex_t unused; -#endif -} GStaticMutex; - -#define g_static_mutex_lock(mutex) \ - g_mutex_lock (g_static_mutex_get_mutex (mutex)) -#define g_static_mutex_trylock(mutex) \ - g_mutex_trylock (g_static_mutex_get_mutex (mutex)) -#define g_static_mutex_unlock(mutex) \ - g_mutex_unlock (g_static_mutex_get_mutex (mutex)) - -GLIB_DEPRECATED_IN_2_32_FOR(g_mutex_init) -void g_static_mutex_init (GStaticMutex *mutex); -GLIB_DEPRECATED_IN_2_32_FOR(g_mutex_clear) -void g_static_mutex_free (GStaticMutex *mutex); -GLIB_DEPRECATED_IN_2_32_FOR(GMutex) -GMutex *g_static_mutex_get_mutex_impl (GStaticMutex *mutex); - -typedef struct _GStaticRecMutex GStaticRecMutex; -struct _GStaticRecMutex -{ - /*< private >*/ - GStaticMutex mutex; - guint depth; - - /* ABI compat only */ - union { -#ifdef G_OS_WIN32 - void *owner; -#else - pthread_t owner; -#endif - gdouble dummy; - } unused; -}; - -#define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT } -GLIB_DEPRECATED_IN_2_32_FOR(g_rec_mutex_init) -void g_static_rec_mutex_init (GStaticRecMutex *mutex); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rec_mutex_lock) -void g_static_rec_mutex_lock (GStaticRecMutex *mutex); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rec_mutex_try_lock) -gboolean g_static_rec_mutex_trylock (GStaticRecMutex *mutex); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rec_mutex_unlock) -void g_static_rec_mutex_unlock (GStaticRecMutex *mutex); - -GLIB_DEPRECATED_IN_2_32 -void g_static_rec_mutex_lock_full (GStaticRecMutex *mutex, - guint depth); - -GLIB_DEPRECATED_IN_2_32 -guint g_static_rec_mutex_unlock_full (GStaticRecMutex *mutex); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rec_mutex_free) -void g_static_rec_mutex_free (GStaticRecMutex *mutex); - -typedef struct _GStaticRWLock GStaticRWLock; -struct _GStaticRWLock -{ - /*< private >*/ - GStaticMutex mutex; - GCond *read_cond; - GCond *write_cond; - guint read_counter; - gboolean have_writer; - guint want_to_read; - guint want_to_write; -}; - -#define G_STATIC_RW_LOCK_INIT { G_STATIC_MUTEX_INIT, NULL, NULL, 0, FALSE, 0, 0 } - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_init) -void g_static_rw_lock_init (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_reader_lock) -void g_static_rw_lock_reader_lock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_reader_trylock) -gboolean g_static_rw_lock_reader_trylock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_reader_unlock) -void g_static_rw_lock_reader_unlock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_writer_lock) -void g_static_rw_lock_writer_lock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_writer_trylock) -gboolean g_static_rw_lock_writer_trylock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_writer_unlock) -void g_static_rw_lock_writer_unlock (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32_FOR(g_rw_lock_free) -void g_static_rw_lock_free (GStaticRWLock *lock); - -GLIB_DEPRECATED_IN_2_32 -GPrivate * g_private_new (GDestroyNotify notify); - -typedef struct _GStaticPrivate GStaticPrivate; -struct _GStaticPrivate -{ - /*< private >*/ - guint index; -}; - -#define G_STATIC_PRIVATE_INIT { 0 } -GLIB_DEPRECATED_IN_2_32 -void g_static_private_init (GStaticPrivate *private_key); - -GLIB_DEPRECATED_IN_2_32_FOR(g_private_get) -gpointer g_static_private_get (GStaticPrivate *private_key); - -GLIB_DEPRECATED_IN_2_32_FOR(g_private_set) -void g_static_private_set (GStaticPrivate *private_key, - gpointer data, - GDestroyNotify notify); - -GLIB_DEPRECATED_IN_2_32 -void g_static_private_free (GStaticPrivate *private_key); - -GLIB_DEPRECATED_IN_2_32 -gboolean g_once_init_enter_impl (volatile gsize *location); - -GLIB_DEPRECATED_IN_2_32 -void g_thread_init (gpointer vtable); -GLIB_DEPRECATED_IN_2_32 -void g_thread_init_with_errorcheck_mutexes (gpointer vtable); - -GLIB_DEPRECATED_IN_2_32 -gboolean g_thread_get_initialized (void); - -GLIB_VAR gboolean g_threads_got_initialized; - -#define g_thread_supported() (1) - -GLIB_DEPRECATED_IN_2_32 -GMutex * g_mutex_new (void); -GLIB_DEPRECATED_IN_2_32 -void g_mutex_free (GMutex *mutex); -GLIB_DEPRECATED_IN_2_32 -GCond * g_cond_new (void); -GLIB_DEPRECATED_IN_2_32 -void g_cond_free (GCond *cond); -GLIB_DEPRECATED_IN_2_32 -gboolean g_cond_timed_wait (GCond *cond, - GMutex *mutex, - GTimeVal *timeval); - -G_END_DECLS - -#endif /* __G_DEPRECATED_THREAD_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/galloca.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/galloca.h deleted file mode 100644 index 8ece1b2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/galloca.h +++ /dev/null @@ -1,112 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_ALLOCA_H__ -#define __G_ALLOCA_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#if defined(__BIONIC__) && defined (GLIB_HAVE_ALLOCA_H) -# include -#elif defined(__GNUC__) -/* GCC does the right thing */ -# undef alloca -# define alloca(size) __builtin_alloca (size) -#elif defined (GLIB_HAVE_ALLOCA_H) -/* a native and working alloca.h is there */ -# include -#else /* !__GNUC__ && !GLIB_HAVE_ALLOCA_H */ -# if defined(_MSC_VER) || defined(__DMC__) -# include -# define alloca _alloca -# else /* !_MSC_VER && !__DMC__ */ -# ifdef _AIX -# pragma alloca -# else /* !_AIX */ -# ifndef alloca /* predefined by HP cc +Olibcalls */ -G_BEGIN_DECLS -char *alloca (); -G_END_DECLS -# endif /* !alloca */ -# endif /* !_AIX */ -# endif /* !_MSC_VER && !__DMC__ */ -#endif /* !__GNUC__ && !GLIB_HAVE_ALLOCA_H */ - -/** - * g_alloca: - * @size: number of bytes to allocate. - * - * Allocates @size bytes on the stack; these bytes will be freed when the current - * stack frame is cleaned up. This macro essentially just wraps the alloca() - * function present on most UNIX variants. - * Thus it provides the same advantages and pitfalls as alloca(): - * - * - * + alloca() is very fast, as on most systems it's implemented by just adjusting - * the stack pointer register. - * - * - * + It doesn't cause any memory fragmentation, within its scope, separate alloca() - * blocks just build up and are released together at function end. - * - * - * - Allocation sizes have to fit into the current stack frame. For instance in a - * threaded environment on Linux, the per-thread stack size is limited to 2 Megabytes, - * so be sparse with alloca() uses. - * - * - * - Allocation failure due to insufficient stack space is not indicated with a %NULL - * return like e.g. with malloc(). Instead, most systems probably handle it the same - * way as out of stack space situations from infinite function recursion, i.e. - * with a segmentation fault. - * - * - * - Special care has to be taken when mixing alloca() with GNU C variable sized arrays. - * Stack space allocated with alloca() in the same scope as a variable sized array - * will be freed together with the variable sized array upon exit of that scope, and - * not upon exit of the enclosing function scope. - * - * - * - * Returns: space for @size bytes, allocated on the stack - */ -#define g_alloca(size) alloca (size) -/** - * g_newa: - * @struct_type: Type of memory chunks to be allocated - * @n_structs: Number of chunks to be allocated - * - * Wraps g_alloca() in a more typesafe manner. - * - * Returns: Pointer to stack space for @n_structs chunks of type @struct_type - */ -#define g_newa(struct_type, n_structs) ((struct_type*) g_alloca (sizeof (struct_type) * (gsize) (n_structs))) - -#endif /* __G_ALLOCA_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/garray.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/garray.h deleted file mode 100644 index f3d7cee..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/garray.h +++ /dev/null @@ -1,236 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_ARRAY_H__ -#define __G_ARRAY_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GBytes GBytes; -typedef struct _GArray GArray; -typedef struct _GByteArray GByteArray; -typedef struct _GPtrArray GPtrArray; - -struct _GArray -{ - gchar *data; - guint len; -}; - -struct _GByteArray -{ - guint8 *data; - guint len; -}; - -struct _GPtrArray -{ - gpointer *pdata; - guint len; -}; - -/* Resizable arrays. remove fills any cleared spot and shortens the - * array, while preserving the order. remove_fast will distort the - * order by moving the last element to the position of the removed. - */ - -#define g_array_append_val(a,v) g_array_append_vals (a, &(v), 1) -#define g_array_prepend_val(a,v) g_array_prepend_vals (a, &(v), 1) -#define g_array_insert_val(a,i,v) g_array_insert_vals (a, i, &(v), 1) -#define g_array_index(a,t,i) (((t*) (void *) (a)->data) [(i)]) - -GLIB_AVAILABLE_IN_ALL -GArray* g_array_new (gboolean zero_terminated, - gboolean clear_, - guint element_size); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_sized_new (gboolean zero_terminated, - gboolean clear_, - guint element_size, - guint reserved_size); -GLIB_AVAILABLE_IN_ALL -gchar* g_array_free (GArray *array, - gboolean free_segment); -GLIB_AVAILABLE_IN_ALL -GArray *g_array_ref (GArray *array); -GLIB_AVAILABLE_IN_ALL -void g_array_unref (GArray *array); -GLIB_AVAILABLE_IN_ALL -guint g_array_get_element_size (GArray *array); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_append_vals (GArray *array, - gconstpointer data, - guint len); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_prepend_vals (GArray *array, - gconstpointer data, - guint len); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_insert_vals (GArray *array, - guint index_, - gconstpointer data, - guint len); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_set_size (GArray *array, - guint length); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_remove_index (GArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_remove_index_fast (GArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -GArray* g_array_remove_range (GArray *array, - guint index_, - guint length); -GLIB_AVAILABLE_IN_ALL -void g_array_sort (GArray *array, - GCompareFunc compare_func); -GLIB_AVAILABLE_IN_ALL -void g_array_sort_with_data (GArray *array, - GCompareDataFunc compare_func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_array_set_clear_func (GArray *array, - GDestroyNotify clear_func); - -/* Resizable pointer array. This interface is much less complicated - * than the above. Add appends a pointer. Remove fills any cleared - * spot and shortens the array. remove_fast will again distort order. - */ -#define g_ptr_array_index(array,index_) ((array)->pdata)[index_] -GLIB_AVAILABLE_IN_ALL -GPtrArray* g_ptr_array_new (void); -GLIB_AVAILABLE_IN_ALL -GPtrArray* g_ptr_array_new_with_free_func (GDestroyNotify element_free_func); -GLIB_AVAILABLE_IN_ALL -GPtrArray* g_ptr_array_sized_new (guint reserved_size); -GLIB_AVAILABLE_IN_ALL -GPtrArray* g_ptr_array_new_full (guint reserved_size, - GDestroyNotify element_free_func); -GLIB_AVAILABLE_IN_ALL -gpointer* g_ptr_array_free (GPtrArray *array, - gboolean free_seg); -GLIB_AVAILABLE_IN_ALL -GPtrArray* g_ptr_array_ref (GPtrArray *array); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_unref (GPtrArray *array); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_set_free_func (GPtrArray *array, - GDestroyNotify element_free_func); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_set_size (GPtrArray *array, - gint length); -GLIB_AVAILABLE_IN_ALL -gpointer g_ptr_array_remove_index (GPtrArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -gpointer g_ptr_array_remove_index_fast (GPtrArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -gboolean g_ptr_array_remove (GPtrArray *array, - gpointer data); -GLIB_AVAILABLE_IN_ALL -gboolean g_ptr_array_remove_fast (GPtrArray *array, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_remove_range (GPtrArray *array, - guint index_, - guint length); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_add (GPtrArray *array, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_sort (GPtrArray *array, - GCompareFunc compare_func); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_sort_with_data (GPtrArray *array, - GCompareDataFunc compare_func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_ptr_array_foreach (GPtrArray *array, - GFunc func, - gpointer user_data); - - -/* Byte arrays, an array of guint8. Implemented as a GArray, - * but type-safe. - */ - -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_new (void); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_new_take (guint8 *data, - gsize len); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_sized_new (guint reserved_size); -GLIB_AVAILABLE_IN_ALL -guint8* g_byte_array_free (GByteArray *array, - gboolean free_segment); -GLIB_AVAILABLE_IN_ALL -GBytes* g_byte_array_free_to_bytes (GByteArray *array); -GLIB_AVAILABLE_IN_ALL -GByteArray *g_byte_array_ref (GByteArray *array); -GLIB_AVAILABLE_IN_ALL -void g_byte_array_unref (GByteArray *array); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_append (GByteArray *array, - const guint8 *data, - guint len); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_prepend (GByteArray *array, - const guint8 *data, - guint len); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_set_size (GByteArray *array, - guint length); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_remove_index (GByteArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_remove_index_fast (GByteArray *array, - guint index_); -GLIB_AVAILABLE_IN_ALL -GByteArray* g_byte_array_remove_range (GByteArray *array, - guint index_, - guint length); -GLIB_AVAILABLE_IN_ALL -void g_byte_array_sort (GByteArray *array, - GCompareFunc compare_func); -GLIB_AVAILABLE_IN_ALL -void g_byte_array_sort_with_data (GByteArray *array, - GCompareDataFunc compare_func, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_ARRAY_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gasyncqueue.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gasyncqueue.h deleted file mode 100644 index 3d4b38f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gasyncqueue.h +++ /dev/null @@ -1,111 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_ASYNCQUEUE_H__ -#define __G_ASYNCQUEUE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GAsyncQueue GAsyncQueue; - -GLIB_AVAILABLE_IN_ALL -GAsyncQueue *g_async_queue_new (void); -GLIB_AVAILABLE_IN_ALL -GAsyncQueue *g_async_queue_new_full (GDestroyNotify item_free_func); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_lock (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_unlock (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -GAsyncQueue *g_async_queue_ref (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_unref (GAsyncQueue *queue); - -GLIB_DEPRECATED_FOR(g_async_queue_ref) -void g_async_queue_ref_unlocked (GAsyncQueue *queue); - -GLIB_DEPRECATED_FOR(g_async_queue_unref) -void g_async_queue_unref_and_unlock (GAsyncQueue *queue); - -GLIB_AVAILABLE_IN_ALL -void g_async_queue_push (GAsyncQueue *queue, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_push_unlocked (GAsyncQueue *queue, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_push_sorted (GAsyncQueue *queue, - gpointer data, - GCompareDataFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_push_sorted_unlocked (GAsyncQueue *queue, - gpointer data, - GCompareDataFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_pop (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_pop_unlocked (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_try_pop (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_try_pop_unlocked (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_timeout_pop (GAsyncQueue *queue, - guint64 timeout); -GLIB_AVAILABLE_IN_ALL -gpointer g_async_queue_timeout_pop_unlocked (GAsyncQueue *queue, - guint64 timeout); -GLIB_AVAILABLE_IN_ALL -gint g_async_queue_length (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -gint g_async_queue_length_unlocked (GAsyncQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_sort (GAsyncQueue *queue, - GCompareDataFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_async_queue_sort_unlocked (GAsyncQueue *queue, - GCompareDataFunc func, - gpointer user_data); - -GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop) -gpointer g_async_queue_timed_pop (GAsyncQueue *queue, - GTimeVal *end_time); -GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop_unlocked) -gpointer g_async_queue_timed_pop_unlocked (GAsyncQueue *queue, - GTimeVal *end_time); - -G_END_DECLS - -#endif /* __G_ASYNCQUEUE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gatomic.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gatomic.h deleted file mode 100644 index e7fd1f2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gatomic.h +++ /dev/null @@ -1,232 +0,0 @@ -/* - * Copyright © 2011 Ryan Lortie - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_ATOMIC_H__ -#define __G_ATOMIC_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gint g_atomic_int_get (const volatile gint *atomic); -GLIB_AVAILABLE_IN_ALL -void g_atomic_int_set (volatile gint *atomic, - gint newval); -GLIB_AVAILABLE_IN_ALL -void g_atomic_int_inc (volatile gint *atomic); -GLIB_AVAILABLE_IN_ALL -gboolean g_atomic_int_dec_and_test (volatile gint *atomic); -GLIB_AVAILABLE_IN_ALL -gboolean g_atomic_int_compare_and_exchange (volatile gint *atomic, - gint oldval, - gint newval); -GLIB_AVAILABLE_IN_ALL -gint g_atomic_int_add (volatile gint *atomic, - gint val); -GLIB_AVAILABLE_IN_2_30 -guint g_atomic_int_and (volatile guint *atomic, - guint val); -GLIB_AVAILABLE_IN_2_30 -guint g_atomic_int_or (volatile guint *atomic, - guint val); -GLIB_AVAILABLE_IN_ALL -guint g_atomic_int_xor (volatile guint *atomic, - guint val); - -GLIB_AVAILABLE_IN_ALL -gpointer g_atomic_pointer_get (const volatile void *atomic); -GLIB_AVAILABLE_IN_ALL -void g_atomic_pointer_set (volatile void *atomic, - gpointer newval); -GLIB_AVAILABLE_IN_ALL -gboolean g_atomic_pointer_compare_and_exchange (volatile void *atomic, - gpointer oldval, - gpointer newval); -GLIB_AVAILABLE_IN_ALL -gssize g_atomic_pointer_add (volatile void *atomic, - gssize val); -GLIB_AVAILABLE_IN_2_30 -gsize g_atomic_pointer_and (volatile void *atomic, - gsize val); -GLIB_AVAILABLE_IN_2_30 -gsize g_atomic_pointer_or (volatile void *atomic, - gsize val); -GLIB_AVAILABLE_IN_ALL -gsize g_atomic_pointer_xor (volatile void *atomic, - gsize val); - -GLIB_DEPRECATED_IN_2_30_FOR(g_atomic_add) -gint g_atomic_int_exchange_and_add (volatile gint *atomic, - gint val); - -G_END_DECLS - -#if defined(G_ATOMIC_LOCK_FREE) && defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) - -#define g_atomic_int_get(atomic) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ *(atomic) : 0); \ - __sync_synchronize (); \ - (gint) *(atomic); \ - })) -#define g_atomic_int_set(atomic, newval) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (newval) : 0); \ - *(atomic) = (newval); \ - __sync_synchronize (); \ - })) -#define g_atomic_int_inc(atomic) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ *(atomic) : 0); \ - (void) __sync_fetch_and_add ((atomic), 1); \ - })) -#define g_atomic_int_dec_and_test(atomic) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ *(atomic) : 0); \ - __sync_fetch_and_sub ((atomic), 1) == 1; \ - })) -#define g_atomic_int_compare_and_exchange(atomic, oldval, newval) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (newval) ^ (oldval) : 0); \ - (gboolean) __sync_bool_compare_and_swap ((atomic), (oldval), (newval)); \ - })) -#define g_atomic_int_add(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (val) : 0); \ - (gint) __sync_fetch_and_add ((atomic), (val)); \ - })) -#define g_atomic_int_and(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (val) : 0); \ - (guint) __sync_fetch_and_and ((atomic), (val)); \ - })) -#define g_atomic_int_or(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (val) : 0); \ - (guint) __sync_fetch_and_or ((atomic), (val)); \ - })) -#define g_atomic_int_xor(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gint)); \ - (void) (0 ? *(atomic) ^ (val) : 0); \ - (guint) __sync_fetch_and_xor ((atomic), (val)); \ - })) - -#define g_atomic_pointer_get(atomic) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - __sync_synchronize (); \ - (gpointer) *(atomic); \ - })) -#define g_atomic_pointer_set(atomic, newval) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - *(atomic) = (__typeof__ (*(atomic))) (gsize) (newval); \ - __sync_synchronize (); \ - })) -#define g_atomic_pointer_compare_and_exchange(atomic, oldval, newval) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - (gboolean) __sync_bool_compare_and_swap ((atomic), (oldval), (newval)); \ - })) -#define g_atomic_pointer_add(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - (void) (0 ? (val) ^ (val) : 0); \ - (gssize) __sync_fetch_and_add ((atomic), (val)); \ - })) -#define g_atomic_pointer_and(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - (void) (0 ? (val) ^ (val) : 0); \ - (gsize) __sync_fetch_and_and ((atomic), (val)); \ - })) -#define g_atomic_pointer_or(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - (void) (0 ? (val) ^ (val) : 0); \ - (gsize) __sync_fetch_and_or ((atomic), (val)); \ - })) -#define g_atomic_pointer_xor(atomic, val) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(atomic) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(atomic) : 0); \ - (void) (0 ? (val) ^ (val) : 0); \ - (gsize) __sync_fetch_and_xor ((atomic), (val)); \ - })) - -#else /* defined(G_ATOMIC_LOCK_FREE) && defined(__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4) */ - -#define g_atomic_int_get(atomic) \ - (g_atomic_int_get ((gint *) (atomic))) -#define g_atomic_int_set(atomic, newval) \ - (g_atomic_int_set ((gint *) (atomic), (gint) (newval))) -#define g_atomic_int_compare_and_exchange(atomic, oldval, newval) \ - (g_atomic_int_compare_and_exchange ((gint *) (atomic), (oldval), (newval))) -#define g_atomic_int_add(atomic, val) \ - (g_atomic_int_add ((gint *) (atomic), (val))) -#define g_atomic_int_and(atomic, val) \ - (g_atomic_int_and ((guint *) (atomic), (val))) -#define g_atomic_int_or(atomic, val) \ - (g_atomic_int_or ((guint *) (atomic), (val))) -#define g_atomic_int_xor(atomic, val) \ - (g_atomic_int_xor ((guint *) (atomic), (val))) -#define g_atomic_int_inc(atomic) \ - (g_atomic_int_inc ((gint *) (atomic))) -#define g_atomic_int_dec_and_test(atomic) \ - (g_atomic_int_dec_and_test ((gint *) (atomic))) - -#define g_atomic_pointer_get(atomic) \ - (g_atomic_pointer_get (atomic)) -#define g_atomic_pointer_set(atomic, newval) \ - (g_atomic_pointer_set ((atomic), (gpointer) (newval))) -#define g_atomic_pointer_compare_and_exchange(atomic, oldval, newval) \ - (g_atomic_pointer_compare_and_exchange ((atomic), (gpointer) (oldval), (gpointer) (newval))) -#define g_atomic_pointer_add(atomic, val) \ - (g_atomic_pointer_add ((atomic), (gssize) (val))) -#define g_atomic_pointer_and(atomic, val) \ - (g_atomic_pointer_and ((atomic), (gsize) (val))) -#define g_atomic_pointer_or(atomic, val) \ - (g_atomic_pointer_or ((atomic), (gsize) (val))) -#define g_atomic_pointer_xor(atomic, val) \ - (g_atomic_pointer_xor ((atomic), (gsize) (val))) - -#endif /* defined(__GNUC__) && defined(G_ATOMIC_OP_USE_GCC_BUILTINS) */ - -#endif /* __G_ATOMIC_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbacktrace.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbacktrace.h deleted file mode 100644 index 47dd2ee..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbacktrace.h +++ /dev/null @@ -1,66 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_BACKTRACE_H__ -#define __G_BACKTRACE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -void g_on_error_query (const gchar *prg_name); -GLIB_AVAILABLE_IN_ALL -void g_on_error_stack_trace (const gchar *prg_name); - -/** - * G_BREAKPOINT: - * - * Inserts a breakpoint instruction into the code. - * - * On x86 and alpha systems this is implemented as a soft interrupt - * and on other architectures it raises a SIGTRAP signal. - */ -#if (defined (__i386__) || defined (__x86_64__)) && defined (__GNUC__) && __GNUC__ >= 2 -# define G_BREAKPOINT() G_STMT_START{ __asm__ __volatile__ ("int $03"); }G_STMT_END -#elif (defined (_MSC_VER) || defined (__DMC__)) && defined (_M_IX86) -# define G_BREAKPOINT() G_STMT_START{ __asm int 3h }G_STMT_END -#elif defined (_MSC_VER) -# define G_BREAKPOINT() G_STMT_START{ __debugbreak(); }G_STMT_END -#elif defined (__alpha__) && !defined(__osf__) && defined (__GNUC__) && __GNUC__ >= 2 -# define G_BREAKPOINT() G_STMT_START{ __asm__ __volatile__ ("bpt"); }G_STMT_END -#else /* !__i386__ && !__alpha__ */ -# define G_BREAKPOINT() G_STMT_START{ raise (SIGTRAP); }G_STMT_END -#endif /* __i386__ */ - -G_END_DECLS - -#endif /* __G_BACKTRACE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbase64.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbase64.h deleted file mode 100644 index b53fca5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbase64.h +++ /dev/null @@ -1,63 +0,0 @@ -/* gbase64.h - Base64 coding functions - * - * Copyright (C) 2005 Alexander Larsson - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_BASE64_H__ -#define __G_BASE64_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gsize g_base64_encode_step (const guchar *in, - gsize len, - gboolean break_lines, - gchar *out, - gint *state, - gint *save); -GLIB_AVAILABLE_IN_ALL -gsize g_base64_encode_close (gboolean break_lines, - gchar *out, - gint *state, - gint *save); -GLIB_AVAILABLE_IN_ALL -gchar* g_base64_encode (const guchar *data, - gsize len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gsize g_base64_decode_step (const gchar *in, - gsize len, - guchar *out, - gint *state, - guint *save); -GLIB_AVAILABLE_IN_ALL -guchar *g_base64_decode (const gchar *text, - gsize *out_len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -guchar *g_base64_decode_inplace (gchar *text, - gsize *out_len); - - -G_END_DECLS - -#endif /* __G_BASE64_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbitlock.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbitlock.h deleted file mode 100644 index 7485dfa..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbitlock.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright © 2008 Ryan Lortie - * Copyright © 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_BITLOCK_H__ -#define __G_BITLOCK_H__ - -#include - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -void g_bit_lock (volatile gint *address, - gint lock_bit); -GLIB_AVAILABLE_IN_ALL -gboolean g_bit_trylock (volatile gint *address, - gint lock_bit); -GLIB_AVAILABLE_IN_ALL -void g_bit_unlock (volatile gint *address, - gint lock_bit); - -GLIB_AVAILABLE_IN_ALL -void g_pointer_bit_lock (volatile void *address, - gint lock_bit); -GLIB_AVAILABLE_IN_ALL -gboolean g_pointer_bit_trylock (volatile void *address, - gint lock_bit); -GLIB_AVAILABLE_IN_ALL -void g_pointer_bit_unlock (volatile void *address, - gint lock_bit); - -#ifdef __GNUC__ - -#define g_pointer_bit_lock(address, lock_bit) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(address) == sizeof (gpointer)); \ - g_pointer_bit_lock ((address), (lock_bit)); \ - })) - -#define g_pointer_bit_trylock(address, lock_bit) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(address) == sizeof (gpointer)); \ - g_pointer_bit_trylock ((address), (lock_bit)); \ - })) - -#define g_pointer_bit_unlock(address, lock_bit) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(address) == sizeof (gpointer)); \ - g_pointer_bit_unlock ((address), (lock_bit)); \ - })) - -#endif - -G_END_DECLS - -#endif /* __G_BITLOCK_H_ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbookmarkfile.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbookmarkfile.h deleted file mode 100644 index 4d94efe..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbookmarkfile.h +++ /dev/null @@ -1,255 +0,0 @@ -/* gbookmarkfile.h: parsing and building desktop bookmarks - * - * Copyright (C) 2005-2006 Emmanuele Bassi - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - */ - -#ifndef __G_BOOKMARK_FILE_H__ -#define __G_BOOKMARK_FILE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * G_BOOKMARK_FILE_ERROR: - * - * Error domain for bookmark file parsing. - * Errors in this domain will be from the #GBookmarkFileError - * enumeration. See #GError for information on error domains. - */ -#define G_BOOKMARK_FILE_ERROR (g_bookmark_file_error_quark ()) - - -/** - * GBookmarkFileError: - * @G_BOOKMARK_FILE_ERROR_INVALID_URI: URI was ill-formed - * @G_BOOKMARK_FILE_ERROR_INVALID_VALUE: a requested field was not found - * @G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED: a requested application did - * not register a bookmark - * @G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND: a requested URI was not found - * @G_BOOKMARK_FILE_ERROR_READ: document was ill formed - * @G_BOOKMARK_FILE_ERROR_UNKNOWN_ENCODING: the text being parsed was - * in an unknown encoding - * @G_BOOKMARK_FILE_ERROR_WRITE: an error occurred while writing - * @G_BOOKMARK_FILE_ERROR_FILE_NOT_FOUND: requested file was not found - * - * Error codes returned by bookmark file parsing. - */ -typedef enum -{ - G_BOOKMARK_FILE_ERROR_INVALID_URI, - G_BOOKMARK_FILE_ERROR_INVALID_VALUE, - G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED, - G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND, - G_BOOKMARK_FILE_ERROR_READ, - G_BOOKMARK_FILE_ERROR_UNKNOWN_ENCODING, - G_BOOKMARK_FILE_ERROR_WRITE, - G_BOOKMARK_FILE_ERROR_FILE_NOT_FOUND -} GBookmarkFileError; - -GLIB_AVAILABLE_IN_ALL -GQuark g_bookmark_file_error_quark (void); - -/** - * GBookmarkFile: - * - * The GBookmarkFile struct contains only - * private data and should not be directly accessed. - */ -typedef struct _GBookmarkFile GBookmarkFile; - -GLIB_AVAILABLE_IN_ALL -GBookmarkFile *g_bookmark_file_new (void); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_free (GBookmarkFile *bookmark); - -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_load_from_file (GBookmarkFile *bookmark, - const gchar *filename, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_load_from_data (GBookmarkFile *bookmark, - const gchar *data, - gsize length, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_load_from_data_dirs (GBookmarkFile *bookmark, - const gchar *file, - gchar **full_path, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar * g_bookmark_file_to_data (GBookmarkFile *bookmark, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_to_file (GBookmarkFile *bookmark, - const gchar *filename, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_title (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *title); -GLIB_AVAILABLE_IN_ALL -gchar * g_bookmark_file_get_title (GBookmarkFile *bookmark, - const gchar *uri, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_description (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *description); -GLIB_AVAILABLE_IN_ALL -gchar * g_bookmark_file_get_description (GBookmarkFile *bookmark, - const gchar *uri, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_mime_type (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *mime_type); -GLIB_AVAILABLE_IN_ALL -gchar * g_bookmark_file_get_mime_type (GBookmarkFile *bookmark, - const gchar *uri, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_groups (GBookmarkFile *bookmark, - const gchar *uri, - const gchar **groups, - gsize length); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_add_group (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *group); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_has_group (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *group, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar ** g_bookmark_file_get_groups (GBookmarkFile *bookmark, - const gchar *uri, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_add_application (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *name, - const gchar *exec); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_has_application (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *name, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar ** g_bookmark_file_get_applications (GBookmarkFile *bookmark, - const gchar *uri, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_set_app_info (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *name, - const gchar *exec, - gint count, - time_t stamp, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_get_app_info (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *name, - gchar **exec, - guint *count, - time_t *stamp, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_is_private (GBookmarkFile *bookmark, - const gchar *uri, - gboolean is_private); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_get_is_private (GBookmarkFile *bookmark, - const gchar *uri, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_icon (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *href, - const gchar *mime_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_get_icon (GBookmarkFile *bookmark, - const gchar *uri, - gchar **href, - gchar **mime_type, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_added (GBookmarkFile *bookmark, - const gchar *uri, - time_t added); -GLIB_AVAILABLE_IN_ALL -time_t g_bookmark_file_get_added (GBookmarkFile *bookmark, - const gchar *uri, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_modified (GBookmarkFile *bookmark, - const gchar *uri, - time_t modified); -GLIB_AVAILABLE_IN_ALL -time_t g_bookmark_file_get_modified (GBookmarkFile *bookmark, - const gchar *uri, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_bookmark_file_set_visited (GBookmarkFile *bookmark, - const gchar *uri, - time_t visited); -GLIB_AVAILABLE_IN_ALL -time_t g_bookmark_file_get_visited (GBookmarkFile *bookmark, - const gchar *uri, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_has_item (GBookmarkFile *bookmark, - const gchar *uri); -GLIB_AVAILABLE_IN_ALL -gint g_bookmark_file_get_size (GBookmarkFile *bookmark); -GLIB_AVAILABLE_IN_ALL -gchar ** g_bookmark_file_get_uris (GBookmarkFile *bookmark, - gsize *length) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_remove_group (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *group, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_remove_application (GBookmarkFile *bookmark, - const gchar *uri, - const gchar *name, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_remove_item (GBookmarkFile *bookmark, - const gchar *uri, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_bookmark_file_move_item (GBookmarkFile *bookmark, - const gchar *old_uri, - const gchar *new_uri, - GError **error); - -G_END_DECLS - -#endif /* __G_BOOKMARK_FILE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbytes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbytes.h deleted file mode 100644 index c89f6eb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gbytes.h +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Copyright © 2009, 2010 Codethink Limited - * Copyright © 2011 Collabora Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - * Stef Walter - */ - -#ifndef __G_BYTES_H__ -#define __G_BYTES_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_new (gconstpointer data, - gsize size); - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_new_take (gpointer data, - gsize size); - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_new_static (gconstpointer data, - gsize size); - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_new_with_free_func (gconstpointer data, - gsize size, - GDestroyNotify free_func, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_new_from_bytes (GBytes *bytes, - gsize offset, - gsize length); - -GLIB_AVAILABLE_IN_ALL -gconstpointer g_bytes_get_data (GBytes *bytes, - gsize *size); - -GLIB_AVAILABLE_IN_ALL -gsize g_bytes_get_size (GBytes *bytes); - -GLIB_AVAILABLE_IN_ALL -GBytes * g_bytes_ref (GBytes *bytes); - -GLIB_AVAILABLE_IN_ALL -void g_bytes_unref (GBytes *bytes); - -GLIB_AVAILABLE_IN_ALL -gpointer g_bytes_unref_to_data (GBytes *bytes, - gsize *size); - -GLIB_AVAILABLE_IN_ALL -GByteArray * g_bytes_unref_to_array (GBytes *bytes); - -GLIB_AVAILABLE_IN_ALL -guint g_bytes_hash (gconstpointer bytes); - -GLIB_AVAILABLE_IN_ALL -gboolean g_bytes_equal (gconstpointer bytes1, - gconstpointer bytes2); - -GLIB_AVAILABLE_IN_ALL -gint g_bytes_compare (gconstpointer bytes1, - gconstpointer bytes2); - -G_END_DECLS - -#endif /* __G_BYTES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gcharset.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gcharset.h deleted file mode 100644 index f3b306d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gcharset.h +++ /dev/null @@ -1,44 +0,0 @@ -/* gcharset.h - Charset functions - * - * Copyright (C) 2011 Red Hat, Inc. - * - * The GLib Library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * The GLib Library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the Gnome Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_CHARSET_H__ -#define __G_CHARSET_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gboolean g_get_charset (const char **charset); -GLIB_AVAILABLE_IN_ALL -gchar * g_get_codeset (void); - -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_get_language_names (void); -GLIB_AVAILABLE_IN_ALL -gchar ** g_get_locale_variants (const gchar *locale); - -G_END_DECLS - -#endif /* __G_CHARSET_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gchecksum.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gchecksum.h deleted file mode 100644 index ba500a2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gchecksum.h +++ /dev/null @@ -1,103 +0,0 @@ -/* gchecksum.h - data hashing functions - * - * Copyright (C) 2007 Emmanuele Bassi - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_CHECKSUM_H__ -#define __G_CHECKSUM_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * GChecksumType: - * @G_CHECKSUM_MD5: Use the MD5 hashing algorithm - * @G_CHECKSUM_SHA1: Use the SHA-1 hashing algorithm - * @G_CHECKSUM_SHA256: Use the SHA-256 hashing algorithm - * @G_CHECKSUM_SHA512: Use the SHA-512 hashing algorithm - * - * The hashing algorithm to be used by #GChecksum when performing the - * digest of some data. - * - * Note that the #GChecksumType enumeration may be extended at a later - * date to include new hashing algorithm types. - * - * Since: 2.16 - */ -typedef enum { - G_CHECKSUM_MD5, - G_CHECKSUM_SHA1, - G_CHECKSUM_SHA256, - G_CHECKSUM_SHA512 -} GChecksumType; - -/** - * GChecksum: - * - * An opaque structure representing a checksumming operation. - * To create a new GChecksum, use g_checksum_new(). To free - * a GChecksum, use g_checksum_free(). - * - * Since: 2.16 - */ -typedef struct _GChecksum GChecksum; - -GLIB_AVAILABLE_IN_ALL -gssize g_checksum_type_get_length (GChecksumType checksum_type); - -GLIB_AVAILABLE_IN_ALL -GChecksum * g_checksum_new (GChecksumType checksum_type); -GLIB_AVAILABLE_IN_ALL -void g_checksum_reset (GChecksum *checksum); -GLIB_AVAILABLE_IN_ALL -GChecksum * g_checksum_copy (const GChecksum *checksum); -GLIB_AVAILABLE_IN_ALL -void g_checksum_free (GChecksum *checksum); -GLIB_AVAILABLE_IN_ALL -void g_checksum_update (GChecksum *checksum, - const guchar *data, - gssize length); -GLIB_AVAILABLE_IN_ALL -const gchar * g_checksum_get_string (GChecksum *checksum); -GLIB_AVAILABLE_IN_ALL -void g_checksum_get_digest (GChecksum *checksum, - guint8 *buffer, - gsize *digest_len); - -GLIB_AVAILABLE_IN_ALL -gchar *g_compute_checksum_for_data (GChecksumType checksum_type, - const guchar *data, - gsize length); -GLIB_AVAILABLE_IN_ALL -gchar *g_compute_checksum_for_string (GChecksumType checksum_type, - const gchar *str, - gssize length); - -GLIB_AVAILABLE_IN_2_34 -gchar *g_compute_checksum_for_bytes (GChecksumType checksum_type, - GBytes *data); - -G_END_DECLS - -#endif /* __G_CHECKSUM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gconvert.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gconvert.h deleted file mode 100644 index 1945c07..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gconvert.h +++ /dev/null @@ -1,200 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_CONVERT_H__ -#define __G_CONVERT_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GConvertError: - * @G_CONVERT_ERROR_NO_CONVERSION: Conversion between the requested character - * sets is not supported. - * @G_CONVERT_ERROR_ILLEGAL_SEQUENCE: Invalid byte sequence in conversion input. - * @G_CONVERT_ERROR_FAILED: Conversion failed for some reason. - * @G_CONVERT_ERROR_PARTIAL_INPUT: Partial character sequence at end of input. - * @G_CONVERT_ERROR_BAD_URI: URI is invalid. - * @G_CONVERT_ERROR_NOT_ABSOLUTE_PATH: Pathname is not an absolute path. - * - * Error codes returned by character set conversion routines. - */ -typedef enum -{ - G_CONVERT_ERROR_NO_CONVERSION, - G_CONVERT_ERROR_ILLEGAL_SEQUENCE, - G_CONVERT_ERROR_FAILED, - G_CONVERT_ERROR_PARTIAL_INPUT, - G_CONVERT_ERROR_BAD_URI, - G_CONVERT_ERROR_NOT_ABSOLUTE_PATH -} GConvertError; - -/** - * G_CONVERT_ERROR: - * - * Error domain for character set conversions. Errors in this domain will - * be from the #GConvertError enumeration. See #GError for information on - * error domains. - */ -#define G_CONVERT_ERROR g_convert_error_quark() -GLIB_AVAILABLE_IN_ALL -GQuark g_convert_error_quark (void); - -/** - * GIconv: - * - * The GIConv struct wraps an - * iconv() conversion descriptor. It contains private data - * and should only be accessed using the following functions. - */ -typedef struct _GIConv *GIConv; - -GLIB_AVAILABLE_IN_ALL -GIConv g_iconv_open (const gchar *to_codeset, - const gchar *from_codeset); -GLIB_AVAILABLE_IN_ALL -gsize g_iconv (GIConv converter, - gchar **inbuf, - gsize *inbytes_left, - gchar **outbuf, - gsize *outbytes_left); -GLIB_AVAILABLE_IN_ALL -gint g_iconv_close (GIConv converter); - - -GLIB_AVAILABLE_IN_ALL -gchar* g_convert (const gchar *str, - gssize len, - const gchar *to_codeset, - const gchar *from_codeset, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_convert_with_iconv (const gchar *str, - gssize len, - GIConv converter, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_convert_with_fallback (const gchar *str, - gssize len, - const gchar *to_codeset, - const gchar *from_codeset, - const gchar *fallback, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; - - -/* Convert between libc's idea of strings and UTF-8. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_locale_to_utf8 (const gchar *opsysstring, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_locale_from_utf8 (const gchar *utf8string, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; - -/* Convert between the operating system (or C runtime) - * representation of file names and UTF-8. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_filename_to_utf8 (const gchar *opsysstring, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_filename_from_utf8 (const gchar *utf8string, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_from_uri (const gchar *uri, - gchar **hostname, - GError **error) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_to_uri (const gchar *filename, - const gchar *hostname, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_display_name (const gchar *filename) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gboolean g_get_filename_charsets (const gchar ***charsets); - -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_display_basename (const gchar *filename) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gchar **g_uri_list_extract_uris (const gchar *uri_list) G_GNUC_MALLOC; - -#ifdef G_OS_WIN32 -#define g_filename_to_utf8 g_filename_to_utf8_utf8 -#define g_filename_from_utf8 g_filename_from_utf8_utf8 -#define g_filename_from_uri g_filename_from_uri_utf8 -#define g_filename_to_uri g_filename_to_uri_utf8 - -GLIB_AVAILABLE_IN_ALL -gchar* g_filename_to_utf8_utf8 (const gchar *opsysstring, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_filename_from_utf8_utf8 (const gchar *utf8string, - gssize len, - gsize *bytes_read, - gsize *bytes_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_from_uri_utf8 (const gchar *uri, - gchar **hostname, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_filename_to_uri_utf8 (const gchar *filename, - const gchar *hostname, - GError **error) G_GNUC_MALLOC; -#endif - -G_END_DECLS - -#endif /* __G_CONVERT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdataset.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdataset.h deleted file mode 100644 index 6d69e60..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdataset.h +++ /dev/null @@ -1,152 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_DATASET_H__ -#define __G_DATASET_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GData GData; - -typedef void (*GDataForeachFunc) (GQuark key_id, - gpointer data, - gpointer user_data); - -/* Keyed Data List - */ -GLIB_AVAILABLE_IN_ALL -void g_datalist_init (GData **datalist); -GLIB_AVAILABLE_IN_ALL -void g_datalist_clear (GData **datalist); -GLIB_AVAILABLE_IN_ALL -gpointer g_datalist_id_get_data (GData **datalist, - GQuark key_id); -GLIB_AVAILABLE_IN_ALL -void g_datalist_id_set_data_full (GData **datalist, - GQuark key_id, - gpointer data, - GDestroyNotify destroy_func); - -typedef gpointer (*GDuplicateFunc) (gpointer data, gpointer user_data); - -GLIB_AVAILABLE_IN_2_34 -gpointer g_datalist_id_dup_data (GData **datalist, - GQuark key_id, - GDuplicateFunc dup_func, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -gboolean g_datalist_id_replace_data (GData **datalist, - GQuark key_id, - gpointer oldval, - gpointer newval, - GDestroyNotify destroy, - GDestroyNotify *old_destroy); - -GLIB_AVAILABLE_IN_ALL -gpointer g_datalist_id_remove_no_notify (GData **datalist, - GQuark key_id); -GLIB_AVAILABLE_IN_ALL -void g_datalist_foreach (GData **datalist, - GDataForeachFunc func, - gpointer user_data); - -/** - * G_DATALIST_FLAGS_MASK: - * - * A bitmask that restricts the possible flags passed to - * g_datalist_set_flags(). Passing a flags value where - * flags & ~G_DATALIST_FLAGS_MASK != 0 is an error. - */ -#define G_DATALIST_FLAGS_MASK 0x3 - -GLIB_AVAILABLE_IN_ALL -void g_datalist_set_flags (GData **datalist, - guint flags); -GLIB_AVAILABLE_IN_ALL -void g_datalist_unset_flags (GData **datalist, - guint flags); -GLIB_AVAILABLE_IN_ALL -guint g_datalist_get_flags (GData **datalist); - -#define g_datalist_id_set_data(dl, q, d) \ - g_datalist_id_set_data_full ((dl), (q), (d), NULL) -#define g_datalist_id_remove_data(dl, q) \ - g_datalist_id_set_data ((dl), (q), NULL) -#define g_datalist_set_data_full(dl, k, d, f) \ - g_datalist_id_set_data_full ((dl), g_quark_from_string (k), (d), (f)) -#define g_datalist_remove_no_notify(dl, k) \ - g_datalist_id_remove_no_notify ((dl), g_quark_try_string (k)) -#define g_datalist_set_data(dl, k, d) \ - g_datalist_set_data_full ((dl), (k), (d), NULL) -#define g_datalist_remove_data(dl, k) \ - g_datalist_id_set_data ((dl), g_quark_try_string (k), NULL) - -/* Location Associated Keyed Data - */ -GLIB_AVAILABLE_IN_ALL -void g_dataset_destroy (gconstpointer dataset_location); -GLIB_AVAILABLE_IN_ALL -gpointer g_dataset_id_get_data (gconstpointer dataset_location, - GQuark key_id); -GLIB_AVAILABLE_IN_ALL -gpointer g_datalist_get_data (GData **datalist, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -void g_dataset_id_set_data_full (gconstpointer dataset_location, - GQuark key_id, - gpointer data, - GDestroyNotify destroy_func); -GLIB_AVAILABLE_IN_ALL -gpointer g_dataset_id_remove_no_notify (gconstpointer dataset_location, - GQuark key_id); -GLIB_AVAILABLE_IN_ALL -void g_dataset_foreach (gconstpointer dataset_location, - GDataForeachFunc func, - gpointer user_data); -#define g_dataset_id_set_data(l, k, d) \ - g_dataset_id_set_data_full ((l), (k), (d), NULL) -#define g_dataset_id_remove_data(l, k) \ - g_dataset_id_set_data ((l), (k), NULL) -#define g_dataset_get_data(l, k) \ - (g_dataset_id_get_data ((l), g_quark_try_string (k))) -#define g_dataset_set_data_full(l, k, d, f) \ - g_dataset_id_set_data_full ((l), g_quark_from_string (k), (d), (f)) -#define g_dataset_remove_no_notify(l, k) \ - g_dataset_id_remove_no_notify ((l), g_quark_try_string (k)) -#define g_dataset_set_data(l, k, d) \ - g_dataset_set_data_full ((l), (k), (d), NULL) -#define g_dataset_remove_data(l, k) \ - g_dataset_id_set_data ((l), g_quark_try_string (k), NULL) - -G_END_DECLS - -#endif /* __G_DATASET_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdate.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdate.h deleted file mode 100644 index ad02879..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdate.h +++ /dev/null @@ -1,311 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_DATE_H__ -#define __G_DATE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#include -#include - -G_BEGIN_DECLS - -/* GDate - * - * Date calculations (not time for now, to be resolved). These are a - * mutant combination of Steffen Beyer's DateCalc routines - * (http://www.perl.com/CPAN/authors/id/STBEY/) and Jon Trowbridge's - * date routines (written for in-house software). Written by Havoc - * Pennington - */ - -typedef gint32 GTime; -typedef guint16 GDateYear; -typedef guint8 GDateDay; /* day of the month */ -typedef struct _GDate GDate; - -/* enum used to specify order of appearance in parsed date strings */ -typedef enum -{ - G_DATE_DAY = 0, - G_DATE_MONTH = 1, - G_DATE_YEAR = 2 -} GDateDMY; - -/* actual week and month values */ -typedef enum -{ - G_DATE_BAD_WEEKDAY = 0, - G_DATE_MONDAY = 1, - G_DATE_TUESDAY = 2, - G_DATE_WEDNESDAY = 3, - G_DATE_THURSDAY = 4, - G_DATE_FRIDAY = 5, - G_DATE_SATURDAY = 6, - G_DATE_SUNDAY = 7 -} GDateWeekday; -typedef enum -{ - G_DATE_BAD_MONTH = 0, - G_DATE_JANUARY = 1, - G_DATE_FEBRUARY = 2, - G_DATE_MARCH = 3, - G_DATE_APRIL = 4, - G_DATE_MAY = 5, - G_DATE_JUNE = 6, - G_DATE_JULY = 7, - G_DATE_AUGUST = 8, - G_DATE_SEPTEMBER = 9, - G_DATE_OCTOBER = 10, - G_DATE_NOVEMBER = 11, - G_DATE_DECEMBER = 12 -} GDateMonth; - -#define G_DATE_BAD_JULIAN 0U -#define G_DATE_BAD_DAY 0U -#define G_DATE_BAD_YEAR 0U - -/* Note: directly manipulating structs is generally a bad idea, but - * in this case it's an *incredibly* bad idea, because all or part - * of this struct can be invalid at any given time. Use the functions, - * or you will get hosed, I promise. - */ -struct _GDate -{ - guint julian_days : 32; /* julian days representation - we use a - * bitfield hoping that 64 bit platforms - * will pack this whole struct in one big - * int - */ - - guint julian : 1; /* julian is valid */ - guint dmy : 1; /* dmy is valid */ - - /* DMY representation */ - guint day : 6; - guint month : 4; - guint year : 16; -}; - -/* g_date_new() returns an invalid date, you then have to _set() stuff - * to get a usable object. You can also allocate a GDate statically, - * then call g_date_clear() to initialize. - */ -GLIB_AVAILABLE_IN_ALL -GDate* g_date_new (void); -GLIB_AVAILABLE_IN_ALL -GDate* g_date_new_dmy (GDateDay day, - GDateMonth month, - GDateYear year); -GLIB_AVAILABLE_IN_ALL -GDate* g_date_new_julian (guint32 julian_day); -GLIB_AVAILABLE_IN_ALL -void g_date_free (GDate *date); - -/* check g_date_valid() after doing an operation that might fail, like - * _parse. Almost all g_date operations are undefined on invalid - * dates (the exceptions are the mutators, since you need those to - * return to validity). - */ -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid (const GDate *date); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_day (GDateDay day) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_month (GDateMonth month) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_year (GDateYear year) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_weekday (GDateWeekday weekday) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_julian (guint32 julian_date) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_date_valid_dmy (GDateDay day, - GDateMonth month, - GDateYear year) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GDateWeekday g_date_get_weekday (const GDate *date); -GLIB_AVAILABLE_IN_ALL -GDateMonth g_date_get_month (const GDate *date); -GLIB_AVAILABLE_IN_ALL -GDateYear g_date_get_year (const GDate *date); -GLIB_AVAILABLE_IN_ALL -GDateDay g_date_get_day (const GDate *date); -GLIB_AVAILABLE_IN_ALL -guint32 g_date_get_julian (const GDate *date); -GLIB_AVAILABLE_IN_ALL -guint g_date_get_day_of_year (const GDate *date); -/* First monday/sunday is the start of week 1; if we haven't reached - * that day, return 0. These are not ISO weeks of the year; that - * routine needs to be added. - * these functions return the number of weeks, starting on the - * corrsponding day - */ -GLIB_AVAILABLE_IN_ALL -guint g_date_get_monday_week_of_year (const GDate *date); -GLIB_AVAILABLE_IN_ALL -guint g_date_get_sunday_week_of_year (const GDate *date); -GLIB_AVAILABLE_IN_ALL -guint g_date_get_iso8601_week_of_year (const GDate *date); - -/* If you create a static date struct you need to clear it to get it - * in a sane state before use. You can clear a whole array at - * once with the ndates argument. - */ -GLIB_AVAILABLE_IN_ALL -void g_date_clear (GDate *date, - guint n_dates); - -/* The parse routine is meant for dates typed in by a user, so it - * permits many formats but tries to catch common typos. If your data - * needs to be strictly validated, it is not an appropriate function. - */ -GLIB_AVAILABLE_IN_ALL -void g_date_set_parse (GDate *date, - const gchar *str); -GLIB_AVAILABLE_IN_ALL -void g_date_set_time_t (GDate *date, - time_t timet); -GLIB_AVAILABLE_IN_ALL -void g_date_set_time_val (GDate *date, - GTimeVal *timeval); -#ifndef G_DISABLE_DEPRECATED -GLIB_DEPRECATED_FOR(g_date_set_time_t) -void g_date_set_time (GDate *date, - GTime time_); -#endif -GLIB_AVAILABLE_IN_ALL -void g_date_set_month (GDate *date, - GDateMonth month); -GLIB_AVAILABLE_IN_ALL -void g_date_set_day (GDate *date, - GDateDay day); -GLIB_AVAILABLE_IN_ALL -void g_date_set_year (GDate *date, - GDateYear year); -GLIB_AVAILABLE_IN_ALL -void g_date_set_dmy (GDate *date, - GDateDay day, - GDateMonth month, - GDateYear y); -GLIB_AVAILABLE_IN_ALL -void g_date_set_julian (GDate *date, - guint32 julian_date); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_is_first_of_month (const GDate *date); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_is_last_of_month (const GDate *date); - -/* To go forward by some number of weeks just go forward weeks*7 days */ -GLIB_AVAILABLE_IN_ALL -void g_date_add_days (GDate *date, - guint n_days); -GLIB_AVAILABLE_IN_ALL -void g_date_subtract_days (GDate *date, - guint n_days); - -/* If you add/sub months while day > 28, the day might change */ -GLIB_AVAILABLE_IN_ALL -void g_date_add_months (GDate *date, - guint n_months); -GLIB_AVAILABLE_IN_ALL -void g_date_subtract_months (GDate *date, - guint n_months); - -/* If it's feb 29, changing years can move you to the 28th */ -GLIB_AVAILABLE_IN_ALL -void g_date_add_years (GDate *date, - guint n_years); -GLIB_AVAILABLE_IN_ALL -void g_date_subtract_years (GDate *date, - guint n_years); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_is_leap_year (GDateYear year) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -guint8 g_date_get_days_in_month (GDateMonth month, - GDateYear year) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -guint8 g_date_get_monday_weeks_in_year (GDateYear year) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -guint8 g_date_get_sunday_weeks_in_year (GDateYear year) G_GNUC_CONST; - -/* Returns the number of days between the two dates. If date2 comes - before date1, a negative value is return. */ -GLIB_AVAILABLE_IN_ALL -gint g_date_days_between (const GDate *date1, - const GDate *date2); - -/* qsort-friendly (with a cast...) */ -GLIB_AVAILABLE_IN_ALL -gint g_date_compare (const GDate *lhs, - const GDate *rhs); -GLIB_AVAILABLE_IN_ALL -void g_date_to_struct_tm (const GDate *date, - struct tm *tm); - -GLIB_AVAILABLE_IN_ALL -void g_date_clamp (GDate *date, - const GDate *min_date, - const GDate *max_date); - -/* Swap date1 and date2's values if date1 > date2. */ -GLIB_AVAILABLE_IN_ALL -void g_date_order (GDate *date1, GDate *date2); - -/* Just like strftime() except you can only use date-related formats. - * Using a time format is undefined. - */ -GLIB_AVAILABLE_IN_ALL -gsize g_date_strftime (gchar *s, - gsize slen, - const gchar *format, - const GDate *date); - -#ifndef G_DISABLE_DEPRECATED - -#define g_date_weekday g_date_get_weekday -#define g_date_month g_date_get_month -#define g_date_year g_date_get_year -#define g_date_day g_date_get_day -#define g_date_julian g_date_get_julian -#define g_date_day_of_year g_date_get_day_of_year -#define g_date_monday_week_of_year g_date_get_monday_week_of_year -#define g_date_sunday_week_of_year g_date_get_sunday_week_of_year -#define g_date_days_in_month g_date_get_days_in_month -#define g_date_monday_weeks_in_year g_date_get_monday_weeks_in_year -#define g_date_sunday_weeks_in_year g_date_get_sunday_weeks_in_year - -#endif /* G_DISABLE_DEPRECATED */ - -G_END_DECLS - -#endif /* __G_DATE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdatetime.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdatetime.h deleted file mode 100644 index cbaf190..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdatetime.h +++ /dev/null @@ -1,264 +0,0 @@ -/* - * Copyright (C) 2009-2010 Christian Hergert - * Copyright © 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 of the - * licence, or (at your option) any later version. - * - * This is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 - * USA. - * - * Authors: Christian Hergert - * Thiago Santos - * Emmanuele Bassi - * Ryan Lortie - */ - -#ifndef __G_DATE_TIME_H__ -#define __G_DATE_TIME_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_TIME_SPAN_DAY: - * - * Evaluates to a time span of one day. - * - * Since: 2.26 - */ -#define G_TIME_SPAN_DAY (G_GINT64_CONSTANT (86400000000)) - -/** - * G_TIME_SPAN_HOUR: - * - * Evaluates to a time span of one hour. - * - * Since: 2.26 - */ -#define G_TIME_SPAN_HOUR (G_GINT64_CONSTANT (3600000000)) - -/** - * G_TIME_SPAN_MINUTE: - * - * Evaluates to a time span of one minute. - * - * Since: 2.26 - */ -#define G_TIME_SPAN_MINUTE (G_GINT64_CONSTANT (60000000)) - -/** - * G_TIME_SPAN_SECOND: - * - * Evaluates to a time span of one second. - * - * Since: 2.26 - */ -#define G_TIME_SPAN_SECOND (G_GINT64_CONSTANT (1000000)) - -/** - * G_TIME_SPAN_MILLISECOND: - * - * Evaluates to a time span of one millisecond. - * - * Since: 2.26 - */ -#define G_TIME_SPAN_MILLISECOND (G_GINT64_CONSTANT (1000)) - -/** - * GTimeSpan: - * - * A value representing an interval of time, in microseconds. - * - * Since: 2.26 - */ -typedef gint64 GTimeSpan; - -/** - * GDateTime: - * - * GDateTime is an opaque structure whose members - * cannot be accessed directly. - * - * Since: 2.26 - */ -typedef struct _GDateTime GDateTime; - -GLIB_AVAILABLE_IN_ALL -void g_date_time_unref (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_ref (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_now (GTimeZone *tz); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_now_local (void); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_now_utc (void); - -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_from_unix_local (gint64 t); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_from_unix_utc (gint64 t); - -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_from_timeval_local (const GTimeVal *tv); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_from_timeval_utc (const GTimeVal *tv); - -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new (GTimeZone *tz, - gint year, - gint month, - gint day, - gint hour, - gint minute, - gdouble seconds); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_local (gint year, - gint month, - gint day, - gint hour, - gint minute, - gdouble seconds); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_new_utc (gint year, - gint month, - gint day, - gint hour, - gint minute, - gdouble seconds); - -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add (GDateTime *datetime, - GTimeSpan timespan); - -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_years (GDateTime *datetime, - gint years); -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_months (GDateTime *datetime, - gint months); -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_weeks (GDateTime *datetime, - gint weeks); -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_days (GDateTime *datetime, - gint days); - -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_hours (GDateTime *datetime, - gint hours); -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_minutes (GDateTime *datetime, - gint minutes); -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_seconds (GDateTime *datetime, - gdouble seconds); - -GLIB_AVAILABLE_IN_ALL -G_GNUC_WARN_UNUSED_RESULT -GDateTime * g_date_time_add_full (GDateTime *datetime, - gint years, - gint months, - gint days, - gint hours, - gint minutes, - gdouble seconds); - -GLIB_AVAILABLE_IN_ALL -gint g_date_time_compare (gconstpointer dt1, - gconstpointer dt2); -GLIB_AVAILABLE_IN_ALL -GTimeSpan g_date_time_difference (GDateTime *end, - GDateTime *begin); -GLIB_AVAILABLE_IN_ALL -guint g_date_time_hash (gconstpointer datetime); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_time_equal (gconstpointer dt1, - gconstpointer dt2); - -GLIB_AVAILABLE_IN_ALL -void g_date_time_get_ymd (GDateTime *datetime, - gint *year, - gint *month, - gint *day); - -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_year (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_month (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_day_of_month (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_week_numbering_year (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_week_of_year (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_day_of_week (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_day_of_year (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_hour (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_minute (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_second (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gint g_date_time_get_microsecond (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gdouble g_date_time_get_seconds (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -gint64 g_date_time_to_unix (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_time_to_timeval (GDateTime *datetime, - GTimeVal *tv); - -GLIB_AVAILABLE_IN_ALL -GTimeSpan g_date_time_get_utc_offset (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -const gchar * g_date_time_get_timezone_abbreviation (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -gboolean g_date_time_is_daylight_savings (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_to_timezone (GDateTime *datetime, - GTimeZone *tz); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_to_local (GDateTime *datetime); -GLIB_AVAILABLE_IN_ALL -GDateTime * g_date_time_to_utc (GDateTime *datetime); - -GLIB_AVAILABLE_IN_ALL -gchar * g_date_time_format (GDateTime *datetime, - const gchar *format) G_GNUC_MALLOC; - -G_END_DECLS - -#endif /* __G_DATE_TIME_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdir.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdir.h deleted file mode 100644 index 7b6ec1b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gdir.h +++ /dev/null @@ -1,66 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * gdir.c: Simplified wrapper around the DIRENT functions. - * - * Copyright 2001 Hans Breuer - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_DIR_H__ -#define __G_DIR_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#ifdef G_OS_UNIX -#include -#endif - -G_BEGIN_DECLS - -typedef struct _GDir GDir; - -GLIB_AVAILABLE_IN_ALL -GDir * g_dir_open (const gchar *path, - guint flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar * g_dir_read_name (GDir *dir); -GLIB_AVAILABLE_IN_ALL -void g_dir_rewind (GDir *dir); -GLIB_AVAILABLE_IN_ALL -void g_dir_close (GDir *dir); - -#ifdef G_OS_WIN32 -#define g_dir_open g_dir_open_utf8 -#define g_dir_read_name g_dir_read_name_utf8 - -GLIB_AVAILABLE_IN_ALL -GDir *g_dir_open_utf8 (const gchar *path, - guint flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dir_read_name_utf8 (GDir *dir); -#endif /* G_OS_WIN32 */ - -G_END_DECLS - -#endif /* __G_DIR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/genviron.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/genviron.h deleted file mode 100644 index 1fcc225..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/genviron.h +++ /dev/null @@ -1,80 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_ENVIRON_H__ -#define __G_ENVIRON_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -const gchar * g_getenv (const gchar *variable); -GLIB_AVAILABLE_IN_ALL -gboolean g_setenv (const gchar *variable, - const gchar *value, - gboolean overwrite); -GLIB_AVAILABLE_IN_ALL -void g_unsetenv (const gchar *variable); -GLIB_AVAILABLE_IN_ALL -gchar ** g_listenv (void); - -GLIB_AVAILABLE_IN_ALL -gchar ** g_get_environ (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_environ_getenv (gchar **envp, - const gchar *variable); -GLIB_AVAILABLE_IN_ALL -gchar ** g_environ_setenv (gchar **envp, - const gchar *variable, - const gchar *value, - gboolean overwrite) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -gchar ** g_environ_unsetenv (gchar **envp, - const gchar *variable) G_GNUC_WARN_UNUSED_RESULT; - -#ifdef G_OS_WIN32 -#define g_getenv g_getenv_utf8 -#define g_setenv g_setenv_utf8 -#define g_unsetenv g_unsetenv_utf8 - -GLIB_AVAILABLE_IN_ALL -const gchar *g_getenv_utf8 (const gchar *variable); -GLIB_AVAILABLE_IN_ALL -gboolean g_setenv_utf8 (const gchar *variable, - const gchar *value, - gboolean overwrite); -GLIB_AVAILABLE_IN_ALL -void g_unsetenv_utf8 (const gchar *variable); -#endif - -G_END_DECLS - -#endif /* __G_ENVIRON_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gerror.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gerror.h deleted file mode 100644 index 6224b87..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gerror.h +++ /dev/null @@ -1,119 +0,0 @@ -/* gerror.h - Error reporting system - * - * Copyright 2000 Red Hat, Inc. - * - * The Gnome Library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * The Gnome Library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the Gnome Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_ERROR_H__ -#define __G_ERROR_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#include - -G_BEGIN_DECLS - -/** - * GError: - * @domain: error domain, e.g. #G_FILE_ERROR - * @code: error code, e.g. %G_FILE_ERROR_NOENT - * @message: human-readable informative error message - * - * The GError structure contains - * information about an error that has occurred. - */ -typedef struct _GError GError; - -struct _GError -{ - GQuark domain; - gint code; - gchar *message; -}; - -GLIB_AVAILABLE_IN_ALL -GError* g_error_new (GQuark domain, - gint code, - const gchar *format, - ...) G_GNUC_PRINTF (3, 4); - -GLIB_AVAILABLE_IN_ALL -GError* g_error_new_literal (GQuark domain, - gint code, - const gchar *message); -GLIB_AVAILABLE_IN_ALL -GError* g_error_new_valist (GQuark domain, - gint code, - const gchar *format, - va_list args) G_GNUC_PRINTF(3, 0); - -GLIB_AVAILABLE_IN_ALL -void g_error_free (GError *error); -GLIB_AVAILABLE_IN_ALL -GError* g_error_copy (const GError *error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_error_matches (const GError *error, - GQuark domain, - gint code); - -/* if (err) *err = g_error_new(domain, code, format, ...), also has - * some sanity checks. - */ -GLIB_AVAILABLE_IN_ALL -void g_set_error (GError **err, - GQuark domain, - gint code, - const gchar *format, - ...) G_GNUC_PRINTF (4, 5); - -GLIB_AVAILABLE_IN_ALL -void g_set_error_literal (GError **err, - GQuark domain, - gint code, - const gchar *message); - -/* if (dest) *dest = src; also has some sanity checks. - */ -GLIB_AVAILABLE_IN_ALL -void g_propagate_error (GError **dest, - GError *src); - -/* if (err && *err) { g_error_free(*err); *err = NULL; } */ -GLIB_AVAILABLE_IN_ALL -void g_clear_error (GError **err); - -/* if (err) prefix the formatted string to the ->message */ -GLIB_AVAILABLE_IN_ALL -void g_prefix_error (GError **err, - const gchar *format, - ...) G_GNUC_PRINTF (2, 3); - -/* g_propagate_error then g_error_prefix on dest */ -GLIB_AVAILABLE_IN_ALL -void g_propagate_prefixed_error (GError **dest, - GError *src, - const gchar *format, - ...) G_GNUC_PRINTF (3, 4); - -G_END_DECLS - -#endif /* __G_ERROR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gfileutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gfileutils.h deleted file mode 100644 index 93dbde3..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gfileutils.h +++ /dev/null @@ -1,208 +0,0 @@ -/* gfileutils.h - File utility functions - * - * Copyright 2000 Red Hat, Inc. - * - * GLib is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_FILEUTILS_H__ -#define __G_FILEUTILS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_FILE_ERROR g_file_error_quark () - -typedef enum -{ - G_FILE_ERROR_EXIST, - G_FILE_ERROR_ISDIR, - G_FILE_ERROR_ACCES, - G_FILE_ERROR_NAMETOOLONG, - G_FILE_ERROR_NOENT, - G_FILE_ERROR_NOTDIR, - G_FILE_ERROR_NXIO, - G_FILE_ERROR_NODEV, - G_FILE_ERROR_ROFS, - G_FILE_ERROR_TXTBSY, - G_FILE_ERROR_FAULT, - G_FILE_ERROR_LOOP, - G_FILE_ERROR_NOSPC, - G_FILE_ERROR_NOMEM, - G_FILE_ERROR_MFILE, - G_FILE_ERROR_NFILE, - G_FILE_ERROR_BADF, - G_FILE_ERROR_INVAL, - G_FILE_ERROR_PIPE, - G_FILE_ERROR_AGAIN, - G_FILE_ERROR_INTR, - G_FILE_ERROR_IO, - G_FILE_ERROR_PERM, - G_FILE_ERROR_NOSYS, - G_FILE_ERROR_FAILED -} GFileError; - -/* For backward-compat reasons, these are synced to an old - * anonymous enum in libgnome. But don't use that enum - * in new code. - */ -typedef enum -{ - G_FILE_TEST_IS_REGULAR = 1 << 0, - G_FILE_TEST_IS_SYMLINK = 1 << 1, - G_FILE_TEST_IS_DIR = 1 << 2, - G_FILE_TEST_IS_EXECUTABLE = 1 << 3, - G_FILE_TEST_EXISTS = 1 << 4 -} GFileTest; - -GLIB_AVAILABLE_IN_ALL -GQuark g_file_error_quark (void); -/* So other code can generate a GFileError */ -GLIB_AVAILABLE_IN_ALL -GFileError g_file_error_from_errno (gint err_no); - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_test (const gchar *filename, - GFileTest test); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_get_contents (const gchar *filename, - gchar **contents, - gsize *length, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_set_contents (const gchar *filename, - const gchar *contents, - gssize length, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_file_read_link (const gchar *filename, - GError **error); - -/* Wrapper / workalike for mkdtemp() */ -GLIB_AVAILABLE_IN_2_30 -gchar *g_mkdtemp (gchar *tmpl); -GLIB_AVAILABLE_IN_2_30 -gchar *g_mkdtemp_full (gchar *tmpl, - gint mode); - -/* Wrapper / workalike for mkstemp() */ -GLIB_AVAILABLE_IN_ALL -gint g_mkstemp (gchar *tmpl); -GLIB_AVAILABLE_IN_ALL -gint g_mkstemp_full (gchar *tmpl, - gint flags, - gint mode); - -/* Wrappers for g_mkstemp and g_mkdtemp() */ -GLIB_AVAILABLE_IN_ALL -gint g_file_open_tmp (const gchar *tmpl, - gchar **name_used, - GError **error); -GLIB_AVAILABLE_IN_2_30 -gchar *g_dir_make_tmp (const gchar *tmpl, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gchar *g_build_path (const gchar *separator, - const gchar *first_element, - ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -gchar *g_build_pathv (const gchar *separator, - gchar **args) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gchar *g_build_filename (const gchar *first_element, - ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -gchar *g_build_filenamev (gchar **args) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gint g_mkdir_with_parents (const gchar *pathname, - gint mode); - -#ifdef G_OS_WIN32 - -/* On Win32, the canonical directory separator is the backslash, and - * the search path separator is the semicolon. Note that also the - * (forward) slash works as directory separator. - */ -#define G_DIR_SEPARATOR '\\' -#define G_DIR_SEPARATOR_S "\\" -#define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR || (c) == '/') -#define G_SEARCHPATH_SEPARATOR ';' -#define G_SEARCHPATH_SEPARATOR_S ";" - -#else /* !G_OS_WIN32 */ - -#define G_DIR_SEPARATOR '/' -#define G_DIR_SEPARATOR_S "/" -#define G_IS_DIR_SEPARATOR(c) ((c) == G_DIR_SEPARATOR) -#define G_SEARCHPATH_SEPARATOR ':' -#define G_SEARCHPATH_SEPARATOR_S ":" - -#endif /* !G_OS_WIN32 */ - -GLIB_AVAILABLE_IN_ALL -gboolean g_path_is_absolute (const gchar *file_name); -GLIB_AVAILABLE_IN_ALL -const gchar *g_path_skip_root (const gchar *file_name); - -GLIB_DEPRECATED_FOR(g_path_get_basename) -const gchar *g_basename (const gchar *file_name); -#ifndef G_DISABLE_DEPRECATED -#define g_dirname g_path_get_dirname -#endif - -GLIB_AVAILABLE_IN_ALL -gchar *g_get_current_dir (void); -GLIB_AVAILABLE_IN_ALL -gchar *g_path_get_basename (const gchar *file_name) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_path_get_dirname (const gchar *file_name) G_GNUC_MALLOC; - -#ifdef G_OS_WIN32 -#define g_file_test g_file_test_utf8 -#define g_file_get_contents g_file_get_contents_utf8 -#define g_mkstemp g_mkstemp_utf8 -#define g_file_open_tmp g_file_open_tmp_utf8 -#define g_get_current_dir g_get_current_dir_utf8 - -GLIB_AVAILABLE_IN_ALL -gboolean g_file_test_utf8 (const gchar *filename, - GFileTest test); -GLIB_AVAILABLE_IN_ALL -gboolean g_file_get_contents_utf8 (const gchar *filename, - gchar **contents, - gsize *length, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint g_mkstemp_utf8 (gchar *tmpl); -GLIB_AVAILABLE_IN_ALL -gint g_file_open_tmp_utf8 (const gchar *tmpl, - gchar **name_used, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_get_current_dir_utf8 (void); -#endif /* G_OS_WIN32 */ - -G_END_DECLS - -#endif /* __G_FILEUTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ggettext.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ggettext.h deleted file mode 100644 index e1ef576..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ggettext.h +++ /dev/null @@ -1,65 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_GETTEXT_H__ -#define __G_GETTEXT_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -const gchar *g_strip_context (const gchar *msgid, - const gchar *msgval) G_GNUC_FORMAT(1); - -GLIB_AVAILABLE_IN_ALL -const gchar *g_dgettext (const gchar *domain, - const gchar *msgid) G_GNUC_FORMAT(2); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dcgettext (const gchar *domain, - const gchar *msgid, - gint category) G_GNUC_FORMAT(2); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dngettext (const gchar *domain, - const gchar *msgid, - const gchar *msgid_plural, - gulong n) G_GNUC_FORMAT(3); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dpgettext (const gchar *domain, - const gchar *msgctxtid, - gsize msgidoffset) G_GNUC_FORMAT(2); -GLIB_AVAILABLE_IN_ALL -const gchar *g_dpgettext2 (const gchar *domain, - const gchar *context, - const gchar *msgid) G_GNUC_FORMAT(3); - -G_END_DECLS - -#endif /* __G_GETTEXT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghash.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghash.h deleted file mode 100644 index 19054bb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghash.h +++ /dev/null @@ -1,184 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_HASH_H__ -#define __G_HASH_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GHashTable GHashTable; - -typedef gboolean (*GHRFunc) (gpointer key, - gpointer value, - gpointer user_data); - -typedef struct _GHashTableIter GHashTableIter; - -struct _GHashTableIter -{ - /*< private >*/ - gpointer dummy1; - gpointer dummy2; - gpointer dummy3; - int dummy4; - gboolean dummy5; - gpointer dummy6; -}; - -GLIB_AVAILABLE_IN_ALL -GHashTable* g_hash_table_new (GHashFunc hash_func, - GEqualFunc key_equal_func); -GLIB_AVAILABLE_IN_ALL -GHashTable* g_hash_table_new_full (GHashFunc hash_func, - GEqualFunc key_equal_func, - GDestroyNotify key_destroy_func, - GDestroyNotify value_destroy_func); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_destroy (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_insert (GHashTable *hash_table, - gpointer key, - gpointer value); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_replace (GHashTable *hash_table, - gpointer key, - gpointer value); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_add (GHashTable *hash_table, - gpointer key); -GLIB_AVAILABLE_IN_ALL -gboolean g_hash_table_remove (GHashTable *hash_table, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_remove_all (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -gboolean g_hash_table_steal (GHashTable *hash_table, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_steal_all (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -gpointer g_hash_table_lookup (GHashTable *hash_table, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -gboolean g_hash_table_contains (GHashTable *hash_table, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -gboolean g_hash_table_lookup_extended (GHashTable *hash_table, - gconstpointer lookup_key, - gpointer *orig_key, - gpointer *value); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_foreach (GHashTable *hash_table, - GHFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gpointer g_hash_table_find (GHashTable *hash_table, - GHRFunc predicate, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -guint g_hash_table_foreach_remove (GHashTable *hash_table, - GHRFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -guint g_hash_table_foreach_steal (GHashTable *hash_table, - GHRFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -guint g_hash_table_size (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -GList * g_hash_table_get_keys (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -GList * g_hash_table_get_values (GHashTable *hash_table); - -GLIB_AVAILABLE_IN_ALL -void g_hash_table_iter_init (GHashTableIter *iter, - GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -gboolean g_hash_table_iter_next (GHashTableIter *iter, - gpointer *key, - gpointer *value); -GLIB_AVAILABLE_IN_ALL -GHashTable* g_hash_table_iter_get_hash_table (GHashTableIter *iter); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_iter_remove (GHashTableIter *iter); -GLIB_AVAILABLE_IN_2_30 -void g_hash_table_iter_replace (GHashTableIter *iter, - gpointer value); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_iter_steal (GHashTableIter *iter); - -GLIB_AVAILABLE_IN_ALL -GHashTable* g_hash_table_ref (GHashTable *hash_table); -GLIB_AVAILABLE_IN_ALL -void g_hash_table_unref (GHashTable *hash_table); - -#ifndef G_DISABLE_DEPRECATED -#define g_hash_table_freeze(hash_table) ((void)0) -#define g_hash_table_thaw(hash_table) ((void)0) -#endif - -/* Hash Functions - */ -GLIB_AVAILABLE_IN_ALL -gboolean g_str_equal (gconstpointer v1, - gconstpointer v2); -GLIB_AVAILABLE_IN_ALL -guint g_str_hash (gconstpointer v); - -GLIB_AVAILABLE_IN_ALL -gboolean g_int_equal (gconstpointer v1, - gconstpointer v2); -GLIB_AVAILABLE_IN_ALL -guint g_int_hash (gconstpointer v); - -GLIB_AVAILABLE_IN_ALL -gboolean g_int64_equal (gconstpointer v1, - gconstpointer v2); -GLIB_AVAILABLE_IN_ALL -guint g_int64_hash (gconstpointer v); - -GLIB_AVAILABLE_IN_ALL -gboolean g_double_equal (gconstpointer v1, - gconstpointer v2); -GLIB_AVAILABLE_IN_ALL -guint g_double_hash (gconstpointer v); - -GLIB_AVAILABLE_IN_ALL -guint g_direct_hash (gconstpointer v) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_direct_equal (gconstpointer v1, - gconstpointer v2) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_HASH_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghmac.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghmac.h deleted file mode 100644 index 94bc427..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghmac.h +++ /dev/null @@ -1,80 +0,0 @@ -/* ghmac.h - secure data hashing - * - * Copyright (C) 2011 Stef Walter - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_HMAC_H__ -#define __G_HMAC_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include "gchecksum.h" - -G_BEGIN_DECLS - -/** - * GHmac: - * - * An opaque structure representing a HMAC operation. - * To create a new GHmac, use g_hmac_new(). To free - * a GHmac, use g_hmac_unref(). - * - * Since: 2.30 - */ -typedef struct _GHmac GHmac; - -GLIB_AVAILABLE_IN_2_30 -GHmac * g_hmac_new (GChecksumType digest_type, - const guchar *key, - gsize key_len); -GLIB_AVAILABLE_IN_2_30 -GHmac * g_hmac_copy (const GHmac *hmac); -GLIB_AVAILABLE_IN_2_30 -GHmac * g_hmac_ref (GHmac *hmac); -GLIB_AVAILABLE_IN_2_30 -void g_hmac_unref (GHmac *hmac); -GLIB_AVAILABLE_IN_2_30 -void g_hmac_update (GHmac *hmac, - const guchar *data, - gssize length); -GLIB_AVAILABLE_IN_2_30 -const gchar * g_hmac_get_string (GHmac *hmac); -GLIB_AVAILABLE_IN_2_30 -void g_hmac_get_digest (GHmac *hmac, - guint8 *buffer, - gsize *digest_len); - -GLIB_AVAILABLE_IN_2_30 -gchar *g_compute_hmac_for_data (GChecksumType digest_type, - const guchar *key, - gsize key_len, - const guchar *data, - gsize length); -GLIB_AVAILABLE_IN_2_30 -gchar *g_compute_hmac_for_string (GChecksumType digest_type, - const guchar *key, - gsize key_len, - const gchar *str, - gssize length); - -G_END_DECLS - -#endif /* __G_CHECKSUM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghook.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghook.h deleted file mode 100644 index 45e1e27..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghook.h +++ /dev/null @@ -1,204 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_HOOK_H__ -#define __G_HOOK_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -/* --- typedefs --- */ -typedef struct _GHook GHook; -typedef struct _GHookList GHookList; - -typedef gint (*GHookCompareFunc) (GHook *new_hook, - GHook *sibling); -typedef gboolean (*GHookFindFunc) (GHook *hook, - gpointer data); -typedef void (*GHookMarshaller) (GHook *hook, - gpointer marshal_data); -typedef gboolean (*GHookCheckMarshaller) (GHook *hook, - gpointer marshal_data); -typedef void (*GHookFunc) (gpointer data); -typedef gboolean (*GHookCheckFunc) (gpointer data); -typedef void (*GHookFinalizeFunc) (GHookList *hook_list, - GHook *hook); -typedef enum -{ - G_HOOK_FLAG_ACTIVE = 1 << 0, - G_HOOK_FLAG_IN_CALL = 1 << 1, - G_HOOK_FLAG_MASK = 0x0f -} GHookFlagMask; -#define G_HOOK_FLAG_USER_SHIFT (4) - - -/* --- structures --- */ -struct _GHookList -{ - gulong seq_id; - guint hook_size : 16; - guint is_setup : 1; - GHook *hooks; - gpointer dummy3; - GHookFinalizeFunc finalize_hook; - gpointer dummy[2]; -}; -struct _GHook -{ - gpointer data; - GHook *next; - GHook *prev; - guint ref_count; - gulong hook_id; - guint flags; - gpointer func; - GDestroyNotify destroy; -}; - - -/* --- macros --- */ -#define G_HOOK(hook) ((GHook*) (hook)) -#define G_HOOK_FLAGS(hook) (G_HOOK (hook)->flags) -#define G_HOOK_ACTIVE(hook) ((G_HOOK_FLAGS (hook) & \ - G_HOOK_FLAG_ACTIVE) != 0) -#define G_HOOK_IN_CALL(hook) ((G_HOOK_FLAGS (hook) & \ - G_HOOK_FLAG_IN_CALL) != 0) -#define G_HOOK_IS_VALID(hook) (G_HOOK (hook)->hook_id != 0 && \ - (G_HOOK_FLAGS (hook) & \ - G_HOOK_FLAG_ACTIVE)) -#define G_HOOK_IS_UNLINKED(hook) (G_HOOK (hook)->next == NULL && \ - G_HOOK (hook)->prev == NULL && \ - G_HOOK (hook)->hook_id == 0 && \ - G_HOOK (hook)->ref_count == 0) - - -/* --- prototypes --- */ -/* callback maintenance functions */ -GLIB_AVAILABLE_IN_ALL -void g_hook_list_init (GHookList *hook_list, - guint hook_size); -GLIB_AVAILABLE_IN_ALL -void g_hook_list_clear (GHookList *hook_list); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_alloc (GHookList *hook_list); -GLIB_AVAILABLE_IN_ALL -void g_hook_free (GHookList *hook_list, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -GHook * g_hook_ref (GHookList *hook_list, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -void g_hook_unref (GHookList *hook_list, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -gboolean g_hook_destroy (GHookList *hook_list, - gulong hook_id); -GLIB_AVAILABLE_IN_ALL -void g_hook_destroy_link (GHookList *hook_list, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -void g_hook_prepend (GHookList *hook_list, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -void g_hook_insert_before (GHookList *hook_list, - GHook *sibling, - GHook *hook); -GLIB_AVAILABLE_IN_ALL -void g_hook_insert_sorted (GHookList *hook_list, - GHook *hook, - GHookCompareFunc func); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_get (GHookList *hook_list, - gulong hook_id); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_find (GHookList *hook_list, - gboolean need_valids, - GHookFindFunc func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_find_data (GHookList *hook_list, - gboolean need_valids, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_find_func (GHookList *hook_list, - gboolean need_valids, - gpointer func); -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_find_func_data (GHookList *hook_list, - gboolean need_valids, - gpointer func, - gpointer data); -/* return the first valid hook, and increment its reference count */ -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_first_valid (GHookList *hook_list, - gboolean may_be_in_call); -/* return the next valid hook with incremented reference count, and - * decrement the reference count of the original hook - */ -GLIB_AVAILABLE_IN_ALL -GHook* g_hook_next_valid (GHookList *hook_list, - GHook *hook, - gboolean may_be_in_call); -/* GHookCompareFunc implementation to insert hooks sorted by their id */ -GLIB_AVAILABLE_IN_ALL -gint g_hook_compare_ids (GHook *new_hook, - GHook *sibling); -/* convenience macros */ -#define g_hook_append( hook_list, hook ) \ - g_hook_insert_before ((hook_list), NULL, (hook)) -/* invoke all valid hooks with the (*GHookFunc) signature. - */ -GLIB_AVAILABLE_IN_ALL -void g_hook_list_invoke (GHookList *hook_list, - gboolean may_recurse); -/* invoke all valid hooks with the (*GHookCheckFunc) signature, - * and destroy the hook if FALSE is returned. - */ -GLIB_AVAILABLE_IN_ALL -void g_hook_list_invoke_check (GHookList *hook_list, - gboolean may_recurse); -/* invoke a marshaller on all valid hooks. - */ -GLIB_AVAILABLE_IN_ALL -void g_hook_list_marshal (GHookList *hook_list, - gboolean may_recurse, - GHookMarshaller marshaller, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_hook_list_marshal_check (GHookList *hook_list, - gboolean may_recurse, - GHookCheckMarshaller marshaller, - gpointer marshal_data); - -G_END_DECLS - -#endif /* __G_HOOK_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghostutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghostutils.h deleted file mode 100644 index dfb64e5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/ghostutils.h +++ /dev/null @@ -1,45 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_HOST_UTILS_H__ -#define __G_HOST_UTILS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gboolean g_hostname_is_non_ascii (const gchar *hostname); -GLIB_AVAILABLE_IN_ALL -gboolean g_hostname_is_ascii_encoded (const gchar *hostname); -GLIB_AVAILABLE_IN_ALL -gboolean g_hostname_is_ip_address (const gchar *hostname); - -GLIB_AVAILABLE_IN_ALL -gchar *g_hostname_to_ascii (const gchar *hostname); -GLIB_AVAILABLE_IN_ALL -gchar *g_hostname_to_unicode (const gchar *hostname); - -G_END_DECLS - -#endif /* __G_HOST_UTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n-lib.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n-lib.h deleted file mode 100644 index ca002a7..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n-lib.h +++ /dev/null @@ -1,38 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997, 2002 Peter Mattis, Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_I18N_LIB_H__ -#define __G_I18N_LIB_H__ - -#include - -#include -#include - -#ifndef GETTEXT_PACKAGE -#error You must define GETTEXT_PACKAGE before including gi18n-lib.h. Did you forget to include config.h? -#endif - -#define _(String) ((char *) g_dgettext (GETTEXT_PACKAGE, String)) -#define Q_(String) g_dpgettext (GETTEXT_PACKAGE, String, 0) -#define N_(String) (String) -#define C_(Context,String) g_dpgettext (GETTEXT_PACKAGE, Context "\004" String, strlen (Context) + 1) -#define NC_(Context, String) (String) - -#endif /* __G_I18N_LIB_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n.h deleted file mode 100644 index c710046..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gi18n.h +++ /dev/null @@ -1,34 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997, 2002 Peter Mattis, Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_I18N_H__ -#define __G_I18N_H__ - -#include - -#include -#include - -#define _(String) gettext (String) -#define Q_(String) g_dpgettext (NULL, String, 0) -#define N_(String) (String) -#define C_(Context,String) g_dpgettext (NULL, Context "\004" String, strlen (Context) + 1) -#define NC_(Context, String) (String) - -#endif /* __G_I18N_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/giochannel.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/giochannel.h deleted file mode 100644 index 75fa1ef..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/giochannel.h +++ /dev/null @@ -1,415 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_IOCHANNEL_H__ -#define __G_IOCHANNEL_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -G_BEGIN_DECLS - -/* GIOChannel - */ - -typedef struct _GIOChannel GIOChannel; -typedef struct _GIOFuncs GIOFuncs; - -typedef enum -{ - G_IO_ERROR_NONE, - G_IO_ERROR_AGAIN, - G_IO_ERROR_INVAL, - G_IO_ERROR_UNKNOWN -} GIOError; - -#define G_IO_CHANNEL_ERROR g_io_channel_error_quark() - -typedef enum -{ - /* Derived from errno */ - G_IO_CHANNEL_ERROR_FBIG, - G_IO_CHANNEL_ERROR_INVAL, - G_IO_CHANNEL_ERROR_IO, - G_IO_CHANNEL_ERROR_ISDIR, - G_IO_CHANNEL_ERROR_NOSPC, - G_IO_CHANNEL_ERROR_NXIO, - G_IO_CHANNEL_ERROR_OVERFLOW, - G_IO_CHANNEL_ERROR_PIPE, - /* Other */ - G_IO_CHANNEL_ERROR_FAILED -} GIOChannelError; - -typedef enum -{ - G_IO_STATUS_ERROR, - G_IO_STATUS_NORMAL, - G_IO_STATUS_EOF, - G_IO_STATUS_AGAIN -} GIOStatus; - -typedef enum -{ - G_SEEK_CUR, - G_SEEK_SET, - G_SEEK_END -} GSeekType; - -typedef enum -{ - G_IO_FLAG_APPEND = 1 << 0, - G_IO_FLAG_NONBLOCK = 1 << 1, - G_IO_FLAG_IS_READABLE = 1 << 2, /* Read only flag */ - G_IO_FLAG_IS_WRITABLE = 1 << 3, /* Read only flag */ - G_IO_FLAG_IS_WRITEABLE = 1 << 3, /* Misspelling in 2.29.10 and earlier */ - G_IO_FLAG_IS_SEEKABLE = 1 << 4, /* Read only flag */ - G_IO_FLAG_MASK = (1 << 5) - 1, - G_IO_FLAG_GET_MASK = G_IO_FLAG_MASK, - G_IO_FLAG_SET_MASK = G_IO_FLAG_APPEND | G_IO_FLAG_NONBLOCK -} GIOFlags; - -struct _GIOChannel -{ - /*< private >*/ - gint ref_count; - GIOFuncs *funcs; - - gchar *encoding; - GIConv read_cd; - GIConv write_cd; - gchar *line_term; /* String which indicates the end of a line of text */ - guint line_term_len; /* So we can have null in the line term */ - - gsize buf_size; - GString *read_buf; /* Raw data from the channel */ - GString *encoded_read_buf; /* Channel data converted to UTF-8 */ - GString *write_buf; /* Data ready to be written to the file */ - gchar partial_write_buf[6]; /* UTF-8 partial characters, null terminated */ - - /* Group the flags together, immediately after partial_write_buf, to save memory */ - - guint use_buffer : 1; /* The encoding uses the buffers */ - guint do_encode : 1; /* The encoding uses the GIConv coverters */ - guint close_on_unref : 1; /* Close the channel on final unref */ - guint is_readable : 1; /* Cached GIOFlag */ - guint is_writeable : 1; /* ditto */ - guint is_seekable : 1; /* ditto */ - - gpointer reserved1; - gpointer reserved2; -}; - -typedef gboolean (*GIOFunc) (GIOChannel *source, - GIOCondition condition, - gpointer data); -struct _GIOFuncs -{ - GIOStatus (*io_read) (GIOChannel *channel, - gchar *buf, - gsize count, - gsize *bytes_read, - GError **err); - GIOStatus (*io_write) (GIOChannel *channel, - const gchar *buf, - gsize count, - gsize *bytes_written, - GError **err); - GIOStatus (*io_seek) (GIOChannel *channel, - gint64 offset, - GSeekType type, - GError **err); - GIOStatus (*io_close) (GIOChannel *channel, - GError **err); - GSource* (*io_create_watch) (GIOChannel *channel, - GIOCondition condition); - void (*io_free) (GIOChannel *channel); - GIOStatus (*io_set_flags) (GIOChannel *channel, - GIOFlags flags, - GError **err); - GIOFlags (*io_get_flags) (GIOChannel *channel); -}; - -GLIB_AVAILABLE_IN_ALL -void g_io_channel_init (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -GIOChannel *g_io_channel_ref (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -void g_io_channel_unref (GIOChannel *channel); - -GLIB_DEPRECATED_FOR(g_io_channel_read_chars) -GIOError g_io_channel_read (GIOChannel *channel, - gchar *buf, - gsize count, - gsize *bytes_read); - -GLIB_DEPRECATED_FOR(g_io_channel_write_chars) -GIOError g_io_channel_write (GIOChannel *channel, - const gchar *buf, - gsize count, - gsize *bytes_written); - -GLIB_DEPRECATED_FOR(g_io_channel_seek_position) -GIOError g_io_channel_seek (GIOChannel *channel, - gint64 offset, - GSeekType type); - -GLIB_DEPRECATED_FOR(g_io_channel_shutdown) -void g_io_channel_close (GIOChannel *channel); - -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_shutdown (GIOChannel *channel, - gboolean flush, - GError **err); -GLIB_AVAILABLE_IN_ALL -guint g_io_add_watch_full (GIOChannel *channel, - gint priority, - GIOCondition condition, - GIOFunc func, - gpointer user_data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -GSource * g_io_create_watch (GIOChannel *channel, - GIOCondition condition); -GLIB_AVAILABLE_IN_ALL -guint g_io_add_watch (GIOChannel *channel, - GIOCondition condition, - GIOFunc func, - gpointer user_data); - -/* character encoding conversion involved functions. - */ - -GLIB_AVAILABLE_IN_ALL -void g_io_channel_set_buffer_size (GIOChannel *channel, - gsize size); -GLIB_AVAILABLE_IN_ALL -gsize g_io_channel_get_buffer_size (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -GIOCondition g_io_channel_get_buffer_condition (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_set_flags (GIOChannel *channel, - GIOFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOFlags g_io_channel_get_flags (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -void g_io_channel_set_line_term (GIOChannel *channel, - const gchar *line_term, - gint length); -GLIB_AVAILABLE_IN_ALL -const gchar * g_io_channel_get_line_term (GIOChannel *channel, - gint *length); -GLIB_AVAILABLE_IN_ALL -void g_io_channel_set_buffered (GIOChannel *channel, - gboolean buffered); -GLIB_AVAILABLE_IN_ALL -gboolean g_io_channel_get_buffered (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_set_encoding (GIOChannel *channel, - const gchar *encoding, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar * g_io_channel_get_encoding (GIOChannel *channel); -GLIB_AVAILABLE_IN_ALL -void g_io_channel_set_close_on_unref (GIOChannel *channel, - gboolean do_close); -GLIB_AVAILABLE_IN_ALL -gboolean g_io_channel_get_close_on_unref (GIOChannel *channel); - - -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_flush (GIOChannel *channel, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_read_line (GIOChannel *channel, - gchar **str_return, - gsize *length, - gsize *terminator_pos, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_read_line_string (GIOChannel *channel, - GString *buffer, - gsize *terminator_pos, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_read_to_end (GIOChannel *channel, - gchar **str_return, - gsize *length, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_read_chars (GIOChannel *channel, - gchar *buf, - gsize count, - gsize *bytes_read, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_read_unichar (GIOChannel *channel, - gunichar *thechar, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_write_chars (GIOChannel *channel, - const gchar *buf, - gssize count, - gsize *bytes_written, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_write_unichar (GIOChannel *channel, - gunichar thechar, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOStatus g_io_channel_seek_position (GIOChannel *channel, - gint64 offset, - GSeekType type, - GError **error); -GLIB_AVAILABLE_IN_ALL -GIOChannel* g_io_channel_new_file (const gchar *filename, - const gchar *mode, - GError **error); - -/* Error handling */ - -GLIB_AVAILABLE_IN_ALL -GQuark g_io_channel_error_quark (void); -GLIB_AVAILABLE_IN_ALL -GIOChannelError g_io_channel_error_from_errno (gint en); - -/* On Unix, IO channels created with this function for any file - * descriptor or socket. - * - * On Win32, this can be used either for files opened with the MSVCRT - * (the Microsoft run-time C library) _open() or _pipe, including file - * descriptors 0, 1 and 2 (corresponding to stdin, stdout and stderr), - * or for Winsock SOCKETs. If the parameter is a legal file - * descriptor, it is assumed to be such, otherwise it should be a - * SOCKET. This relies on SOCKETs and file descriptors not - * overlapping. If you want to be certain, call either - * g_io_channel_win32_new_fd() or g_io_channel_win32_new_socket() - * instead as appropriate. - * - * The term file descriptor as used in the context of Win32 refers to - * the emulated Unix-like file descriptors MSVCRT provides. The native - * corresponding concept is file HANDLE. There isn't as of yet a way to - * get GIOChannels for Win32 file HANDLEs. - */ -GLIB_AVAILABLE_IN_ALL -GIOChannel* g_io_channel_unix_new (int fd); -GLIB_AVAILABLE_IN_ALL -gint g_io_channel_unix_get_fd (GIOChannel *channel); - - -/* Hook for GClosure / GSource integration. Don't touch */ -GLIB_VAR GSourceFuncs g_io_watch_funcs; - -#ifdef G_OS_WIN32 - -/* You can use this "pseudo file descriptor" in a GPollFD to add - * polling for Windows messages. GTK applications should not do that. - */ - -#define G_WIN32_MSG_HANDLE 19981206 - -/* Use this to get a GPollFD from a GIOChannel, so that you can call - * g_io_channel_win32_poll(). After calling this you should only use - * g_io_channel_read() to read from the GIOChannel, i.e. never read() - * from the underlying file descriptor. For SOCKETs, it is possible to call - * recv(). - */ -GLIB_AVAILABLE_IN_ALL -void g_io_channel_win32_make_pollfd (GIOChannel *channel, - GIOCondition condition, - GPollFD *fd); - -/* This can be used to wait a until at least one of the channels is readable. - * On Unix you would do a select() on the file descriptors of the channels. - */ -GLIB_AVAILABLE_IN_ALL -gint g_io_channel_win32_poll (GPollFD *fds, - gint n_fds, - gint timeout_); - -/* Create an IO channel for Windows messages for window handle hwnd. */ -#if GLIB_SIZEOF_VOID_P == 8 -/* We use gsize here so that it is still an integer type and not a - * pointer, like the guint in the traditional prototype. We can't use - * intptr_t as that is not portable enough. - */ -GLIB_AVAILABLE_IN_ALL -GIOChannel *g_io_channel_win32_new_messages (gsize hwnd); -#else -GLIB_AVAILABLE_IN_ALL -GIOChannel *g_io_channel_win32_new_messages (guint hwnd); -#endif - -/* Create an IO channel for C runtime (emulated Unix-like) file - * descriptors. After calling g_io_add_watch() on a IO channel - * returned by this function, you shouldn't call read() on the file - * descriptor. This is because adding polling for a file descriptor is - * implemented on Win32 by starting a thread that sits blocked in a - * read() from the file descriptor most of the time. All reads from - * the file descriptor should be done by this internal GLib - * thread. Your code should call only g_io_channel_read_chars(). - */ -GLIB_AVAILABLE_IN_ALL -GIOChannel* g_io_channel_win32_new_fd (gint fd); - -/* Get the C runtime file descriptor of a channel. */ -GLIB_AVAILABLE_IN_ALL -gint g_io_channel_win32_get_fd (GIOChannel *channel); - -/* Create an IO channel for a winsock socket. The parameter should be - * a SOCKET. Contrary to IO channels for file descriptors (on *Win32), - * you can use normal recv() or recvfrom() on sockets even if GLib - * is polling them. - */ -GLIB_AVAILABLE_IN_ALL -GIOChannel *g_io_channel_win32_new_socket (gint socket); - -GLIB_DEPRECATED_FOR(g_io_channel_win32_new_socket) -GIOChannel *g_io_channel_win32_new_stream_socket (gint socket); - -GLIB_AVAILABLE_IN_ALL -void g_io_channel_win32_set_debug (GIOChannel *channel, - gboolean flag); - -#endif - -#ifdef G_OS_WIN32 -#define g_io_channel_new_file g_io_channel_new_file_utf8 - -GLIB_AVAILABLE_IN_ALL -GIOChannel *g_io_channel_new_file_utf8 (const gchar *filename, - const gchar *mode, - GError **error); -#endif - -G_END_DECLS - -#endif /* __G_IOCHANNEL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gkeyfile.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gkeyfile.h deleted file mode 100644 index b37070e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gkeyfile.h +++ /dev/null @@ -1,317 +0,0 @@ -/* gkeyfile.h - desktop entry file parser - * - * Copyright 2004 Red Hat, Inc. - * - * Ray Strode - * - * GLib is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_KEY_FILE_H__ -#define __G_KEY_FILE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef enum -{ - G_KEY_FILE_ERROR_UNKNOWN_ENCODING, - G_KEY_FILE_ERROR_PARSE, - G_KEY_FILE_ERROR_NOT_FOUND, - G_KEY_FILE_ERROR_KEY_NOT_FOUND, - G_KEY_FILE_ERROR_GROUP_NOT_FOUND, - G_KEY_FILE_ERROR_INVALID_VALUE -} GKeyFileError; - -#define G_KEY_FILE_ERROR g_key_file_error_quark() - -GLIB_AVAILABLE_IN_ALL -GQuark g_key_file_error_quark (void); - -typedef struct _GKeyFile GKeyFile; - -typedef enum -{ - G_KEY_FILE_NONE = 0, - G_KEY_FILE_KEEP_COMMENTS = 1 << 0, - G_KEY_FILE_KEEP_TRANSLATIONS = 1 << 1 -} GKeyFileFlags; - -GLIB_AVAILABLE_IN_ALL -GKeyFile *g_key_file_new (void); -GLIB_AVAILABLE_IN_ALL -GKeyFile *g_key_file_ref (GKeyFile *key_file); -GLIB_AVAILABLE_IN_ALL -void g_key_file_unref (GKeyFile *key_file); -GLIB_AVAILABLE_IN_ALL -void g_key_file_free (GKeyFile *key_file); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_list_separator (GKeyFile *key_file, - gchar separator); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_load_from_file (GKeyFile *key_file, - const gchar *file, - GKeyFileFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_load_from_data (GKeyFile *key_file, - const gchar *data, - gsize length, - GKeyFileFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_load_from_dirs (GKeyFile *key_file, - const gchar *file, - const gchar **search_dirs, - gchar **full_path, - GKeyFileFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_load_from_data_dirs (GKeyFile *key_file, - const gchar *file, - gchar **full_path, - GKeyFileFlags flags, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_to_data (GKeyFile *key_file, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_get_start_group (GKeyFile *key_file) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar **g_key_file_get_groups (GKeyFile *key_file, - gsize *length) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar **g_key_file_get_keys (GKeyFile *key_file, - const gchar *group_name, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_has_group (GKeyFile *key_file, - const gchar *group_name); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_has_key (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_get_value (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_value (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *value); -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_get_string (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_string (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *string); -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_get_locale_string (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *locale, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_locale_string (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *locale, - const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_get_boolean (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_boolean (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gboolean value); -GLIB_AVAILABLE_IN_ALL -gint g_key_file_get_integer (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_integer (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gint value); -GLIB_AVAILABLE_IN_ALL -gint64 g_key_file_get_int64 (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_int64 (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gint64 value); -GLIB_AVAILABLE_IN_ALL -guint64 g_key_file_get_uint64 (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_uint64 (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - guint64 value); -GLIB_AVAILABLE_IN_ALL -gdouble g_key_file_get_double (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_double (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gdouble value); -GLIB_AVAILABLE_IN_ALL -gchar **g_key_file_get_string_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_string_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar * const list[], - gsize length); -GLIB_AVAILABLE_IN_ALL -gchar **g_key_file_get_locale_string_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *locale, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_locale_string_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *locale, - const gchar * const list[], - gsize length); -GLIB_AVAILABLE_IN_ALL -gboolean *g_key_file_get_boolean_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_boolean_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gboolean list[], - gsize length); -GLIB_AVAILABLE_IN_ALL -gint *g_key_file_get_integer_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_double_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gdouble list[], - gsize length); -GLIB_AVAILABLE_IN_ALL -gdouble *g_key_file_get_double_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gsize *length, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_key_file_set_integer_list (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - gint list[], - gsize length); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_set_comment (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - const gchar *comment, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_key_file_get_comment (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_remove_comment (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_remove_key (GKeyFile *key_file, - const gchar *group_name, - const gchar *key, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_key_file_remove_group (GKeyFile *key_file, - const gchar *group_name, - GError **error); - -/* Defines for handling freedesktop.org Desktop files */ -#define G_KEY_FILE_DESKTOP_GROUP "Desktop Entry" - -#define G_KEY_FILE_DESKTOP_KEY_TYPE "Type" -#define G_KEY_FILE_DESKTOP_KEY_VERSION "Version" -#define G_KEY_FILE_DESKTOP_KEY_NAME "Name" -#define G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME "GenericName" -#define G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY "NoDisplay" -#define G_KEY_FILE_DESKTOP_KEY_COMMENT "Comment" -#define G_KEY_FILE_DESKTOP_KEY_ICON "Icon" -#define G_KEY_FILE_DESKTOP_KEY_HIDDEN "Hidden" -#define G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN "OnlyShowIn" -#define G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN "NotShowIn" -#define G_KEY_FILE_DESKTOP_KEY_TRY_EXEC "TryExec" -#define G_KEY_FILE_DESKTOP_KEY_EXEC "Exec" -#define G_KEY_FILE_DESKTOP_KEY_PATH "Path" -#define G_KEY_FILE_DESKTOP_KEY_TERMINAL "Terminal" -#define G_KEY_FILE_DESKTOP_KEY_MIME_TYPE "MimeType" -#define G_KEY_FILE_DESKTOP_KEY_CATEGORIES "Categories" -#define G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY "StartupNotify" -#define G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS "StartupWMClass" -#define G_KEY_FILE_DESKTOP_KEY_URL "URL" -#define G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE "DBusActivatable" -#define G_KEY_FILE_DESKTOP_KEY_ACTIONS "Actions" - -#define G_KEY_FILE_DESKTOP_TYPE_APPLICATION "Application" -#define G_KEY_FILE_DESKTOP_TYPE_LINK "Link" -#define G_KEY_FILE_DESKTOP_TYPE_DIRECTORY "Directory" - -G_END_DECLS - -#endif /* __G_KEY_FILE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/glist.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/glist.h deleted file mode 100644 index 120e788..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/glist.h +++ /dev/null @@ -1,154 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_LIST_H__ -#define __G_LIST_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GList GList; - -struct _GList -{ - gpointer data; - GList *next; - GList *prev; -}; - -/* Doubly linked lists - */ -GLIB_AVAILABLE_IN_ALL -GList* g_list_alloc (void) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -void g_list_free (GList *list); -GLIB_AVAILABLE_IN_ALL -void g_list_free_1 (GList *list); -#define g_list_free1 g_list_free_1 -GLIB_AVAILABLE_IN_ALL -void g_list_free_full (GList *list, - GDestroyNotify free_func); -GLIB_AVAILABLE_IN_ALL -GList* g_list_append (GList *list, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_prepend (GList *list, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_insert (GList *list, - gpointer data, - gint position) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_insert_sorted (GList *list, - gpointer data, - GCompareFunc func) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_insert_sorted_with_data (GList *list, - gpointer data, - GCompareDataFunc func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_insert_before (GList *list, - GList *sibling, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_concat (GList *list1, - GList *list2) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_remove (GList *list, - gconstpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_remove_all (GList *list, - gconstpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_remove_link (GList *list, - GList *llink) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_delete_link (GList *list, - GList *link_) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_reverse (GList *list) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_copy (GList *list) G_GNUC_WARN_UNUSED_RESULT; - -GLIB_AVAILABLE_IN_2_34 -GList* g_list_copy_deep (GList *list, - GCopyFunc func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; - -GLIB_AVAILABLE_IN_ALL -GList* g_list_nth (GList *list, - guint n); -GLIB_AVAILABLE_IN_ALL -GList* g_list_nth_prev (GList *list, - guint n); -GLIB_AVAILABLE_IN_ALL -GList* g_list_find (GList *list, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -GList* g_list_find_custom (GList *list, - gconstpointer data, - GCompareFunc func); -GLIB_AVAILABLE_IN_ALL -gint g_list_position (GList *list, - GList *llink); -GLIB_AVAILABLE_IN_ALL -gint g_list_index (GList *list, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -GList* g_list_last (GList *list); -GLIB_AVAILABLE_IN_ALL -GList* g_list_first (GList *list); -GLIB_AVAILABLE_IN_ALL -guint g_list_length (GList *list); -GLIB_AVAILABLE_IN_ALL -void g_list_foreach (GList *list, - GFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GList* g_list_sort (GList *list, - GCompareFunc compare_func) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GList* g_list_sort_with_data (GList *list, - GCompareDataFunc compare_func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -gpointer g_list_nth_data (GList *list, - guint n); - - -#define g_list_previous(list) ((list) ? (((GList *)(list))->prev) : NULL) -#define g_list_next(list) ((list) ? (((GList *)(list))->next) : NULL) - -G_END_DECLS - -#endif /* __G_LIST_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmacros.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmacros.h deleted file mode 100644 index f3f542b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmacros.h +++ /dev/null @@ -1,366 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -/* This file must not include any other glib header file and must thus - * not refer to variables from glibconfig.h - */ - -#ifndef __G_MACROS_H__ -#define __G_MACROS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -/* We include stddef.h to get the system's definition of NULL - */ -#include - -/* Here we provide G_GNUC_EXTENSION as an alias for __extension__, - * where this is valid. This allows for warningless compilation of - * "long long" types even in the presence of '-ansi -pedantic'. - */ -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8) -# define G_GNUC_EXTENSION __extension__ -#else -# define G_GNUC_EXTENSION -#endif - -/* Provide macros to feature the GCC function attribute. - */ -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) -#define G_GNUC_PURE \ - __attribute__((__pure__)) -#define G_GNUC_MALLOC \ - __attribute__((__malloc__)) -#else -#define G_GNUC_PURE -#define G_GNUC_MALLOC -#endif - -#if __GNUC__ >= 4 -#define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__)) -#else -#define G_GNUC_NULL_TERMINATED -#endif - -#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) -#define G_GNUC_ALLOC_SIZE(x) __attribute__((__alloc_size__(x))) -#define G_GNUC_ALLOC_SIZE2(x,y) __attribute__((__alloc_size__(x,y))) -#else -#define G_GNUC_ALLOC_SIZE(x) -#define G_GNUC_ALLOC_SIZE2(x,y) -#endif - -#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4) -#define G_GNUC_PRINTF( format_idx, arg_idx ) \ - __attribute__((__format__ (__printf__, format_idx, arg_idx))) -#define G_GNUC_SCANF( format_idx, arg_idx ) \ - __attribute__((__format__ (__scanf__, format_idx, arg_idx))) -#define G_GNUC_FORMAT( arg_idx ) \ - __attribute__((__format_arg__ (arg_idx))) -#define G_GNUC_NORETURN \ - __attribute__((__noreturn__)) -#define G_GNUC_CONST \ - __attribute__((__const__)) -#define G_GNUC_UNUSED \ - __attribute__((__unused__)) -#define G_GNUC_NO_INSTRUMENT \ - __attribute__((__no_instrument_function__)) -#else /* !__GNUC__ */ -#define G_GNUC_PRINTF( format_idx, arg_idx ) -#define G_GNUC_SCANF( format_idx, arg_idx ) -#define G_GNUC_FORMAT( arg_idx ) -#define G_GNUC_NORETURN -#define G_GNUC_CONST -#define G_GNUC_UNUSED -#define G_GNUC_NO_INSTRUMENT -#endif /* !__GNUC__ */ - -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) -#define G_GNUC_DEPRECATED \ - __attribute__((__deprecated__)) -#else -#define G_GNUC_DEPRECATED -#endif /* __GNUC__ */ - -#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) -#define G_GNUC_DEPRECATED_FOR(f) \ - __attribute__((deprecated("Use " #f " instead"))) -#else -#define G_GNUC_DEPRECATED_FOR(f) G_GNUC_DEPRECATED -#endif /* __GNUC__ */ - -#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) -#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ - _Pragma ("GCC diagnostic push") \ - _Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"") -#define G_GNUC_END_IGNORE_DEPRECATIONS \ - _Pragma ("GCC diagnostic pop") -#elif defined (_MSC_VER) && (_MSC_VER >= 1500) -#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS \ - __pragma (warning (push)) \ - __pragma (warning (disable : 4996)) -#define G_GNUC_END_IGNORE_DEPRECATIONS \ - __pragma (warning (pop)) -#else -#define G_GNUC_BEGIN_IGNORE_DEPRECATIONS -#define G_GNUC_END_IGNORE_DEPRECATIONS -#endif - -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) -# define G_GNUC_MAY_ALIAS __attribute__((may_alias)) -#else -# define G_GNUC_MAY_ALIAS -#endif - -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -#define G_GNUC_WARN_UNUSED_RESULT \ - __attribute__((warn_unused_result)) -#else -#define G_GNUC_WARN_UNUSED_RESULT -#endif /* __GNUC__ */ - -#ifndef G_DISABLE_DEPRECATED -/* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with - * macros, so we can refer to them as strings unconditionally. - * usage not-recommended since gcc-3.0 - */ -#if defined (__GNUC__) && (__GNUC__ < 3) -#define G_GNUC_FUNCTION __FUNCTION__ -#define G_GNUC_PRETTY_FUNCTION __PRETTY_FUNCTION__ -#else /* !__GNUC__ */ -#define G_GNUC_FUNCTION "" -#define G_GNUC_PRETTY_FUNCTION "" -#endif /* !__GNUC__ */ -#endif /* !G_DISABLE_DEPRECATED */ - -/* Clang feature detection: http://clang.llvm.org/docs/LanguageExtensions.html */ -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - -#if __has_feature(attribute_analyzer_noreturn) -#define G_ANALYZER_ANALYZING 1 -#define G_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) -#else -#define G_ANALYZER_ANALYZING 0 -#define G_ANALYZER_NORETURN -#endif - -#define G_STRINGIFY(macro_or_string) G_STRINGIFY_ARG (macro_or_string) -#define G_STRINGIFY_ARG(contents) #contents - -#ifndef __GI_SCANNER__ /* The static assert macro really confuses the introspection parser */ -#define G_PASTE_ARGS(identifier1,identifier2) identifier1 ## identifier2 -#define G_PASTE(identifier1,identifier2) G_PASTE_ARGS (identifier1, identifier2) -#ifdef __COUNTER__ -#define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1] G_GNUC_UNUSED -#else -#define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __LINE__)[(expr) ? 1 : -1] G_GNUC_UNUSED -#endif -#define G_STATIC_ASSERT_EXPR(expr) ((void) sizeof (char[(expr) ? 1 : -1])) -#endif - -/* Provide a string identifying the current code position */ -#if defined(__GNUC__) && (__GNUC__ < 3) && !defined(__cplusplus) -# define G_STRLOC __FILE__ ":" G_STRINGIFY (__LINE__) ":" __PRETTY_FUNCTION__ "()" -#else -# define G_STRLOC __FILE__ ":" G_STRINGIFY (__LINE__) -#endif - -/* Provide a string identifying the current function, non-concatenatable */ -#if defined (__GNUC__) && defined (__cplusplus) -# define G_STRFUNC ((const char*) (__PRETTY_FUNCTION__)) -#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 19901L -# define G_STRFUNC ((const char*) (__func__)) -#elif defined (__GNUC__) || (defined(_MSC_VER) && (_MSC_VER > 1300)) -# define G_STRFUNC ((const char*) (__FUNCTION__)) -#else -# define G_STRFUNC ((const char*) ("???")) -#endif - -/* Guard C code in headers, while including them from C++ */ -#ifdef __cplusplus -# define G_BEGIN_DECLS extern "C" { -# define G_END_DECLS } -#else -# define G_BEGIN_DECLS -# define G_END_DECLS -#endif - -/* Provide definitions for some commonly used macros. - * Some of them are only provided if they haven't already - * been defined. It is assumed that if they are already - * defined then the current definition is correct. - */ -#ifndef NULL -# ifdef __cplusplus -# define NULL (0L) -# else /* !__cplusplus */ -# define NULL ((void*) 0) -# endif /* !__cplusplus */ -#endif - -#ifndef FALSE -#define FALSE (0) -#endif - -#ifndef TRUE -#define TRUE (!FALSE) -#endif - -#undef MAX -#define MAX(a, b) (((a) > (b)) ? (a) : (b)) - -#undef MIN -#define MIN(a, b) (((a) < (b)) ? (a) : (b)) - -#undef ABS -#define ABS(a) (((a) < 0) ? -(a) : (a)) - -#undef CLAMP -#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) - -/* Count the number of elements in an array. The array must be defined - * as such; using this with a dynamically allocated array will give - * incorrect results. - */ -#define G_N_ELEMENTS(arr) (sizeof (arr) / sizeof ((arr)[0])) - -/* Macros by analogy to GINT_TO_POINTER, GPOINTER_TO_INT - */ -#define GPOINTER_TO_SIZE(p) ((gsize) (p)) -#define GSIZE_TO_POINTER(s) ((gpointer) (gsize) (s)) - -/* Provide convenience macros for handling structure - * fields through their offsets. - */ - -#if defined(__GNUC__) && __GNUC__ >= 4 -# define G_STRUCT_OFFSET(struct_type, member) \ - ((glong) offsetof (struct_type, member)) -#else -# define G_STRUCT_OFFSET(struct_type, member) \ - ((glong) ((guint8*) &((struct_type*) 0)->member)) -#endif - -#define G_STRUCT_MEMBER_P(struct_p, struct_offset) \ - ((gpointer) ((guint8*) (struct_p) + (glong) (struct_offset))) -#define G_STRUCT_MEMBER(member_type, struct_p, struct_offset) \ - (*(member_type*) G_STRUCT_MEMBER_P ((struct_p), (struct_offset))) - -/* Provide simple macro statement wrappers: - * G_STMT_START { statements; } G_STMT_END; - * This can be used as a single statement, like: - * if (x) G_STMT_START { ... } G_STMT_END; else ... - * This intentionally does not use compiler extensions like GCC's '({...})' to - * avoid portability issue or side effects when compiled with different compilers. - */ -#if !(defined (G_STMT_START) && defined (G_STMT_END)) -# define G_STMT_START do -# define G_STMT_END while (0) -#endif - -/* Deprecated -- do not use. */ -#ifndef G_DISABLE_DEPRECATED -#ifdef G_DISABLE_CONST_RETURNS -#define G_CONST_RETURN -#else -#define G_CONST_RETURN const -#endif -#endif - -/* - * The G_LIKELY and G_UNLIKELY macros let the programmer give hints to - * the compiler about the expected result of an expression. Some compilers - * can use this information for optimizations. - * - * The _G_BOOLEAN_EXPR macro is intended to trigger a gcc warning when - * putting assignments in g_return_if_fail (). - */ -#if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__) -#define _G_BOOLEAN_EXPR(expr) \ - G_GNUC_EXTENSION ({ \ - int _g_boolean_var_; \ - if (expr) \ - _g_boolean_var_ = 1; \ - else \ - _g_boolean_var_ = 0; \ - _g_boolean_var_; \ -}) -#define G_LIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 1)) -#define G_UNLIKELY(expr) (__builtin_expect (_G_BOOLEAN_EXPR(expr), 0)) -#else -#define G_LIKELY(expr) (expr) -#define G_UNLIKELY(expr) (expr) -#endif - -#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) -#define G_DEPRECATED __attribute__((__deprecated__)) -#elif defined(_MSC_VER) && (_MSC_VER >= 1300) -#define G_DEPRECATED __declspec(deprecated) -#else -#define G_DEPRECATED -#endif - -#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) -#define G_DEPRECATED_FOR(f) __attribute__((__deprecated__("Use '" #f "' instead"))) -#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320) -#define G_DEPRECATED_FOR(f) __declspec(deprecated("is deprecated. Use '" #f "' instead")) -#else -#define G_DEPRECATED_FOR(f) G_DEPRECATED -#endif - -#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) -#define G_UNAVAILABLE(maj,min) __attribute__((deprecated("Not available before " #maj "." #min))) -#elif defined(_MSC_FULL_VER) && (_MSC_FULL_VER > 140050320) -#define G_UNAVAILABLE(maj,min) __declspec(deprecated("is not available before " #maj "." #min)) -#else -#define G_UNAVAILABLE(maj,min) G_DEPRECATED -#endif - -#ifndef _GLIB_EXTERN -#define _GLIB_EXTERN extern -#endif - -/* These macros are used to mark deprecated functions in GLib headers, - * and thus have to be exposed in installed headers. But please - * do *not* use them in other projects. Instead, use G_DEPRECATED - * or define your own wrappers around it. - */ - -#ifdef GLIB_DISABLE_DEPRECATION_WARNINGS -#define GLIB_DEPRECATED _GLIB_EXTERN -#define GLIB_DEPRECATED_FOR(f) _GLIB_EXTERN -#define GLIB_UNAVAILABLE(maj,min) _GLIB_EXTERN -#else -#define GLIB_DEPRECATED G_DEPRECATED _GLIB_EXTERN -#define GLIB_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f) _GLIB_EXTERN -#define GLIB_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min) _GLIB_EXTERN -#endif - -#endif /* __G_MACROS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmain.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmain.h deleted file mode 100644 index c455353..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmain.h +++ /dev/null @@ -1,616 +0,0 @@ -/* gmain.h - the GLib Main loop - * Copyright (C) 1998-2000 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_MAIN_H__ -#define __G_MAIN_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -G_BEGIN_DECLS - -typedef enum /*< flags >*/ -{ - G_IO_IN GLIB_SYSDEF_POLLIN, - G_IO_OUT GLIB_SYSDEF_POLLOUT, - G_IO_PRI GLIB_SYSDEF_POLLPRI, - G_IO_ERR GLIB_SYSDEF_POLLERR, - G_IO_HUP GLIB_SYSDEF_POLLHUP, - G_IO_NVAL GLIB_SYSDEF_POLLNVAL -} GIOCondition; - - -/** - * GMainContext: - * - * The GMainContext struct is an opaque data - * type representing a set of sources to be handled in a main loop. - */ -typedef struct _GMainContext GMainContext; - -/** - * GMainLoop: - * - * The GMainLoop struct is an opaque data type - * representing the main event loop of a GLib or GTK+ application. - */ -typedef struct _GMainLoop GMainLoop; - -/** - * GSource: - * - * The GSource struct is an opaque data type - * representing an event source. - */ -typedef struct _GSource GSource; -typedef struct _GSourcePrivate GSourcePrivate; - -/** - * GSourceCallbackFuncs: - * @ref: Called when a reference is added to the callback object - * @unref: Called when a reference to the callback object is dropped - * @get: Called to extract the callback function and data from the - * callback object. - - * The GSourceCallbackFuncs struct contains - * functions for managing callback objects. - */ -typedef struct _GSourceCallbackFuncs GSourceCallbackFuncs; - -/** - * GSourceFuncs: - * @prepare: Called before all the file descriptors are polled. If the - * source can determine that it is ready here (without waiting for the - * results of the poll() call) it should return %TRUE. It can also return - * a @timeout_ value which should be the maximum timeout (in milliseconds) - * which should be passed to the poll() call. The actual timeout used will - * be -1 if all sources returned -1, or it will be the minimum of all - * the @timeout_ values returned which were >= 0. Since 2.36 this may - * be %NULL, in which case the effect is as if the function always returns - * %FALSE with a timeout of -1. If @prepare returns a - * timeout and the source also has a 'ready time' set then the - * nearer of the two will be used. - * @check: Called after all the file descriptors are polled. The source - * should return %TRUE if it is ready to be dispatched. Note that some - * time may have passed since the previous prepare function was called, - * so the source should be checked again here. Since 2.36 this may - * be %NULL, in which case the effect is as if the function always returns - * %FALSE. - * @dispatch: Called to dispatch the event source, after it has returned - * %TRUE in either its @prepare or its @check function. The @dispatch - * function is passed in a callback function and data. The callback - * function may be %NULL if the source was never connected to a callback - * using g_source_set_callback(). The @dispatch function should call the - * callback function with @user_data and whatever additional parameters - * are needed for this type of event source. - * @finalize: Called when the source is finalized. - * - * The GSourceFuncs struct contains a table of - * functions used to handle event sources in a generic manner. - * - * For idle sources, the prepare and check functions always return %TRUE - * to indicate that the source is always ready to be processed. The prepare - * function also returns a timeout value of 0 to ensure that the poll() call - * doesn't block (since that would be time wasted which could have been spent - * running the idle function). - * - * For timeout sources, the prepare and check functions both return %TRUE - * if the timeout interval has expired. The prepare function also returns - * a timeout value to ensure that the poll() call doesn't block too long - * and miss the next timeout. - * - * For file descriptor sources, the prepare function typically returns %FALSE, - * since it must wait until poll() has been called before it knows whether - * any events need to be processed. It sets the returned timeout to -1 to - * indicate that it doesn't mind how long the poll() call blocks. In the - * check function, it tests the results of the poll() call to see if the - * required condition has been met, and returns %TRUE if so. - */ -typedef struct _GSourceFuncs GSourceFuncs; - -/** - * GPid: - * - * A type which is used to hold a process identification. - * - * On UNIX, processes are identified by a process id (an integer), - * while Windows uses process handles (which are pointers). - * - * GPid is used in GLib only for descendant processes spawned with - * the g_spawn functions. - */ - -/** - * GSourceFunc: - * @user_data: data passed to the function, set when the source was - * created with one of the above functions - * - * Specifies the type of function passed to g_timeout_add(), - * g_timeout_add_full(), g_idle_add(), and g_idle_add_full(). - * - * Returns: %FALSE if the source should be removed. #G_SOURCE_CONTINUE and - * #G_SOURCE_REMOVE are more memorable names for the return value. - */ -typedef gboolean (*GSourceFunc) (gpointer user_data); - -/** - * GChildWatchFunc: - * @pid: the process id of the child process - * @status: Status information about the child process, encoded - * in a platform-specific manner - * @user_data: user data passed to g_child_watch_add() - * - * Prototype of a #GChildWatchSource callback, called when a child - * process has exited. To interpret @status, see the documentation - * for g_spawn_check_exit_status(). - */ -typedef void (*GChildWatchFunc) (GPid pid, - gint status, - gpointer user_data); -struct _GSource -{ - /*< private >*/ - gpointer callback_data; - GSourceCallbackFuncs *callback_funcs; - - const GSourceFuncs *source_funcs; - guint ref_count; - - GMainContext *context; - - gint priority; - guint flags; - guint source_id; - - GSList *poll_fds; - - GSource *prev; - GSource *next; - - char *name; - - GSourcePrivate *priv; -}; - -struct _GSourceCallbackFuncs -{ - void (*ref) (gpointer cb_data); - void (*unref) (gpointer cb_data); - void (*get) (gpointer cb_data, - GSource *source, - GSourceFunc *func, - gpointer *data); -}; - -/** - * GSourceDummyMarshal: - * - * This is just a placeholder for #GClosureMarshal, - * which cannot be used here for dependency reasons. - */ -typedef void (*GSourceDummyMarshal) (void); - -struct _GSourceFuncs -{ - gboolean (*prepare) (GSource *source, - gint *timeout_); - gboolean (*check) (GSource *source); - gboolean (*dispatch) (GSource *source, - GSourceFunc callback, - gpointer user_data); - void (*finalize) (GSource *source); /* Can be NULL */ - - /*< private >*/ - /* For use by g_source_set_closure */ - GSourceFunc closure_callback; - GSourceDummyMarshal closure_marshal; /* Really is of type GClosureMarshal */ -}; - -/* Standard priorities */ - -/** - * G_PRIORITY_HIGH: - * - * Use this for high priority event sources. - * - * It is not used within GLib or GTK+. - */ -#define G_PRIORITY_HIGH -100 - -/** - * G_PRIORITY_DEFAULT: - * - * Use this for default priority event sources. - * - * In GLib this priority is used when adding timeout functions - * with g_timeout_add(). In GDK this priority is used for events - * from the X server. - */ -#define G_PRIORITY_DEFAULT 0 - -/** - * G_PRIORITY_HIGH_IDLE: - * - * Use this for high priority idle functions. - * - * GTK+ uses #G_PRIORITY_HIGH_IDLE + 10 for resizing operations, - * and #G_PRIORITY_HIGH_IDLE + 20 for redrawing operations. (This is - * done to ensure that any pending resizes are processed before any - * pending redraws, so that widgets are not redrawn twice unnecessarily.) - */ -#define G_PRIORITY_HIGH_IDLE 100 - -/** - * G_PRIORITY_DEFAULT_IDLE: - * - * Use this for default priority idle functions. - * - * In GLib this priority is used when adding idle functions with - * g_idle_add(). - */ -#define G_PRIORITY_DEFAULT_IDLE 200 - -/** - * G_PRIORITY_LOW: - * - * Use this for very low priority background tasks. - * - * It is not used within GLib or GTK+. - */ -#define G_PRIORITY_LOW 300 - -/** - * G_SOURCE_REMOVE: - * - * Use this macro as the return value of a #GSourceFunc to remove - * the #GSource from the main loop. - * - * Since: 2.32 - */ -#define G_SOURCE_REMOVE FALSE - -/** - * G_SOURCE_CONTINUE: - * - * Use this macro as the return value of a #GSourceFunc to leave - * the #GSource in the main loop. - * - * Since: 2.32 - */ -#define G_SOURCE_CONTINUE TRUE - -/* GMainContext: */ - -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_context_new (void); -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_context_ref (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -void g_main_context_unref (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_context_default (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_iteration (GMainContext *context, - gboolean may_block); -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_pending (GMainContext *context); - -/* For implementation of legacy interfaces - */ -GLIB_AVAILABLE_IN_ALL -GSource *g_main_context_find_source_by_id (GMainContext *context, - guint source_id); -GLIB_AVAILABLE_IN_ALL -GSource *g_main_context_find_source_by_user_data (GMainContext *context, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSource *g_main_context_find_source_by_funcs_user_data (GMainContext *context, - GSourceFuncs *funcs, - gpointer user_data); - -/* Low level functions for implementing custom main loops. - */ -GLIB_AVAILABLE_IN_ALL -void g_main_context_wakeup (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_acquire (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -void g_main_context_release (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_is_owner (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_wait (GMainContext *context, - GCond *cond, - GMutex *mutex); - -GLIB_AVAILABLE_IN_ALL -gboolean g_main_context_prepare (GMainContext *context, - gint *priority); -GLIB_AVAILABLE_IN_ALL -gint g_main_context_query (GMainContext *context, - gint max_priority, - gint *timeout_, - GPollFD *fds, - gint n_fds); -GLIB_AVAILABLE_IN_ALL -gint g_main_context_check (GMainContext *context, - gint max_priority, - GPollFD *fds, - gint n_fds); -GLIB_AVAILABLE_IN_ALL -void g_main_context_dispatch (GMainContext *context); - -GLIB_AVAILABLE_IN_ALL -void g_main_context_set_poll_func (GMainContext *context, - GPollFunc func); -GLIB_AVAILABLE_IN_ALL -GPollFunc g_main_context_get_poll_func (GMainContext *context); - -/* Low level functions for use by source implementations - */ -GLIB_AVAILABLE_IN_ALL -void g_main_context_add_poll (GMainContext *context, - GPollFD *fd, - gint priority); -GLIB_AVAILABLE_IN_ALL -void g_main_context_remove_poll (GMainContext *context, - GPollFD *fd); - -GLIB_AVAILABLE_IN_ALL -gint g_main_depth (void); -GLIB_AVAILABLE_IN_ALL -GSource *g_main_current_source (void); - -/* GMainContexts for other threads - */ -GLIB_AVAILABLE_IN_ALL -void g_main_context_push_thread_default (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -void g_main_context_pop_thread_default (GMainContext *context); -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_context_get_thread_default (void); -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_context_ref_thread_default (void); - -/* GMainLoop: */ - -GLIB_AVAILABLE_IN_ALL -GMainLoop *g_main_loop_new (GMainContext *context, - gboolean is_running); -GLIB_AVAILABLE_IN_ALL -void g_main_loop_run (GMainLoop *loop); -GLIB_AVAILABLE_IN_ALL -void g_main_loop_quit (GMainLoop *loop); -GLIB_AVAILABLE_IN_ALL -GMainLoop *g_main_loop_ref (GMainLoop *loop); -GLIB_AVAILABLE_IN_ALL -void g_main_loop_unref (GMainLoop *loop); -GLIB_AVAILABLE_IN_ALL -gboolean g_main_loop_is_running (GMainLoop *loop); -GLIB_AVAILABLE_IN_ALL -GMainContext *g_main_loop_get_context (GMainLoop *loop); - -/* GSource: */ - -GLIB_AVAILABLE_IN_ALL -GSource *g_source_new (GSourceFuncs *source_funcs, - guint struct_size); -GLIB_AVAILABLE_IN_ALL -GSource *g_source_ref (GSource *source); -GLIB_AVAILABLE_IN_ALL -void g_source_unref (GSource *source); - -GLIB_AVAILABLE_IN_ALL -guint g_source_attach (GSource *source, - GMainContext *context); -GLIB_AVAILABLE_IN_ALL -void g_source_destroy (GSource *source); - -GLIB_AVAILABLE_IN_ALL -void g_source_set_priority (GSource *source, - gint priority); -GLIB_AVAILABLE_IN_ALL -gint g_source_get_priority (GSource *source); -GLIB_AVAILABLE_IN_ALL -void g_source_set_can_recurse (GSource *source, - gboolean can_recurse); -GLIB_AVAILABLE_IN_ALL -gboolean g_source_get_can_recurse (GSource *source); -GLIB_AVAILABLE_IN_ALL -guint g_source_get_id (GSource *source); - -GLIB_AVAILABLE_IN_ALL -GMainContext *g_source_get_context (GSource *source); - -GLIB_AVAILABLE_IN_ALL -void g_source_set_callback (GSource *source, - GSourceFunc func, - gpointer data, - GDestroyNotify notify); - -GLIB_AVAILABLE_IN_ALL -void g_source_set_funcs (GSource *source, - GSourceFuncs *funcs); -GLIB_AVAILABLE_IN_ALL -gboolean g_source_is_destroyed (GSource *source); - -GLIB_AVAILABLE_IN_ALL -void g_source_set_name (GSource *source, - const char *name); -GLIB_AVAILABLE_IN_ALL -const char * g_source_get_name (GSource *source); -GLIB_AVAILABLE_IN_ALL -void g_source_set_name_by_id (guint tag, - const char *name); - -GLIB_AVAILABLE_IN_2_36 -void g_source_set_ready_time (GSource *source, - gint64 ready_time); -GLIB_AVAILABLE_IN_2_36 -gint64 g_source_get_ready_time (GSource *source); - -#ifdef G_OS_UNIX -GLIB_AVAILABLE_IN_2_36 -gpointer g_source_add_unix_fd (GSource *source, - gint fd, - GIOCondition events); -GLIB_AVAILABLE_IN_2_36 -void g_source_modify_unix_fd (GSource *source, - gpointer tag, - GIOCondition new_events); -GLIB_AVAILABLE_IN_2_36 -void g_source_remove_unix_fd (GSource *source, - gpointer tag); -GLIB_AVAILABLE_IN_2_36 -GIOCondition g_source_query_unix_fd (GSource *source, - gpointer tag); -#endif - -/* Used to implement g_source_connect_closure and internally*/ -GLIB_AVAILABLE_IN_ALL -void g_source_set_callback_indirect (GSource *source, - gpointer callback_data, - GSourceCallbackFuncs *callback_funcs); - -GLIB_AVAILABLE_IN_ALL -void g_source_add_poll (GSource *source, - GPollFD *fd); -GLIB_AVAILABLE_IN_ALL -void g_source_remove_poll (GSource *source, - GPollFD *fd); - -GLIB_AVAILABLE_IN_ALL -void g_source_add_child_source (GSource *source, - GSource *child_source); -GLIB_AVAILABLE_IN_ALL -void g_source_remove_child_source (GSource *source, - GSource *child_source); - -GLIB_DEPRECATED_IN_2_28_FOR(g_source_get_time) -void g_source_get_current_time (GSource *source, - GTimeVal *timeval); - -GLIB_AVAILABLE_IN_ALL -gint64 g_source_get_time (GSource *source); - - /* void g_source_connect_closure (GSource *source, - GClosure *closure); - */ - -/* Specific source types - */ -GLIB_AVAILABLE_IN_ALL -GSource *g_idle_source_new (void); -GLIB_AVAILABLE_IN_ALL -GSource *g_child_watch_source_new (GPid pid); -GLIB_AVAILABLE_IN_ALL -GSource *g_timeout_source_new (guint interval); -GLIB_AVAILABLE_IN_ALL -GSource *g_timeout_source_new_seconds (guint interval); - -/* Miscellaneous functions - */ -GLIB_AVAILABLE_IN_ALL -void g_get_current_time (GTimeVal *result); -GLIB_AVAILABLE_IN_ALL -gint64 g_get_monotonic_time (void); -GLIB_AVAILABLE_IN_ALL -gint64 g_get_real_time (void); - - -/* Source manipulation by ID */ -GLIB_AVAILABLE_IN_ALL -gboolean g_source_remove (guint tag); -GLIB_AVAILABLE_IN_ALL -gboolean g_source_remove_by_user_data (gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_source_remove_by_funcs_user_data (GSourceFuncs *funcs, - gpointer user_data); - -/* Idles, child watchers and timeouts */ -GLIB_AVAILABLE_IN_ALL -guint g_timeout_add_full (gint priority, - guint interval, - GSourceFunc function, - gpointer data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -guint g_timeout_add (guint interval, - GSourceFunc function, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_timeout_add_seconds_full (gint priority, - guint interval, - GSourceFunc function, - gpointer data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -guint g_timeout_add_seconds (guint interval, - GSourceFunc function, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_child_watch_add_full (gint priority, - GPid pid, - GChildWatchFunc function, - gpointer data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -guint g_child_watch_add (GPid pid, - GChildWatchFunc function, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_idle_add (GSourceFunc function, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_idle_add_full (gint priority, - GSourceFunc function, - gpointer data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -gboolean g_idle_remove_by_data (gpointer data); - -GLIB_AVAILABLE_IN_ALL -void g_main_context_invoke_full (GMainContext *context, - gint priority, - GSourceFunc function, - gpointer data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -void g_main_context_invoke (GMainContext *context, - GSourceFunc function, - gpointer data); - -/* Hook for GClosure / GSource integration. Don't touch */ -GLIB_VAR GSourceFuncs g_timeout_funcs; -GLIB_VAR GSourceFuncs g_child_watch_funcs; -GLIB_VAR GSourceFuncs g_idle_funcs; -#ifdef G_OS_UNIX -GLIB_VAR GSourceFuncs g_unix_signal_funcs; -GLIB_VAR GSourceFuncs g_unix_fd_source_funcs; -#endif - -G_END_DECLS - -#endif /* __G_MAIN_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmappedfile.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmappedfile.h deleted file mode 100644 index a1c7ac7..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmappedfile.h +++ /dev/null @@ -1,60 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * gmappedfile.h: Simplified wrapper around the mmap function - * - * Copyright 2005 Matthias Clasen - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_MAPPED_FILE_H__ -#define __G_MAPPED_FILE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GMappedFile GMappedFile; - -GLIB_AVAILABLE_IN_ALL -GMappedFile *g_mapped_file_new (const gchar *filename, - gboolean writable, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -GMappedFile *g_mapped_file_new_from_fd (gint fd, - gboolean writable, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gsize g_mapped_file_get_length (GMappedFile *file); -GLIB_AVAILABLE_IN_ALL -gchar *g_mapped_file_get_contents (GMappedFile *file); -GLIB_AVAILABLE_IN_2_34 -GBytes * g_mapped_file_get_bytes (GMappedFile *file); -GLIB_AVAILABLE_IN_ALL -GMappedFile *g_mapped_file_ref (GMappedFile *file); -GLIB_AVAILABLE_IN_ALL -void g_mapped_file_unref (GMappedFile *file); - -GLIB_DEPRECATED_FOR(g_mapped_file_unref) -void g_mapped_file_free (GMappedFile *file); - -G_END_DECLS - -#endif /* __G_MAPPED_FILE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmarkup.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmarkup.h deleted file mode 100644 index eb7214d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmarkup.h +++ /dev/null @@ -1,257 +0,0 @@ -/* gmarkup.h - Simple XML-like string parser/writer - * - * Copyright 2000 Red Hat, Inc. - * - * GLib is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_MARKUP_H__ -#define __G_MARKUP_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#include -#include - -G_BEGIN_DECLS - -/** - * GMarkupError: - * @G_MARKUP_ERROR_BAD_UTF8: text being parsed was not valid UTF-8 - * @G_MARKUP_ERROR_EMPTY: document contained nothing, or only whitespace - * @G_MARKUP_ERROR_PARSE: document was ill-formed - * @G_MARKUP_ERROR_UNKNOWN_ELEMENT: error should be set by #GMarkupParser - * functions; element wasn't known - * @G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE: error should be set by #GMarkupParser - * functions; attribute wasn't known - * @G_MARKUP_ERROR_INVALID_CONTENT: error should be set by #GMarkupParser - * functions; content was invalid - * @G_MARKUP_ERROR_MISSING_ATTRIBUTE: error should be set by #GMarkupParser - * functions; a required attribute was missing - * - * Error codes returned by markup parsing. - */ -typedef enum -{ - G_MARKUP_ERROR_BAD_UTF8, - G_MARKUP_ERROR_EMPTY, - G_MARKUP_ERROR_PARSE, - /* The following are primarily intended for specific GMarkupParser - * implementations to set. - */ - G_MARKUP_ERROR_UNKNOWN_ELEMENT, - G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE, - G_MARKUP_ERROR_INVALID_CONTENT, - G_MARKUP_ERROR_MISSING_ATTRIBUTE -} GMarkupError; - -/** - * G_MARKUP_ERROR: - * - * Error domain for markup parsing. - * Errors in this domain will be from the #GMarkupError enumeration. - * See #GError for information on error domains. - */ -#define G_MARKUP_ERROR g_markup_error_quark () - -GLIB_AVAILABLE_IN_ALL -GQuark g_markup_error_quark (void); - -/** - * GMarkupParseFlags: - * @G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG: flag you should not use - * @G_MARKUP_TREAT_CDATA_AS_TEXT: When this flag is set, CDATA marked - * sections are not passed literally to the @passthrough function of - * the parser. Instead, the content of the section (without the - * <![CDATA[ and ]]>) is - * passed to the @text function. This flag was added in GLib 2.12 - * @G_MARKUP_PREFIX_ERROR_POSITION: Normally errors caught by GMarkup - * itself have line/column information prefixed to them to let the - * caller know the location of the error. When this flag is set the - * location information is also prefixed to errors generated by the - * #GMarkupParser implementation functions - * - * Flags that affect the behaviour of the parser. - */ -typedef enum -{ - G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG = 1 << 0, - G_MARKUP_TREAT_CDATA_AS_TEXT = 1 << 1, - G_MARKUP_PREFIX_ERROR_POSITION = 1 << 2 -} GMarkupParseFlags; - -/** - * GMarkupParseContext: - * - * A parse context is used to parse a stream of bytes that - * you expect to contain marked-up text. - * - * See g_markup_parse_context_new(), #GMarkupParser, and so - * on for more details. - */ -typedef struct _GMarkupParseContext GMarkupParseContext; -typedef struct _GMarkupParser GMarkupParser; - -/** - * GMarkupParser: - * @start_element: Callback to invoke when the opening tag of an element - * is seen. - * @end_element: Callback to invoke when the closing tag of an element - * is seen. Note that this is also called for empty tags like - * <empty/>. - * @text: Callback to invoke when some text is seen (text is always - * inside an element). Note that the text of an element may be spread - * over multiple calls of this function. If the - * %G_MARKUP_TREAT_CDATA_AS_TEXT flag is set, this function is also - * called for the content of CDATA marked sections. - * @passthrough: Callback to invoke for comments, processing instructions - * and doctype declarations; if you're re-writing the parsed document, - * write the passthrough text back out in the same position. If the - * %G_MARKUP_TREAT_CDATA_AS_TEXT flag is not set, this function is also - * called for CDATA marked sections. - * @error: Callback to invoke when an error occurs. - * - * Any of the fields in #GMarkupParser can be %NULL, in which case they - * will be ignored. Except for the @error function, any of these callbacks - * can set an error; in particular the %G_MARKUP_ERROR_UNKNOWN_ELEMENT, - * %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE, and %G_MARKUP_ERROR_INVALID_CONTENT - * errors are intended to be set from these callbacks. If you set an error - * from a callback, g_markup_parse_context_parse() will report that error - * back to its caller. - */ -struct _GMarkupParser -{ - /* Called for open tags */ - void (*start_element) (GMarkupParseContext *context, - const gchar *element_name, - const gchar **attribute_names, - const gchar **attribute_values, - gpointer user_data, - GError **error); - - /* Called for close tags */ - void (*end_element) (GMarkupParseContext *context, - const gchar *element_name, - gpointer user_data, - GError **error); - - /* Called for character data */ - /* text is not nul-terminated */ - void (*text) (GMarkupParseContext *context, - const gchar *text, - gsize text_len, - gpointer user_data, - GError **error); - - /* Called for strings that should be re-saved verbatim in this same - * position, but are not otherwise interpretable. At the moment - * this includes comments and processing instructions. - */ - /* text is not nul-terminated. */ - void (*passthrough) (GMarkupParseContext *context, - const gchar *passthrough_text, - gsize text_len, - gpointer user_data, - GError **error); - - /* Called on error, including one set by other - * methods in the vtable. The GError should not be freed. - */ - void (*error) (GMarkupParseContext *context, - GError *error, - gpointer user_data); -}; - -GLIB_AVAILABLE_IN_ALL -GMarkupParseContext *g_markup_parse_context_new (const GMarkupParser *parser, - GMarkupParseFlags flags, - gpointer user_data, - GDestroyNotify user_data_dnotify); -GLIB_AVAILABLE_IN_2_36 -GMarkupParseContext *g_markup_parse_context_ref (GMarkupParseContext *context); -GLIB_AVAILABLE_IN_2_36 -void g_markup_parse_context_unref (GMarkupParseContext *context); -GLIB_AVAILABLE_IN_ALL -void g_markup_parse_context_free (GMarkupParseContext *context); -GLIB_AVAILABLE_IN_ALL -gboolean g_markup_parse_context_parse (GMarkupParseContext *context, - const gchar *text, - gssize text_len, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_markup_parse_context_push (GMarkupParseContext *context, - const GMarkupParser *parser, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gpointer g_markup_parse_context_pop (GMarkupParseContext *context); - -GLIB_AVAILABLE_IN_ALL -gboolean g_markup_parse_context_end_parse (GMarkupParseContext *context, - GError **error); -GLIB_AVAILABLE_IN_ALL -const gchar * g_markup_parse_context_get_element (GMarkupParseContext *context); -GLIB_AVAILABLE_IN_ALL -const GSList * g_markup_parse_context_get_element_stack (GMarkupParseContext *context); - -/* For user-constructed error messages, has no precise semantics */ -GLIB_AVAILABLE_IN_ALL -void g_markup_parse_context_get_position (GMarkupParseContext *context, - gint *line_number, - gint *char_number); -GLIB_AVAILABLE_IN_ALL -gpointer g_markup_parse_context_get_user_data (GMarkupParseContext *context); - -/* useful when saving */ -GLIB_AVAILABLE_IN_ALL -gchar* g_markup_escape_text (const gchar *text, - gssize length); - -GLIB_AVAILABLE_IN_ALL -gchar *g_markup_printf_escaped (const char *format, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -gchar *g_markup_vprintf_escaped (const char *format, - va_list args) G_GNUC_PRINTF(1, 0); - -typedef enum -{ - G_MARKUP_COLLECT_INVALID, - G_MARKUP_COLLECT_STRING, - G_MARKUP_COLLECT_STRDUP, - G_MARKUP_COLLECT_BOOLEAN, - G_MARKUP_COLLECT_TRISTATE, - - G_MARKUP_COLLECT_OPTIONAL = (1 << 16) -} GMarkupCollectType; - - -/* useful from start_element */ -GLIB_AVAILABLE_IN_ALL -gboolean g_markup_collect_attributes (const gchar *element_name, - const gchar **attribute_names, - const gchar **attribute_values, - GError **error, - GMarkupCollectType first_type, - const gchar *first_attr, - ...); - -G_END_DECLS - -#endif /* __G_MARKUP_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmem.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmem.h deleted file mode 100644 index 8795b67..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmem.h +++ /dev/null @@ -1,301 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_MEM_H__ -#define __G_MEM_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * GMemVTable: - * @malloc: function to use for allocating memory. - * @realloc: function to use for reallocating memory. - * @free: function to use to free memory. - * @calloc: function to use for allocating zero-filled memory. - * @try_malloc: function to use for allocating memory without a default error handler. - * @try_realloc: function to use for reallocating memory without a default error handler. - * - * A set of functions used to perform memory allocation. The same #GMemVTable must - * be used for all allocations in the same program; a call to g_mem_set_vtable(), - * if it exists, should be prior to any use of GLib. - */ -typedef struct _GMemVTable GMemVTable; - - -#if GLIB_SIZEOF_VOID_P > GLIB_SIZEOF_LONG -/** - * G_MEM_ALIGN: - * - * Indicates the number of bytes to which memory will be aligned on the - * current platform. - */ -# define G_MEM_ALIGN GLIB_SIZEOF_VOID_P -#else /* GLIB_SIZEOF_VOID_P <= GLIB_SIZEOF_LONG */ -# define G_MEM_ALIGN GLIB_SIZEOF_LONG -#endif /* GLIB_SIZEOF_VOID_P <= GLIB_SIZEOF_LONG */ - - -/* Memory allocation functions - */ - -GLIB_AVAILABLE_IN_ALL -void g_free (gpointer mem); - -GLIB_AVAILABLE_IN_2_34 -void g_clear_pointer (gpointer *pp, - GDestroyNotify destroy); - -GLIB_AVAILABLE_IN_ALL -gpointer g_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_realloc (gpointer mem, - gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -gpointer g_try_malloc (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_try_malloc0 (gsize n_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_try_realloc (gpointer mem, - gsize n_bytes) G_GNUC_WARN_UNUSED_RESULT; - -GLIB_AVAILABLE_IN_ALL -gpointer g_malloc_n (gsize n_blocks, - gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); -GLIB_AVAILABLE_IN_ALL -gpointer g_malloc0_n (gsize n_blocks, - gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); -GLIB_AVAILABLE_IN_ALL -gpointer g_realloc_n (gpointer mem, - gsize n_blocks, - gsize n_block_bytes) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -gpointer g_try_malloc_n (gsize n_blocks, - gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); -GLIB_AVAILABLE_IN_ALL -gpointer g_try_malloc0_n (gsize n_blocks, - gsize n_block_bytes) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE2(1,2); -GLIB_AVAILABLE_IN_ALL -gpointer g_try_realloc_n (gpointer mem, - gsize n_blocks, - gsize n_block_bytes) G_GNUC_WARN_UNUSED_RESULT; - -#define g_clear_pointer(pp, destroy) \ - G_STMT_START { \ - G_STATIC_ASSERT (sizeof *(pp) == sizeof (gpointer)); \ - /* Only one access, please */ \ - gpointer *_pp = (gpointer *) (pp); \ - gpointer _p; \ - /* This assignment is needed to avoid a gcc warning */ \ - GDestroyNotify _destroy = (GDestroyNotify) (destroy); \ - \ - (void) (0 ? (gpointer) *(pp) : 0); \ - do \ - _p = g_atomic_pointer_get (_pp); \ - while G_UNLIKELY (!g_atomic_pointer_compare_and_exchange (_pp, _p, NULL)); \ - \ - if (_p) \ - _destroy (_p); \ - } G_STMT_END - -/* Optimise: avoid the call to the (slower) _n function if we can - * determine at compile-time that no overflow happens. - */ -#if defined (__GNUC__) && (__GNUC__ >= 2) && defined (__OPTIMIZE__) -# define _G_NEW(struct_type, n_structs, func) \ - (struct_type *) (G_GNUC_EXTENSION ({ \ - gsize __n = (gsize) (n_structs); \ - gsize __s = sizeof (struct_type); \ - gpointer __p; \ - if (__s == 1) \ - __p = g_##func (__n); \ - else if (__builtin_constant_p (__n) && \ - (__s == 0 || __n <= G_MAXSIZE / __s)) \ - __p = g_##func (__n * __s); \ - else \ - __p = g_##func##_n (__n, __s); \ - __p; \ - })) -# define _G_RENEW(struct_type, mem, n_structs, func) \ - (struct_type *) (G_GNUC_EXTENSION ({ \ - gsize __n = (gsize) (n_structs); \ - gsize __s = sizeof (struct_type); \ - gpointer __p = (gpointer) (mem); \ - if (__s == 1) \ - __p = g_##func (__p, __n); \ - else if (__builtin_constant_p (__n) && \ - (__s == 0 || __n <= G_MAXSIZE / __s)) \ - __p = g_##func (__p, __n * __s); \ - else \ - __p = g_##func##_n (__p, __n, __s); \ - __p; \ - })) - -#else - -/* Unoptimised version: always call the _n() function. */ - -#define _G_NEW(struct_type, n_structs, func) \ - ((struct_type *) g_##func##_n ((n_structs), sizeof (struct_type))) -#define _G_RENEW(struct_type, mem, n_structs, func) \ - ((struct_type *) g_##func##_n (mem, (n_structs), sizeof (struct_type))) - -#endif - -/** - * g_new: - * @struct_type: the type of the elements to allocate - * @n_structs: the number of elements to allocate - * - * Allocates @n_structs elements of type @struct_type. - * The returned pointer is cast to a pointer to the given type. - * If @n_structs is 0 it returns %NULL. - * Care is taken to avoid overflow when calculating the size of the allocated block. - * - * Since the returned pointer is already casted to the right type, - * it is normally unnecessary to cast it explicitly, and doing - * so might hide memory allocation errors. - * - * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type - */ -#define g_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc) -/** - * g_new0: - * @struct_type: the type of the elements to allocate. - * @n_structs: the number of elements to allocate. - * - * Allocates @n_structs elements of type @struct_type, initialized to 0's. - * The returned pointer is cast to a pointer to the given type. - * If @n_structs is 0 it returns %NULL. - * Care is taken to avoid overflow when calculating the size of the allocated block. - * - * Since the returned pointer is already casted to the right type, - * it is normally unnecessary to cast it explicitly, and doing - * so might hide memory allocation errors. - * - * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type. - */ -#define g_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, malloc0) -/** - * g_renew: - * @struct_type: the type of the elements to allocate - * @mem: the currently allocated memory - * @n_structs: the number of elements to allocate - * - * Reallocates the memory pointed to by @mem, so that it now has space for - * @n_structs elements of type @struct_type. It returns the new address of - * the memory, which may have been moved. - * Care is taken to avoid overflow when calculating the size of the allocated block. - * - * Returns: a pointer to the new allocated memory, cast to a pointer to @struct_type - */ -#define g_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, realloc) -/** - * g_try_new: - * @struct_type: the type of the elements to allocate - * @n_structs: the number of elements to allocate - * - * Attempts to allocate @n_structs elements of type @struct_type, and returns - * %NULL on failure. Contrast with g_new(), which aborts the program on failure. - * The returned pointer is cast to a pointer to the given type. - * The function returns %NULL when @n_structs is 0 of if an overflow occurs. - * - * Since: 2.8 - * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type - */ -#define g_try_new(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc) -/** - * g_try_new0: - * @struct_type: the type of the elements to allocate - * @n_structs: the number of elements to allocate - * - * Attempts to allocate @n_structs elements of type @struct_type, initialized - * to 0's, and returns %NULL on failure. Contrast with g_new0(), which aborts - * the program on failure. - * The returned pointer is cast to a pointer to the given type. - * The function returns %NULL when @n_structs is 0 of if an overflow occurs. - * - * Since: 2.8 - * Returns: a pointer to the allocated memory, cast to a pointer to @struct_type - */ -#define g_try_new0(struct_type, n_structs) _G_NEW (struct_type, n_structs, try_malloc0) -/** - * g_try_renew: - * @struct_type: the type of the elements to allocate - * @mem: the currently allocated memory - * @n_structs: the number of elements to allocate - * - * Attempts to reallocate the memory pointed to by @mem, so that it now has - * space for @n_structs elements of type @struct_type, and returns %NULL on - * failure. Contrast with g_renew(), which aborts the program on failure. - * It returns the new address of the memory, which may have been moved. - * The function returns %NULL if an overflow occurs. - * - * Since: 2.8 - * Returns: a pointer to the new allocated memory, cast to a pointer to @struct_type - */ -#define g_try_renew(struct_type, mem, n_structs) _G_RENEW (struct_type, mem, n_structs, try_realloc) - - -/* Memory allocation virtualization for debugging purposes - * g_mem_set_vtable() has to be the very first GLib function called - * if being used - */ -struct _GMemVTable { - gpointer (*malloc) (gsize n_bytes); - gpointer (*realloc) (gpointer mem, - gsize n_bytes); - void (*free) (gpointer mem); - /* optional; set to NULL if not used ! */ - gpointer (*calloc) (gsize n_blocks, - gsize n_block_bytes); - gpointer (*try_malloc) (gsize n_bytes); - gpointer (*try_realloc) (gpointer mem, - gsize n_bytes); -}; -GLIB_AVAILABLE_IN_ALL -void g_mem_set_vtable (GMemVTable *vtable); -GLIB_AVAILABLE_IN_ALL -gboolean g_mem_is_system_malloc (void); - -GLIB_VAR gboolean g_mem_gc_friendly; - -/* Memory profiler and checker, has to be enabled via g_mem_set_vtable() - */ -GLIB_VAR GMemVTable *glib_mem_profiler_table; -GLIB_AVAILABLE_IN_ALL -void g_mem_profile (void); - -G_END_DECLS - -#endif /* __G_MEM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmessages.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmessages.h deleted file mode 100644 index 77958ad..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gmessages.h +++ /dev/null @@ -1,423 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_MESSAGES_H__ -#define __G_MESSAGES_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -/* Suppress warnings when GCC is in -pedantic mode and not -std=c99 - */ -#if (__GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)) -#pragma GCC system_header -#endif - -G_BEGIN_DECLS - -/* calculate a string size, guaranteed to fit format + args. - */ -GLIB_AVAILABLE_IN_ALL -gsize g_printf_string_upper_bound (const gchar* format, - va_list args) G_GNUC_PRINTF(1, 0); - -/* Log level shift offset for user defined - * log levels (0-7 are used by GLib). - */ -#define G_LOG_LEVEL_USER_SHIFT (8) - -/* Glib log levels and flags. - */ -typedef enum -{ - /* log flags */ - G_LOG_FLAG_RECURSION = 1 << 0, - G_LOG_FLAG_FATAL = 1 << 1, - - /* GLib log levels */ - G_LOG_LEVEL_ERROR = 1 << 2, /* always fatal */ - G_LOG_LEVEL_CRITICAL = 1 << 3, - G_LOG_LEVEL_WARNING = 1 << 4, - G_LOG_LEVEL_MESSAGE = 1 << 5, - G_LOG_LEVEL_INFO = 1 << 6, - G_LOG_LEVEL_DEBUG = 1 << 7, - - G_LOG_LEVEL_MASK = ~(G_LOG_FLAG_RECURSION | G_LOG_FLAG_FATAL) -} GLogLevelFlags; - -/* GLib log levels that are considered fatal by default */ -#define G_LOG_FATAL_MASK (G_LOG_FLAG_RECURSION | G_LOG_LEVEL_ERROR) - -typedef void (*GLogFunc) (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *message, - gpointer user_data); - -/* Logging mechanism - */ -GLIB_AVAILABLE_IN_ALL -guint g_log_set_handler (const gchar *log_domain, - GLogLevelFlags log_levels, - GLogFunc log_func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_log_remove_handler (const gchar *log_domain, - guint handler_id); -GLIB_AVAILABLE_IN_ALL -void g_log_default_handler (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *message, - gpointer unused_data); -GLIB_AVAILABLE_IN_ALL -GLogFunc g_log_set_default_handler (GLogFunc log_func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_log (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *format, - ...) G_GNUC_PRINTF (3, 4); -GLIB_AVAILABLE_IN_ALL -void g_logv (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *format, - va_list args) G_GNUC_PRINTF(3, 0); -GLIB_AVAILABLE_IN_ALL -GLogLevelFlags g_log_set_fatal_mask (const gchar *log_domain, - GLogLevelFlags fatal_mask); -GLIB_AVAILABLE_IN_ALL -GLogLevelFlags g_log_set_always_fatal (GLogLevelFlags fatal_mask); - -/* internal */ -void _g_log_fallback_handler (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *message, - gpointer unused_data); - -/* Internal functions, used to implement the following macros */ -GLIB_AVAILABLE_IN_ALL -void g_return_if_fail_warning (const char *log_domain, - const char *pretty_function, - const char *expression) G_ANALYZER_NORETURN; -GLIB_AVAILABLE_IN_ALL -void g_warn_message (const char *domain, - const char *file, - int line, - const char *func, - const char *warnexpr) G_ANALYZER_NORETURN; -GLIB_DEPRECATED -void g_assert_warning (const char *log_domain, - const char *file, - const int line, - const char *pretty_function, - const char *expression) G_GNUC_NORETURN; - - -#ifndef G_LOG_DOMAIN -#define G_LOG_DOMAIN ((gchar*) 0) -#endif /* G_LOG_DOMAIN */ - -#if defined(G_HAVE_ISO_VARARGS) && !G_ANALYZER_ANALYZING -/* for(;;) ; so that GCC knows that control doesn't go past g_error(). - * Put space before ending semicolon to avoid C++ build warnings. - */ -#define g_error(...) G_STMT_START { \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_ERROR, \ - __VA_ARGS__); \ - for (;;) ; \ - } G_STMT_END - -#define g_message(...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_MESSAGE, \ - __VA_ARGS__) -#define g_critical(...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - __VA_ARGS__) -#define g_warning(...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_WARNING, \ - __VA_ARGS__) -#define g_debug(...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_DEBUG, \ - __VA_ARGS__) -#elif defined(G_HAVE_GNUC_VARARGS) && !G_ANALYZER_ANALYZING -#define g_error(format...) G_STMT_START { \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_ERROR, \ - format); \ - for (;;) ; \ - } G_STMT_END - -#define g_message(format...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_MESSAGE, \ - format) -#define g_critical(format...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - format) -#define g_warning(format...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_WARNING, \ - format) -#define g_debug(format...) g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_DEBUG, \ - format) -#else /* no varargs macros */ -static void g_error (const gchar *format, ...) G_ANALYZER_NORETURN; -static void g_critical (const gchar *format, ...) G_ANALYZER_NORETURN; - -static void -g_error (const gchar *format, - ...) -{ - va_list args; - va_start (args, format); - g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_ERROR, format, args); - va_end (args); - - for(;;) ; -} -static void -g_message (const gchar *format, - ...) -{ - va_list args; - va_start (args, format); - g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_MESSAGE, format, args); - va_end (args); -} -static void -g_critical (const gchar *format, - ...) -{ - va_list args; - va_start (args, format); - g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_CRITICAL, format, args); - va_end (args); -} -static void -g_warning (const gchar *format, - ...) -{ - va_list args; - va_start (args, format); - g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, format, args); - va_end (args); -} -static void -g_debug (const gchar *format, - ...) -{ - va_list args; - va_start (args, format); - g_logv (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format, args); - va_end (args); -} -#endif /* !__GNUC__ */ - -/** - * GPrintFunc: - * @string: the message to output - * - * Specifies the type of the print handler functions. - * These are called with the complete formatted string to output. - */ -typedef void (*GPrintFunc) (const gchar *string); -GLIB_AVAILABLE_IN_ALL -void g_print (const gchar *format, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -GPrintFunc g_set_print_handler (GPrintFunc func); -GLIB_AVAILABLE_IN_ALL -void g_printerr (const gchar *format, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -GPrintFunc g_set_printerr_handler (GPrintFunc func); - -/** - * g_warn_if_reached: - * - * Logs a critical warning. - * - * Since: 2.16 - */ -#define g_warn_if_reached() \ - do { \ - g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, NULL); \ - } while (0) - -/** - * g_warn_if_fail: - * @expr: the expression to check - * - * Logs a warning if the expression is not true. - * - * Since: 2.16 - */ -#define g_warn_if_fail(expr) \ - do { \ - if G_LIKELY (expr) ; \ - else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, #expr); \ - } while (0) - -#ifdef G_DISABLE_CHECKS - -/** - * g_return_if_fail: - * @expr: the expression to check - * - * Verifies that the expression evaluates to %TRUE. If the expression - * evaluates to %FALSE, a critical message is logged and the current - * function returns. This can only be used in functions which do not - * return a value. - * - * If G_DISABLE_CHECKS is defined then the check is not performed. You - * should therefore not depend on any side effects of @expr. - */ -#define g_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END - -/** - * g_return_val_if_fail: - * @expr: the expression to check - * @val: the value to return from the current function - * if the expression is not true - * - * Verifies that the expression evaluates to %TRUE. If the expression - * evaluates to %FALSE, a critical message is logged and @val is - * returned from the current function. - * - * If G_DISABLE_CHECKS is defined then the check is not performed. You - * should therefore not depend on any side effects of @expr. - */ -#define g_return_val_if_fail(expr,val) G_STMT_START{ (void)0; }G_STMT_END - -/** - * g_return_if_reached: - * - * Logs a critical message and returns from the current function. - * This can only be used in functions which do not return a value. - */ -#define g_return_if_reached() G_STMT_START{ return; }G_STMT_END - -/** - * g_return_val_if_reached: - * @val: the value to return from the current function - * - * Logs a critical message and returns @val. - */ -#define g_return_val_if_reached(val) G_STMT_START{ return (val); }G_STMT_END - -#else /* !G_DISABLE_CHECKS */ - -#ifdef __GNUC__ - -#define g_return_if_fail(expr) G_STMT_START{ \ - if G_LIKELY(expr) { } else \ - { \ - g_return_if_fail_warning (G_LOG_DOMAIN, \ - __PRETTY_FUNCTION__, \ - #expr); \ - return; \ - }; }G_STMT_END - -#define g_return_val_if_fail(expr,val) G_STMT_START{ \ - if G_LIKELY(expr) { } else \ - { \ - g_return_if_fail_warning (G_LOG_DOMAIN, \ - __PRETTY_FUNCTION__, \ - #expr); \ - return (val); \ - }; }G_STMT_END - -#define g_return_if_reached() G_STMT_START{ \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d (%s): should not be reached", \ - __FILE__, \ - __LINE__, \ - __PRETTY_FUNCTION__); \ - return; }G_STMT_END - -#define g_return_val_if_reached(val) G_STMT_START{ \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d (%s): should not be reached", \ - __FILE__, \ - __LINE__, \ - __PRETTY_FUNCTION__); \ - return (val); }G_STMT_END - -#else /* !__GNUC__ */ - -#define g_return_if_fail(expr) G_STMT_START{ \ - if (expr) { } else \ - { \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d: assertion '%s' failed", \ - __FILE__, \ - __LINE__, \ - #expr); \ - return; \ - }; }G_STMT_END - -#define g_return_val_if_fail(expr, val) G_STMT_START{ \ - if (expr) { } else \ - { \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d: assertion '%s' failed", \ - __FILE__, \ - __LINE__, \ - #expr); \ - return (val); \ - }; }G_STMT_END - -#define g_return_if_reached() G_STMT_START{ \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d: should not be reached", \ - __FILE__, \ - __LINE__); \ - return; }G_STMT_END - -#define g_return_val_if_reached(val) G_STMT_START{ \ - g_log (G_LOG_DOMAIN, \ - G_LOG_LEVEL_CRITICAL, \ - "file %s: line %d: should not be reached", \ - __FILE__, \ - __LINE__); \ - return (val); }G_STMT_END - -#endif /* !__GNUC__ */ - -#endif /* !G_DISABLE_CHECKS */ - -G_END_DECLS - -#endif /* __G_MESSAGES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gnode.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gnode.h deleted file mode 100644 index 71f60ab..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gnode.h +++ /dev/null @@ -1,324 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_NODE_H__ -#define __G_NODE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GNode GNode; - -/* Tree traverse flags */ -typedef enum -{ - G_TRAVERSE_LEAVES = 1 << 0, - G_TRAVERSE_NON_LEAVES = 1 << 1, - G_TRAVERSE_ALL = G_TRAVERSE_LEAVES | G_TRAVERSE_NON_LEAVES, - G_TRAVERSE_MASK = 0x03, - G_TRAVERSE_LEAFS = G_TRAVERSE_LEAVES, - G_TRAVERSE_NON_LEAFS = G_TRAVERSE_NON_LEAVES -} GTraverseFlags; - -/* Tree traverse orders */ -typedef enum -{ - G_IN_ORDER, - G_PRE_ORDER, - G_POST_ORDER, - G_LEVEL_ORDER -} GTraverseType; - -typedef gboolean (*GNodeTraverseFunc) (GNode *node, - gpointer data); -typedef void (*GNodeForeachFunc) (GNode *node, - gpointer data); - -/** - * GCopyFunc: - * @src: A pointer to the data which should be copied - * @data: Additional data - * - * A function of this signature is used to copy the node data - * when doing a deep-copy of a tree. - * - * Returns: A pointer to the copy - * - * Since: 2.4 - */ -typedef gpointer (*GCopyFunc) (gconstpointer src, - gpointer data); - -/* N-way tree implementation - */ -struct _GNode -{ - gpointer data; - GNode *next; - GNode *prev; - GNode *parent; - GNode *children; -}; - -/** - * G_NODE_IS_ROOT: - * @node: a #GNode - * - * Returns %TRUE if a #GNode is the root of a tree. - * - * Returns: %TRUE if the #GNode is the root of a tree - * (i.e. it has no parent or siblings) - */ -#define G_NODE_IS_ROOT(node) (((GNode*) (node))->parent == NULL && \ - ((GNode*) (node))->prev == NULL && \ - ((GNode*) (node))->next == NULL) - -/** - * G_NODE_IS_LEAF: - * @node: a #GNode - * - * Returns %TRUE if a #GNode is a leaf node. - * - * Returns: %TRUE if the #GNode is a leaf node - * (i.e. it has no children) - */ -#define G_NODE_IS_LEAF(node) (((GNode*) (node))->children == NULL) - -GLIB_AVAILABLE_IN_ALL -GNode* g_node_new (gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_node_destroy (GNode *root); -GLIB_AVAILABLE_IN_ALL -void g_node_unlink (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_copy_deep (GNode *node, - GCopyFunc copy_func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_copy (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_insert (GNode *parent, - gint position, - GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_insert_before (GNode *parent, - GNode *sibling, - GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_insert_after (GNode *parent, - GNode *sibling, - GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_prepend (GNode *parent, - GNode *node); -GLIB_AVAILABLE_IN_ALL -guint g_node_n_nodes (GNode *root, - GTraverseFlags flags); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_get_root (GNode *node); -GLIB_AVAILABLE_IN_ALL -gboolean g_node_is_ancestor (GNode *node, - GNode *descendant); -GLIB_AVAILABLE_IN_ALL -guint g_node_depth (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_find (GNode *root, - GTraverseType order, - GTraverseFlags flags, - gpointer data); - -/* convenience macros */ -/** - * g_node_append: - * @parent: the #GNode to place the new #GNode under - * @node: the #GNode to insert - * - * Inserts a #GNode as the last child of the given parent. - * - * Returns: the inserted #GNode - */ -#define g_node_append(parent, node) \ - g_node_insert_before ((parent), NULL, (node)) - -/** - * g_node_insert_data: - * @parent: the #GNode to place the new #GNode under - * @position: the position to place the new #GNode at. If position is -1, - * the new #GNode is inserted as the last child of @parent - * @data: the data for the new #GNode - * - * Inserts a new #GNode at the given position. - * - * Returns: the new #GNode - */ -#define g_node_insert_data(parent, position, data) \ - g_node_insert ((parent), (position), g_node_new (data)) - -/** - * g_node_insert_data_after: - * @parent: the #GNode to place the new #GNode under - * @sibling: the sibling #GNode to place the new #GNode after - * @data: the data for the new #GNode - * - * Inserts a new #GNode after the given sibling. - * - * Returns: the new #GNode - */ - -#define g_node_insert_data_after(parent, sibling, data) \ - g_node_insert_after ((parent), (sibling), g_node_new (data)) -/** - * g_node_insert_data_before: - * @parent: the #GNode to place the new #GNode under - * @sibling: the sibling #GNode to place the new #GNode before - * @data: the data for the new #GNode - * - * Inserts a new #GNode before the given sibling. - * - * Returns: the new #GNode - */ -#define g_node_insert_data_before(parent, sibling, data) \ - g_node_insert_before ((parent), (sibling), g_node_new (data)) - -/** - * g_node_prepend_data: - * @parent: the #GNode to place the new #GNode under - * @data: the data for the new #GNode - * - * Inserts a new #GNode as the first child of the given parent. - * - * Returns: the new #GNode - */ -#define g_node_prepend_data(parent, data) \ - g_node_prepend ((parent), g_node_new (data)) - -/** - * g_node_append_data: - * @parent: the #GNode to place the new #GNode under - * @data: the data for the new #GNode - * - * Inserts a new #GNode as the last child of the given parent. - * - * Returns: the new #GNode - */ -#define g_node_append_data(parent, data) \ - g_node_insert_before ((parent), NULL, g_node_new (data)) - -/* traversal function, assumes that 'node' is root - * (only traverses 'node' and its subtree). - * this function is just a high level interface to - * low level traversal functions, optimized for speed. - */ -GLIB_AVAILABLE_IN_ALL -void g_node_traverse (GNode *root, - GTraverseType order, - GTraverseFlags flags, - gint max_depth, - GNodeTraverseFunc func, - gpointer data); - -/* return the maximum tree height starting with 'node', this is an expensive - * operation, since we need to visit all nodes. this could be shortened by - * adding 'guint height' to struct _GNode, but then again, this is not very - * often needed, and would make g_node_insert() more time consuming. - */ -GLIB_AVAILABLE_IN_ALL -guint g_node_max_height (GNode *root); - -GLIB_AVAILABLE_IN_ALL -void g_node_children_foreach (GNode *node, - GTraverseFlags flags, - GNodeForeachFunc func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_node_reverse_children (GNode *node); -GLIB_AVAILABLE_IN_ALL -guint g_node_n_children (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_nth_child (GNode *node, - guint n); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_last_child (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_find_child (GNode *node, - GTraverseFlags flags, - gpointer data); -GLIB_AVAILABLE_IN_ALL -gint g_node_child_position (GNode *node, - GNode *child); -GLIB_AVAILABLE_IN_ALL -gint g_node_child_index (GNode *node, - gpointer data); - -GLIB_AVAILABLE_IN_ALL -GNode* g_node_first_sibling (GNode *node); -GLIB_AVAILABLE_IN_ALL -GNode* g_node_last_sibling (GNode *node); - -/** - * g_node_prev_sibling: - * @node: a #GNode - * - * Gets the previous sibling of a #GNode. - * - * Returns: the previous sibling of @node, or %NULL if @node is the first - * node or %NULL - */ -#define g_node_prev_sibling(node) ((node) ? \ - ((GNode*) (node))->prev : NULL) - -/** - * g_node_next_sibling: - * @node: a #GNode - * - * Gets the next sibling of a #GNode. - * - * Returns: the next sibling of @node, or %NULL if @node is the last node - * or %NULL - */ -#define g_node_next_sibling(node) ((node) ? \ - ((GNode*) (node))->next : NULL) - -/** - * g_node_first_child: - * @node: a #GNode - * - * Gets the first child of a #GNode. - * - * Returns: the first child of @node, or %NULL if @node is %NULL - * or has no children - */ -#define g_node_first_child(node) ((node) ? \ - ((GNode*) (node))->children : NULL) - -G_END_DECLS - -#endif /* __G_NODE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/goption.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/goption.h deleted file mode 100644 index ee01377..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/goption.h +++ /dev/null @@ -1,396 +0,0 @@ -/* goption.h - Option parser - * - * Copyright (C) 2004 Anders Carlsson - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_OPTION_H__ -#define __G_OPTION_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * GOptionContext: - * - * A GOptionContext struct defines which options - * are accepted by the commandline option parser. The struct has only private - * fields and should not be directly accessed. - */ -typedef struct _GOptionContext GOptionContext; - -/** - * GOptionGroup: - * - * A GOptionGroup struct defines the options in a single - * group. The struct has only private fields and should not be directly accessed. - * - * All options in a group share the same translation function. Libraries which - * need to parse commandline options are expected to provide a function for - * getting a GOptionGroup holding their options, which - * the application can then add to its #GOptionContext. - */ -typedef struct _GOptionGroup GOptionGroup; -typedef struct _GOptionEntry GOptionEntry; - -/** - * GOptionFlags: - * @G_OPTION_FLAG_HIDDEN: The option doesn't appear in - * output. - * @G_OPTION_FLAG_IN_MAIN: The option appears in the main section of the - * output, even if it is defined in a group. - * @G_OPTION_FLAG_REVERSE: For options of the %G_OPTION_ARG_NONE kind, this flag - * indicates that the sense of the option is reversed. - * @G_OPTION_FLAG_NO_ARG: For options of the %G_OPTION_ARG_CALLBACK kind, - * this flag indicates that the callback does not take any argument - * (like a %G_OPTION_ARG_NONE option). Since 2.8 - * @G_OPTION_FLAG_FILENAME: For options of the %G_OPTION_ARG_CALLBACK - * kind, this flag indicates that the argument should be passed to the - * callback in the GLib filename encoding rather than UTF-8. Since 2.8 - * @G_OPTION_FLAG_OPTIONAL_ARG: For options of the %G_OPTION_ARG_CALLBACK - * kind, this flag indicates that the argument supply is optional. If no argument - * is given then data of %GOptionParseFunc will be set to NULL. Since 2.8 - * @G_OPTION_FLAG_NOALIAS: This flag turns off the automatic conflict resolution - * which prefixes long option names with groupname- if - * there is a conflict. This option should only be used in situations where - * aliasing is necessary to model some legacy commandline interface. It is - * not safe to use this option, unless all option groups are under your - * direct control. Since 2.8. - * - * Flags which modify individual options. - */ -typedef enum -{ - G_OPTION_FLAG_HIDDEN = 1 << 0, - G_OPTION_FLAG_IN_MAIN = 1 << 1, - G_OPTION_FLAG_REVERSE = 1 << 2, - G_OPTION_FLAG_NO_ARG = 1 << 3, - G_OPTION_FLAG_FILENAME = 1 << 4, - G_OPTION_FLAG_OPTIONAL_ARG = 1 << 5, - G_OPTION_FLAG_NOALIAS = 1 << 6 -} GOptionFlags; - -/** - * GOptionArg: - * @G_OPTION_ARG_NONE: No extra argument. This is useful for simple flags. - * @G_OPTION_ARG_STRING: The option takes a string argument. - * @G_OPTION_ARG_INT: The option takes an integer argument. - * @G_OPTION_ARG_CALLBACK: The option provides a callback to parse the - * extra argument. - * @G_OPTION_ARG_FILENAME: The option takes a filename as argument. - * @G_OPTION_ARG_STRING_ARRAY: The option takes a string argument, multiple - * uses of the option are collected into an array of strings. - * @G_OPTION_ARG_FILENAME_ARRAY: The option takes a filename as argument, - * multiple uses of the option are collected into an array of strings. - * @G_OPTION_ARG_DOUBLE: The option takes a double argument. The argument - * can be formatted either for the user's locale or for the "C" locale. Since 2.12 - * @G_OPTION_ARG_INT64: The option takes a 64-bit integer. Like %G_OPTION_ARG_INT - * but for larger numbers. The number can be in decimal base, or in hexadecimal - * (when prefixed with 0x, for example, 0xffffffff). - * Since 2.12 - * - * The #GOptionArg enum values determine which type of extra argument the - * options expect to find. If an option expects an extra argument, it - * can be specified in several ways; with a short option: - * , with a long option: - * or combined in a single argument: . - */ -typedef enum -{ - G_OPTION_ARG_NONE, - G_OPTION_ARG_STRING, - G_OPTION_ARG_INT, - G_OPTION_ARG_CALLBACK, - G_OPTION_ARG_FILENAME, - G_OPTION_ARG_STRING_ARRAY, - G_OPTION_ARG_FILENAME_ARRAY, - G_OPTION_ARG_DOUBLE, - G_OPTION_ARG_INT64 -} GOptionArg; - -/** - * GOptionArgFunc: - * @option_name: The name of the option being parsed. This will be either a - * single dash followed by a single letter (for a short name) or two dashes - * followed by a long option name. - * @value: The value to be parsed. - * @data: User data added to the #GOptionGroup containing the option when it - * was created with g_option_group_new() - * @error: A return location for errors. The error code %G_OPTION_ERROR_FAILED - * is intended to be used for errors in #GOptionArgFunc callbacks. - * - * The type of function to be passed as callback for %G_OPTION_ARG_CALLBACK - * options. - * - * Returns: %TRUE if the option was successfully parsed, %FALSE if an error - * occurred, in which case @error should be set with g_set_error() - */ -typedef gboolean (*GOptionArgFunc) (const gchar *option_name, - const gchar *value, - gpointer data, - GError **error); - -/** - * GOptionParseFunc: - * @context: The active #GOptionContext - * @group: The group to which the function belongs - * @data: User data added to the #GOptionGroup containing the option when it - * was created with g_option_group_new() - * @error: A return location for error details - * - * The type of function that can be called before and after parsing. - * - * Returns: %TRUE if the function completed successfully, %FALSE if an error - * occurred, in which case @error should be set with g_set_error() - */ -typedef gboolean (*GOptionParseFunc) (GOptionContext *context, - GOptionGroup *group, - gpointer data, - GError **error); - -/** - * GOptionErrorFunc: - * @context: The active #GOptionContext - * @group: The group to which the function belongs - * @data: User data added to the #GOptionGroup containing the option when it - * was created with g_option_group_new() - * @error: The #GError containing details about the parse error - * - * The type of function to be used as callback when a parse error occurs. - */ -typedef void (*GOptionErrorFunc) (GOptionContext *context, - GOptionGroup *group, - gpointer data, - GError **error); - -/** - * G_OPTION_ERROR: - * - * Error domain for option parsing. Errors in this domain will - * be from the #GOptionError enumeration. See #GError for information on - * error domains. - */ -#define G_OPTION_ERROR (g_option_error_quark ()) - -/** - * GOptionError: - * @G_OPTION_ERROR_UNKNOWN_OPTION: An option was not known to the parser. - * This error will only be reported, if the parser hasn't been instructed - * to ignore unknown options, see g_option_context_set_ignore_unknown_options(). - * @G_OPTION_ERROR_BAD_VALUE: A value couldn't be parsed. - * @G_OPTION_ERROR_FAILED: A #GOptionArgFunc callback failed. - * - * Error codes returned by option parsing. - */ -typedef enum -{ - G_OPTION_ERROR_UNKNOWN_OPTION, - G_OPTION_ERROR_BAD_VALUE, - G_OPTION_ERROR_FAILED -} GOptionError; - -GLIB_AVAILABLE_IN_ALL -GQuark g_option_error_quark (void); - -/** - * GOptionEntry: - * @long_name: The long name of an option can be used to specify it - * in a commandline as --long_name. Every - * option must have a long name. To resolve conflicts if multiple - * option groups contain the same long name, it is also possible to - * specify the option as - * --groupname-long_name. - * @short_name: If an option has a short name, it can be specified - * -short_name in a commandline. @short_name must be - * a printable ASCII character different from '-', or zero if the option has no - * short name. - * @flags: Flags from #GOptionFlags. - * @arg: The type of the option, as a #GOptionArg. - * @arg_data: If the @arg type is %G_OPTION_ARG_CALLBACK, then @arg_data must - * point to a #GOptionArgFunc callback function, which will be called to handle - * the extra argument. Otherwise, @arg_data is a pointer to a location to store - * the value, the required type of the location depends on the @arg type: - * - * - * %G_OPTION_ARG_NONE - * %gboolean - * - * - * %G_OPTION_ARG_STRING - * %gchar* - * - * - * %G_OPTION_ARG_INT - * %gint - * - * - * %G_OPTION_ARG_FILENAME - * %gchar* - * - * - * %G_OPTION_ARG_STRING_ARRAY - * %gchar** - * - * - * %G_OPTION_ARG_FILENAME_ARRAY - * %gchar** - * - * - * %G_OPTION_ARG_DOUBLE - * %gdouble - * - * - * If @arg type is %G_OPTION_ARG_STRING or %G_OPTION_ARG_FILENAME the location - * will contain a newly allocated string if the option was given. That string - * needs to be freed by the callee using g_free(). Likewise if @arg type is - * %G_OPTION_ARG_STRING_ARRAY or %G_OPTION_ARG_FILENAME_ARRAY, the data should - * be freed using g_strfreev(). - * @description: the description for the option in - * output. The @description is translated using the @translate_func of the - * group, see g_option_group_set_translation_domain(). - * @arg_description: The placeholder to use for the extra argument parsed - * by the option in - * output. The @arg_description is translated using the @translate_func of the - * group, see g_option_group_set_translation_domain(). - * - * A GOptionEntry defines a single option. - * To have an effect, they must be added to a #GOptionGroup with - * g_option_context_add_main_entries() or g_option_group_add_entries(). - */ -struct _GOptionEntry -{ - const gchar *long_name; - gchar short_name; - gint flags; - - GOptionArg arg; - gpointer arg_data; - - const gchar *description; - const gchar *arg_description; -}; - -/** - * G_OPTION_REMAINING: - * - * If a long option in the main group has this name, it is not treated as a - * regular option. Instead it collects all non-option arguments which would - * otherwise be left in argv. The option must be of type - * %G_OPTION_ARG_CALLBACK, %G_OPTION_ARG_STRING_ARRAY - * or %G_OPTION_ARG_FILENAME_ARRAY. - * - * - * Using #G_OPTION_REMAINING instead of simply scanning argv - * for leftover arguments has the advantage that GOption takes care of - * necessary encoding conversions for strings or filenames. - * - * Since: 2.6 - */ -#define G_OPTION_REMAINING "" - -GLIB_AVAILABLE_IN_ALL -GOptionContext *g_option_context_new (const gchar *parameter_string); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_summary (GOptionContext *context, - const gchar *summary); -GLIB_AVAILABLE_IN_ALL -const gchar * g_option_context_get_summary (GOptionContext *context); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_description (GOptionContext *context, - const gchar *description); -GLIB_AVAILABLE_IN_ALL -const gchar * g_option_context_get_description (GOptionContext *context); -GLIB_AVAILABLE_IN_ALL -void g_option_context_free (GOptionContext *context); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_help_enabled (GOptionContext *context, - gboolean help_enabled); -GLIB_AVAILABLE_IN_ALL -gboolean g_option_context_get_help_enabled (GOptionContext *context); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_ignore_unknown_options (GOptionContext *context, - gboolean ignore_unknown); -GLIB_AVAILABLE_IN_ALL -gboolean g_option_context_get_ignore_unknown_options (GOptionContext *context); - -GLIB_AVAILABLE_IN_ALL -void g_option_context_add_main_entries (GOptionContext *context, - const GOptionEntry *entries, - const gchar *translation_domain); -GLIB_AVAILABLE_IN_ALL -gboolean g_option_context_parse (GOptionContext *context, - gint *argc, - gchar ***argv, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_translate_func (GOptionContext *context, - GTranslateFunc func, - gpointer data, - GDestroyNotify destroy_notify); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_translation_domain (GOptionContext *context, - const gchar *domain); - -GLIB_AVAILABLE_IN_ALL -void g_option_context_add_group (GOptionContext *context, - GOptionGroup *group); -GLIB_AVAILABLE_IN_ALL -void g_option_context_set_main_group (GOptionContext *context, - GOptionGroup *group); -GLIB_AVAILABLE_IN_ALL -GOptionGroup *g_option_context_get_main_group (GOptionContext *context); -GLIB_AVAILABLE_IN_ALL -gchar *g_option_context_get_help (GOptionContext *context, - gboolean main_help, - GOptionGroup *group); - -GLIB_AVAILABLE_IN_ALL -GOptionGroup *g_option_group_new (const gchar *name, - const gchar *description, - const gchar *help_description, - gpointer user_data, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_ALL -void g_option_group_set_parse_hooks (GOptionGroup *group, - GOptionParseFunc pre_parse_func, - GOptionParseFunc post_parse_func); -GLIB_AVAILABLE_IN_ALL -void g_option_group_set_error_hook (GOptionGroup *group, - GOptionErrorFunc error_func); -GLIB_AVAILABLE_IN_ALL -void g_option_group_free (GOptionGroup *group); -GLIB_AVAILABLE_IN_ALL -void g_option_group_add_entries (GOptionGroup *group, - const GOptionEntry *entries); -GLIB_AVAILABLE_IN_ALL -void g_option_group_set_translate_func (GOptionGroup *group, - GTranslateFunc func, - gpointer data, - GDestroyNotify destroy_notify); -GLIB_AVAILABLE_IN_ALL -void g_option_group_set_translation_domain (GOptionGroup *group, - const gchar *domain); - -G_END_DECLS - -#endif /* __G_OPTION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpattern.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpattern.h deleted file mode 100644 index 956b003..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpattern.h +++ /dev/null @@ -1,55 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997, 1999 Peter Mattis, Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_PATTERN_H__ -#define __G_PATTERN_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -typedef struct _GPatternSpec GPatternSpec; - -GLIB_AVAILABLE_IN_ALL -GPatternSpec* g_pattern_spec_new (const gchar *pattern); -GLIB_AVAILABLE_IN_ALL -void g_pattern_spec_free (GPatternSpec *pspec); -GLIB_AVAILABLE_IN_ALL -gboolean g_pattern_spec_equal (GPatternSpec *pspec1, - GPatternSpec *pspec2); -GLIB_AVAILABLE_IN_ALL -gboolean g_pattern_match (GPatternSpec *pspec, - guint string_length, - const gchar *string, - const gchar *string_reversed); -GLIB_AVAILABLE_IN_ALL -gboolean g_pattern_match_string (GPatternSpec *pspec, - const gchar *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_pattern_match_simple (const gchar *pattern, - const gchar *string); - -G_END_DECLS - -#endif /* __G_PATTERN_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpoll.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpoll.h deleted file mode 100644 index 3ba8420..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gpoll.h +++ /dev/null @@ -1,121 +0,0 @@ -/* gpoll.h - poll(2) support - * Copyright (C) 2008 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_POLL_H__ -#define __G_POLL_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (__G_MAIN_H__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* Any definitions using GPollFD or GPollFunc are primarily - * for Unix and not guaranteed to be the compatible on all - * operating systems on which GLib runs. Right now, the - * GLib does use these functions on Win32 as well, but interprets - * them in a fairly different way than on Unix. If you use - * these definitions, you are should be prepared to recode - * for different operating systems. - * - * Note that on systems with a working poll(2), that function is used - * in place of g_poll(). Thus g_poll() must have the same signature as - * poll(), meaning GPollFD must have the same layout as struct pollfd. - * - * - * On Win32, the fd in a GPollFD should be Win32 HANDLE (*not* a file - * descriptor as provided by the C runtime) that can be used by - * MsgWaitForMultipleObjects. This does *not* include file handles - * from CreateFile, SOCKETs, nor pipe handles. (But you can use - * WSAEventSelect to signal events when a SOCKET is readable). - * - * On Win32, fd can also be the special value G_WIN32_MSG_HANDLE to - * indicate polling for messages. - * - * But note that G_WIN32_MSG_HANDLE GPollFDs should not be used by GDK - * (GTK) programs, as GDK itself wants to read messages and convert them - * to GDK events. - * - * So, unless you really know what you are doing, it's best not to try - * to use the main loop polling stuff for your own needs on - * Windows. - */ -typedef struct _GPollFD GPollFD; - -/** - * GPollFunc: - * @ufds: an array of #GPollFD elements - * @nfsd: the number of elements in @ufds - * @timeout_: the maximum time to wait for an event of the file descriptors. - * A negative value indicates an infinite timeout. - * - * Specifies the type of function passed to g_main_context_set_poll_func(). - * The semantics of the function should match those of the poll() system call. - * - * Returns: the number of #GPollFD elements which have events or errors - * reported, or -1 if an error occurred. - */ -typedef gint (*GPollFunc) (GPollFD *ufds, - guint nfsd, - gint timeout_); - -/** - * GPollFD: - * @fd: the file descriptor to poll (or a HANDLE on Win32) - * @events: a bitwise combination from #GIOCondition, specifying which - * events should be polled for. Typically for reading from a file - * descriptor you would use %G_IO_IN | %G_IO_HUP | %G_IO_ERR, and - * for writing you would use %G_IO_OUT | %G_IO_ERR. - * @revents: a bitwise combination of flags from #GIOCondition, returned - * from the poll() function to indicate which events occurred. - * - * Represents a file descriptor, which events to poll for, and which events - * occurred. - */ -struct _GPollFD -{ -#if defined (G_OS_WIN32) && GLIB_SIZEOF_VOID_P == 8 - gint64 fd; -#else - gint fd; -#endif - gushort events; - gushort revents; -}; - -#ifdef G_OS_WIN32 -#if GLIB_SIZEOF_VOID_P == 8 -#define G_POLLFD_FORMAT "%#I64x" -#else -#define G_POLLFD_FORMAT "%#x" -#endif -#else -#define G_POLLFD_FORMAT "%d" -#endif - -GLIB_AVAILABLE_IN_ALL -gint g_poll (GPollFD *fds, - guint nfds, - gint timeout); - -G_END_DECLS - -#endif /* __G_POLL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprimes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprimes.h deleted file mode 100644 index 536ace4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprimes.h +++ /dev/null @@ -1,52 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_PRIMES_H__ -#define __G_PRIMES_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* Prime numbers. - */ - -/* This function returns prime numbers spaced by approximately 1.5-2.0 - * and is for use in resizing data structures which prefer - * prime-valued sizes. The closest spaced prime function returns the - * next largest prime, or the highest it knows about which is about - * MAXINT/4. - */ -GLIB_AVAILABLE_IN_ALL -guint g_spaced_primes_closest (guint num) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_PRIMES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprintf.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprintf.h deleted file mode 100644 index 0b01cc4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gprintf.h +++ /dev/null @@ -1,59 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997, 2002 Peter Mattis, Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_PRINTF_H__ -#define __G_PRINTF_H__ - -#include -#include -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -gint g_printf (gchar const *format, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -gint g_fprintf (FILE *file, - gchar const *format, - ...) G_GNUC_PRINTF (2, 3); -GLIB_AVAILABLE_IN_ALL -gint g_sprintf (gchar *string, - gchar const *format, - ...) G_GNUC_PRINTF (2, 3); - -GLIB_AVAILABLE_IN_ALL -gint g_vprintf (gchar const *format, - va_list args) G_GNUC_PRINTF(1, 0); -GLIB_AVAILABLE_IN_ALL -gint g_vfprintf (FILE *file, - gchar const *format, - va_list args) G_GNUC_PRINTF(2, 0); -GLIB_AVAILABLE_IN_ALL -gint g_vsprintf (gchar *string, - gchar const *format, - va_list args) G_GNUC_PRINTF(2, 0); -GLIB_AVAILABLE_IN_ALL -gint g_vasprintf (gchar **string, - gchar const *format, - va_list args) G_GNUC_PRINTF(2, 0); - -G_END_DECLS - -#endif /* __G_PRINTF_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqsort.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqsort.h deleted file mode 100644 index c67d949..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqsort.h +++ /dev/null @@ -1,47 +0,0 @@ - /* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_QSORT_H__ -#define __G_QSORT_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -void g_qsort_with_data (gconstpointer pbase, - gint total_elems, - gsize size, - GCompareDataFunc compare_func, - gpointer user_data); - -G_END_DECLS - -#endif /* __G_QSORT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gquark.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gquark.h deleted file mode 100644 index 617dbd2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gquark.h +++ /dev/null @@ -1,70 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_QUARK_H__ -#define __G_QUARK_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef guint32 GQuark; - -/* Quarks (string<->id association) - */ -GLIB_AVAILABLE_IN_ALL -GQuark g_quark_try_string (const gchar *string); -GLIB_AVAILABLE_IN_ALL -GQuark g_quark_from_static_string (const gchar *string); -GLIB_AVAILABLE_IN_ALL -GQuark g_quark_from_string (const gchar *string); -GLIB_AVAILABLE_IN_ALL -const gchar * g_quark_to_string (GQuark quark) G_GNUC_CONST; - -#define G_DEFINE_QUARK(QN, q_n) \ -GQuark \ -q_n##_quark (void) \ -{ \ - static GQuark q; \ - \ - if G_UNLIKELY (q == 0) \ - q = g_quark_from_static_string (#QN); \ - \ - return q; \ -} - -GLIB_AVAILABLE_IN_ALL -const gchar * g_intern_string (const gchar *string); -GLIB_AVAILABLE_IN_ALL -const gchar * g_intern_static_string (const gchar *string); - -G_END_DECLS - -#endif /* __G_QUARK_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqueue.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqueue.h deleted file mode 100644 index 23536a4..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gqueue.h +++ /dev/null @@ -1,192 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_QUEUE_H__ -#define __G_QUEUE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GQueue GQueue; - -/** - * GQueue: - * @head: a pointer to the first element of the queue - * @tail: a pointer to the last element of the queue - * @length: the number of elements in the queue - * - * Contains the public fields of a - * Queue. - */ -struct _GQueue -{ - GList *head; - GList *tail; - guint length; -}; - -/** - * G_QUEUE_INIT: - * - * A statically-allocated #GQueue must be initialized with this - * macro before it can be used. This macro can be used to initialize - * a variable, but it cannot be assigned to a variable. In that case - * you have to use g_queue_init(). - * - * |[ - * GQueue my_queue = G_QUEUE_INIT; - * ]| - * - * Since: 2.14 - */ -#define G_QUEUE_INIT { NULL, NULL, 0 } - -/* Queues - */ -GLIB_AVAILABLE_IN_ALL -GQueue* g_queue_new (void); -GLIB_AVAILABLE_IN_ALL -void g_queue_free (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_queue_free_full (GQueue *queue, - GDestroyNotify free_func); -GLIB_AVAILABLE_IN_ALL -void g_queue_init (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_queue_clear (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -gboolean g_queue_is_empty (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -guint g_queue_get_length (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_queue_reverse (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -GQueue * g_queue_copy (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -void g_queue_foreach (GQueue *queue, - GFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GList * g_queue_find (GQueue *queue, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -GList * g_queue_find_custom (GQueue *queue, - gconstpointer data, - GCompareFunc func); -GLIB_AVAILABLE_IN_ALL -void g_queue_sort (GQueue *queue, - GCompareDataFunc compare_func, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -void g_queue_push_head (GQueue *queue, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_queue_push_tail (GQueue *queue, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_queue_push_nth (GQueue *queue, - gpointer data, - gint n); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_pop_head (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_pop_tail (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_pop_nth (GQueue *queue, - guint n); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_peek_head (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_peek_tail (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -gpointer g_queue_peek_nth (GQueue *queue, - guint n); -GLIB_AVAILABLE_IN_ALL -gint g_queue_index (GQueue *queue, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -gboolean g_queue_remove (GQueue *queue, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_queue_remove_all (GQueue *queue, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -void g_queue_insert_before (GQueue *queue, - GList *sibling, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_queue_insert_after (GQueue *queue, - GList *sibling, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_queue_insert_sorted (GQueue *queue, - gpointer data, - GCompareDataFunc func, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -void g_queue_push_head_link (GQueue *queue, - GList *link_); -GLIB_AVAILABLE_IN_ALL -void g_queue_push_tail_link (GQueue *queue, - GList *link_); -GLIB_AVAILABLE_IN_ALL -void g_queue_push_nth_link (GQueue *queue, - gint n, - GList *link_); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_pop_head_link (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_pop_tail_link (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_pop_nth_link (GQueue *queue, - guint n); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_peek_head_link (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_peek_tail_link (GQueue *queue); -GLIB_AVAILABLE_IN_ALL -GList* g_queue_peek_nth_link (GQueue *queue, - guint n); -GLIB_AVAILABLE_IN_ALL -gint g_queue_link_index (GQueue *queue, - GList *link_); -GLIB_AVAILABLE_IN_ALL -void g_queue_unlink (GQueue *queue, - GList *link_); -GLIB_AVAILABLE_IN_ALL -void g_queue_delete_link (GQueue *queue, - GList *link_); - -G_END_DECLS - -#endif /* __G_QUEUE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/grand.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/grand.h deleted file mode 100644 index b121e50..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/grand.h +++ /dev/null @@ -1,101 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_RAND_H__ -#define __G_RAND_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GRand GRand; - -/* GRand - a good and fast random number generator: Mersenne Twister - * see http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html for more info. - * The range functions return a value in the intervall [begin, end). - * int -> [0..2^32-1] - * int_range -> [begin..end-1] - * double -> [0..1) - * double_range -> [begin..end) - */ - -GLIB_AVAILABLE_IN_ALL -GRand* g_rand_new_with_seed (guint32 seed); -GLIB_AVAILABLE_IN_ALL -GRand* g_rand_new_with_seed_array (const guint32 *seed, - guint seed_length); -GLIB_AVAILABLE_IN_ALL -GRand* g_rand_new (void); -GLIB_AVAILABLE_IN_ALL -void g_rand_free (GRand *rand_); -GLIB_AVAILABLE_IN_ALL -GRand* g_rand_copy (GRand *rand_); -GLIB_AVAILABLE_IN_ALL -void g_rand_set_seed (GRand *rand_, - guint32 seed); -GLIB_AVAILABLE_IN_ALL -void g_rand_set_seed_array (GRand *rand_, - const guint32 *seed, - guint seed_length); - -#define g_rand_boolean(rand_) ((g_rand_int (rand_) & (1 << 15)) != 0) - -GLIB_AVAILABLE_IN_ALL -guint32 g_rand_int (GRand *rand_); -GLIB_AVAILABLE_IN_ALL -gint32 g_rand_int_range (GRand *rand_, - gint32 begin, - gint32 end); -GLIB_AVAILABLE_IN_ALL -gdouble g_rand_double (GRand *rand_); -GLIB_AVAILABLE_IN_ALL -gdouble g_rand_double_range (GRand *rand_, - gdouble begin, - gdouble end); -GLIB_AVAILABLE_IN_ALL -void g_random_set_seed (guint32 seed); - -#define g_random_boolean() ((g_random_int () & (1 << 15)) != 0) - -GLIB_AVAILABLE_IN_ALL -guint32 g_random_int (void); -GLIB_AVAILABLE_IN_ALL -gint32 g_random_int_range (gint32 begin, - gint32 end); -GLIB_AVAILABLE_IN_ALL -gdouble g_random_double (void); -GLIB_AVAILABLE_IN_ALL -gdouble g_random_double_range (gdouble begin, - gdouble end); - - -G_END_DECLS - -#endif /* __G_RAND_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gregex.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gregex.h deleted file mode 100644 index 77d9d04..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gregex.h +++ /dev/null @@ -1,603 +0,0 @@ -/* GRegex -- regular expression API wrapper around PCRE. - * - * Copyright (C) 1999, 2000 Scott Wimer - * Copyright (C) 2004, Matthias Clasen - * Copyright (C) 2005 - 2007, Marco Barisione - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef __G_REGEX_H__ -#define __G_REGEX_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * GRegexError: - * @G_REGEX_ERROR_COMPILE: Compilation of the regular expression failed. - * @G_REGEX_ERROR_OPTIMIZE: Optimization of the regular expression failed. - * @G_REGEX_ERROR_REPLACE: Replacement failed due to an ill-formed replacement - * string. - * @G_REGEX_ERROR_MATCH: The match process failed. - * @G_REGEX_ERROR_INTERNAL: Internal error of the regular expression engine. - * Since 2.16 - * @G_REGEX_ERROR_STRAY_BACKSLASH: "\\" at end of pattern. Since 2.16 - * @G_REGEX_ERROR_MISSING_CONTROL_CHAR: "\\c" at end of pattern. Since 2.16 - * @G_REGEX_ERROR_UNRECOGNIZED_ESCAPE: Unrecognized character follows "\\". - * Since 2.16 - * @G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER: Numbers out of order in "{}" - * quantifier. Since 2.16 - * @G_REGEX_ERROR_QUANTIFIER_TOO_BIG: Number too big in "{}" quantifier. - * Since 2.16 - * @G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS: Missing terminating "]" for - * character class. Since 2.16 - * @G_REGEX_ERROR_INVALID_ESCAPE_IN_CHARACTER_CLASS: Invalid escape sequence - * in character class. Since 2.16 - * @G_REGEX_ERROR_RANGE_OUT_OF_ORDER: Range out of order in character class. - * Since 2.16 - * @G_REGEX_ERROR_NOTHING_TO_REPEAT: Nothing to repeat. Since 2.16 - * @G_REGEX_ERROR_UNRECOGNIZED_CHARACTER: Unrecognized character after "(?", - * "(?<" or "(?P". Since 2.16 - * @G_REGEX_ERROR_POSIX_NAMED_CLASS_OUTSIDE_CLASS: POSIX named classes are - * supported only within a class. Since 2.16 - * @G_REGEX_ERROR_UNMATCHED_PARENTHESIS: Missing terminating ")" or ")" - * without opening "(". Since 2.16 - * @G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE: Reference to non-existent - * subpattern. Since 2.16 - * @G_REGEX_ERROR_UNTERMINATED_COMMENT: Missing terminating ")" after comment. - * Since 2.16 - * @G_REGEX_ERROR_EXPRESSION_TOO_LARGE: Regular expression too large. - * Since 2.16 - * @G_REGEX_ERROR_MEMORY_ERROR: Failed to get memory. Since 2.16 - * @G_REGEX_ERROR_VARIABLE_LENGTH_LOOKBEHIND: Lookbehind assertion is not - * fixed length. Since 2.16 - * @G_REGEX_ERROR_MALFORMED_CONDITION: Malformed number or name after "(?(". - * Since 2.16 - * @G_REGEX_ERROR_TOO_MANY_CONDITIONAL_BRANCHES: Conditional group contains - * more than two branches. Since 2.16 - * @G_REGEX_ERROR_ASSERTION_EXPECTED: Assertion expected after "(?(". - * Since 2.16 - * @G_REGEX_ERROR_UNKNOWN_POSIX_CLASS_NAME: Unknown POSIX class name. - * Since 2.16 - * @G_REGEX_ERROR_POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED: POSIX collating - * elements are not supported. Since 2.16 - * @G_REGEX_ERROR_HEX_CODE_TOO_LARGE: Character value in "\\x{...}" sequence - * is too large. Since 2.16 - * @G_REGEX_ERROR_INVALID_CONDITION: Invalid condition "(?(0)". Since 2.16 - * @G_REGEX_ERROR_SINGLE_BYTE_MATCH_IN_LOOKBEHIND: \\C not allowed in - * lookbehind assertion. Since 2.16 - * @G_REGEX_ERROR_INFINITE_LOOP: Recursive call could loop indefinitely. - * Since 2.16 - * @G_REGEX_ERROR_MISSING_SUBPATTERN_NAME_TERMINATOR: Missing terminator - * in subpattern name. Since 2.16 - * @G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME: Two named subpatterns have - * the same name. Since 2.16 - * @G_REGEX_ERROR_MALFORMED_PROPERTY: Malformed "\\P" or "\\p" sequence. - * Since 2.16 - * @G_REGEX_ERROR_UNKNOWN_PROPERTY: Unknown property name after "\\P" or - * "\\p". Since 2.16 - * @G_REGEX_ERROR_SUBPATTERN_NAME_TOO_LONG: Subpattern name is too long - * (maximum 32 characters). Since 2.16 - * @G_REGEX_ERROR_TOO_MANY_SUBPATTERNS: Too many named subpatterns (maximum - * 10,000). Since 2.16 - * @G_REGEX_ERROR_INVALID_OCTAL_VALUE: Octal value is greater than "\\377". - * Since 2.16 - * @G_REGEX_ERROR_TOO_MANY_BRANCHES_IN_DEFINE: "DEFINE" group contains more - * than one branch. Since 2.16 - * @G_REGEX_ERROR_DEFINE_REPETION: Repeating a "DEFINE" group is not allowed. - * This error is never raised. Since: 2.16 Deprecated: 2.34 - * @G_REGEX_ERROR_INCONSISTENT_NEWLINE_OPTIONS: Inconsistent newline options. - * Since 2.16 - * @G_REGEX_ERROR_MISSING_BACK_REFERENCE: "\\g" is not followed by a braced, - * angle-bracketed, or quoted name or number, or by a plain number. Since: 2.16 - * @G_REGEX_ERROR_INVALID_RELATIVE_REFERENCE: relative reference must not be zero. Since: 2.34 - * @G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_FORBIDDEN: the backtracing - * control verb used does not allow an argument. Since: 2.34 - * @G_REGEX_ERROR_UNKNOWN_BACKTRACKING_CONTROL_VERB: unknown backtracing - * control verb. Since: 2.34 - * @G_REGEX_ERROR_NUMBER_TOO_BIG: number is too big in escape sequence. Since: 2.34 - * @G_REGEX_ERROR_MISSING_SUBPATTERN_NAME: Missing subpattern name. Since: 2.34 - * @G_REGEX_ERROR_MISSING_DIGIT: Missing digit. Since 2.34 - * @G_REGEX_ERROR_INVALID_DATA_CHARACTER: In JavaScript compatibility mode, - * "[" is an invalid data character. Since: 2.34 - * @G_REGEX_ERROR_EXTRA_SUBPATTERN_NAME: different names for subpatterns of the - * same number are not allowed. Since: 2.34 - * @G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_REQUIRED: the backtracing control - * verb requires an argument. Since: 2.34 - * @G_REGEX_ERROR_INVALID_CONTROL_CHAR: "\\c" must be followed by an ASCII - * character. Since: 2.34 - * @G_REGEX_ERROR_MISSING_NAME: "\\k" is not followed by a braced, angle-bracketed, or - * quoted name. Since: 2.34 - * @G_REGEX_ERROR_NOT_SUPPORTED_IN_CLASS: "\\N" is not supported in a class. Since: 2.34 - * @G_REGEX_ERROR_TOO_MANY_FORWARD_REFERENCES: too many forward references. Since: 2.34 - * @G_REGEX_ERROR_NAME_TOO_LONG: the name is too long in "(*MARK)", "(*PRUNE)", - * "(*SKIP)", or "(*THEN)". Since: 2.34 - * @G_REGEX_ERROR_CHARACTER_VALUE_TOO_LARGE: the character value in the \\u sequence is - * too large. Since: 2.34 - * - * Error codes returned by regular expressions functions. - * - * Since: 2.14 - */ -typedef enum -{ - G_REGEX_ERROR_COMPILE, - G_REGEX_ERROR_OPTIMIZE, - G_REGEX_ERROR_REPLACE, - G_REGEX_ERROR_MATCH, - G_REGEX_ERROR_INTERNAL, - - /* These are the error codes from PCRE + 100 */ - G_REGEX_ERROR_STRAY_BACKSLASH = 101, - G_REGEX_ERROR_MISSING_CONTROL_CHAR = 102, - G_REGEX_ERROR_UNRECOGNIZED_ESCAPE = 103, - G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER = 104, - G_REGEX_ERROR_QUANTIFIER_TOO_BIG = 105, - G_REGEX_ERROR_UNTERMINATED_CHARACTER_CLASS = 106, - G_REGEX_ERROR_INVALID_ESCAPE_IN_CHARACTER_CLASS = 107, - G_REGEX_ERROR_RANGE_OUT_OF_ORDER = 108, - G_REGEX_ERROR_NOTHING_TO_REPEAT = 109, - G_REGEX_ERROR_UNRECOGNIZED_CHARACTER = 112, - G_REGEX_ERROR_POSIX_NAMED_CLASS_OUTSIDE_CLASS = 113, - G_REGEX_ERROR_UNMATCHED_PARENTHESIS = 114, - G_REGEX_ERROR_INEXISTENT_SUBPATTERN_REFERENCE = 115, - G_REGEX_ERROR_UNTERMINATED_COMMENT = 118, - G_REGEX_ERROR_EXPRESSION_TOO_LARGE = 120, - G_REGEX_ERROR_MEMORY_ERROR = 121, - G_REGEX_ERROR_VARIABLE_LENGTH_LOOKBEHIND = 125, - G_REGEX_ERROR_MALFORMED_CONDITION = 126, - G_REGEX_ERROR_TOO_MANY_CONDITIONAL_BRANCHES = 127, - G_REGEX_ERROR_ASSERTION_EXPECTED = 128, - G_REGEX_ERROR_UNKNOWN_POSIX_CLASS_NAME = 130, - G_REGEX_ERROR_POSIX_COLLATING_ELEMENTS_NOT_SUPPORTED = 131, - G_REGEX_ERROR_HEX_CODE_TOO_LARGE = 134, - G_REGEX_ERROR_INVALID_CONDITION = 135, - G_REGEX_ERROR_SINGLE_BYTE_MATCH_IN_LOOKBEHIND = 136, - G_REGEX_ERROR_INFINITE_LOOP = 140, - G_REGEX_ERROR_MISSING_SUBPATTERN_NAME_TERMINATOR = 142, - G_REGEX_ERROR_DUPLICATE_SUBPATTERN_NAME = 143, - G_REGEX_ERROR_MALFORMED_PROPERTY = 146, - G_REGEX_ERROR_UNKNOWN_PROPERTY = 147, - G_REGEX_ERROR_SUBPATTERN_NAME_TOO_LONG = 148, - G_REGEX_ERROR_TOO_MANY_SUBPATTERNS = 149, - G_REGEX_ERROR_INVALID_OCTAL_VALUE = 151, - G_REGEX_ERROR_TOO_MANY_BRANCHES_IN_DEFINE = 154, - G_REGEX_ERROR_DEFINE_REPETION = 155, - G_REGEX_ERROR_INCONSISTENT_NEWLINE_OPTIONS = 156, - G_REGEX_ERROR_MISSING_BACK_REFERENCE = 157, - G_REGEX_ERROR_INVALID_RELATIVE_REFERENCE = 158, - G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_FORBIDDEN = 159, - G_REGEX_ERROR_UNKNOWN_BACKTRACKING_CONTROL_VERB = 160, - G_REGEX_ERROR_NUMBER_TOO_BIG = 161, - G_REGEX_ERROR_MISSING_SUBPATTERN_NAME = 162, - G_REGEX_ERROR_MISSING_DIGIT = 163, - G_REGEX_ERROR_INVALID_DATA_CHARACTER = 164, - G_REGEX_ERROR_EXTRA_SUBPATTERN_NAME = 165, - G_REGEX_ERROR_BACKTRACKING_CONTROL_VERB_ARGUMENT_REQUIRED = 166, - G_REGEX_ERROR_INVALID_CONTROL_CHAR = 168, - G_REGEX_ERROR_MISSING_NAME = 169, - G_REGEX_ERROR_NOT_SUPPORTED_IN_CLASS = 171, - G_REGEX_ERROR_TOO_MANY_FORWARD_REFERENCES = 172, - G_REGEX_ERROR_NAME_TOO_LONG = 175, - G_REGEX_ERROR_CHARACTER_VALUE_TOO_LARGE = 176 -} GRegexError; - -/** - * G_REGEX_ERROR: - * - * Error domain for regular expressions. Errors in this domain will be - * from the #GRegexError enumeration. See #GError for information on - * error domains. - * - * Since: 2.14 - */ -#define G_REGEX_ERROR g_regex_error_quark () - -GLIB_AVAILABLE_IN_ALL -GQuark g_regex_error_quark (void); - -/** - * GRegexCompileFlags: - * @G_REGEX_CASELESS: Letters in the pattern match both upper- and - * lowercase letters. This option can be changed within a pattern - * by a "(?i)" option setting. - * @G_REGEX_MULTILINE: By default, GRegex treats the strings as consisting - * of a single line of characters (even if it actually contains - * newlines). The "start of line" metacharacter ("^") matches only - * at the start of the string, while the "end of line" metacharacter - * ("$") matches only at the end of the string, or before a terminating - * newline (unless #G_REGEX_DOLLAR_ENDONLY is set). When - * #G_REGEX_MULTILINE is set, the "start of line" and "end of line" - * constructs match immediately following or immediately before any - * newline in the string, respectively, as well as at the very start - * and end. This can be changed within a pattern by a "(?m)" option - * setting. - * @G_REGEX_DOTALL: A dot metacharater (".") in the pattern matches all - * characters, including newlines. Without it, newlines are excluded. - * This option can be changed within a pattern by a ("?s") option setting. - * @G_REGEX_EXTENDED: Whitespace data characters in the pattern are - * totally ignored except when escaped or inside a character class. - * Whitespace does not include the VT character (code 11). In addition, - * characters between an unescaped "#" outside a character class and - * the next newline character, inclusive, are also ignored. This can - * be changed within a pattern by a "(?x)" option setting. - * @G_REGEX_ANCHORED: The pattern is forced to be "anchored", that is, - * it is constrained to match only at the first matching point in the - * string that is being searched. This effect can also be achieved by - * appropriate constructs in the pattern itself such as the "^" - * metacharater. - * @G_REGEX_DOLLAR_ENDONLY: A dollar metacharacter ("$") in the pattern - * matches only at the end of the string. Without this option, a - * dollar also matches immediately before the final character if - * it is a newline (but not before any other newlines). This option - * is ignored if #G_REGEX_MULTILINE is set. - * @G_REGEX_UNGREEDY: Inverts the "greediness" of the quantifiers so that - * they are not greedy by default, but become greedy if followed by "?". - * It can also be set by a "(?U)" option setting within the pattern. - * @G_REGEX_RAW: Usually strings must be valid UTF-8 strings, using this - * flag they are considered as a raw sequence of bytes. - * @G_REGEX_NO_AUTO_CAPTURE: Disables the use of numbered capturing - * parentheses in the pattern. Any opening parenthesis that is not - * followed by "?" behaves as if it were followed by "?:" but named - * parentheses can still be used for capturing (and they acquire numbers - * in the usual way). - * @G_REGEX_OPTIMIZE: Optimize the regular expression. If the pattern will - * be used many times, then it may be worth the effort to optimize it - * to improve the speed of matches. - * @G_REGEX_FIRSTLINE: Limits an unanchored pattern to match before (or at) the - * first newline. Since: 2.34 - * @G_REGEX_DUPNAMES: Names used to identify capturing subpatterns need not - * be unique. This can be helpful for certain types of pattern when it - * is known that only one instance of the named subpattern can ever be - * matched. - * @G_REGEX_NEWLINE_CR: Usually any newline character or character sequence is - * recognized. If this option is set, the only recognized newline character - * is '\r'. - * @G_REGEX_NEWLINE_LF: Usually any newline character or character sequence is - * recognized. If this option is set, the only recognized newline character - * is '\n'. - * @G_REGEX_NEWLINE_CRLF: Usually any newline character or character sequence is - * recognized. If this option is set, the only recognized newline character - * sequence is '\r\n'. - * @G_REGEX_NEWLINE_ANYCRLF: Usually any newline character or character sequence - * is recognized. If this option is set, the only recognized newline character - * sequences are '\r', '\n', and '\r\n'. Since: 2.34 - * @G_REGEX_BSR_ANYCRLF: Usually any newline character or character sequence - * is recognised. If this option is set, then "\R" only recognizes the newline - * characters '\r', '\n' and '\r\n'. Since: 2.34 - * @G_REGEX_JAVASCRIPT_COMPAT: Changes behaviour so that it is compatible with - * JavaScript rather than PCRE. Since: 2.34 - * - * Flags specifying compile-time options. - * - * Since: 2.14 - */ -/* Remember to update G_REGEX_COMPILE_MASK in gregex.c after - * adding a new flag. */ -typedef enum -{ - G_REGEX_CASELESS = 1 << 0, - G_REGEX_MULTILINE = 1 << 1, - G_REGEX_DOTALL = 1 << 2, - G_REGEX_EXTENDED = 1 << 3, - G_REGEX_ANCHORED = 1 << 4, - G_REGEX_DOLLAR_ENDONLY = 1 << 5, - G_REGEX_UNGREEDY = 1 << 9, - G_REGEX_RAW = 1 << 11, - G_REGEX_NO_AUTO_CAPTURE = 1 << 12, - G_REGEX_OPTIMIZE = 1 << 13, - G_REGEX_FIRSTLINE = 1 << 18, - G_REGEX_DUPNAMES = 1 << 19, - G_REGEX_NEWLINE_CR = 1 << 20, - G_REGEX_NEWLINE_LF = 1 << 21, - G_REGEX_NEWLINE_CRLF = G_REGEX_NEWLINE_CR | G_REGEX_NEWLINE_LF, - G_REGEX_NEWLINE_ANYCRLF = G_REGEX_NEWLINE_CR | 1 << 22, - G_REGEX_BSR_ANYCRLF = 1 << 23, - G_REGEX_JAVASCRIPT_COMPAT = 1 << 25 -} GRegexCompileFlags; - -/** - * GRegexMatchFlags: - * @G_REGEX_MATCH_ANCHORED: The pattern is forced to be "anchored", that is, - * it is constrained to match only at the first matching point in the - * string that is being searched. This effect can also be achieved by - * appropriate constructs in the pattern itself such as the "^" - * metacharater. - * @G_REGEX_MATCH_NOTBOL: Specifies that first character of the string is - * not the beginning of a line, so the circumflex metacharacter should - * not match before it. Setting this without #G_REGEX_MULTILINE (at - * compile time) causes circumflex never to match. This option affects - * only the behaviour of the circumflex metacharacter, it does not - * affect "\A". - * @G_REGEX_MATCH_NOTEOL: Specifies that the end of the subject string is - * not the end of a line, so the dollar metacharacter should not match - * it nor (except in multiline mode) a newline immediately before it. - * Setting this without #G_REGEX_MULTILINE (at compile time) causes - * dollar never to match. This option affects only the behaviour of - * the dollar metacharacter, it does not affect "\Z" or "\z". - * @G_REGEX_MATCH_NOTEMPTY: An empty string is not considered to be a valid - * match if this option is set. If there are alternatives in the pattern, - * they are tried. If all the alternatives match the empty string, the - * entire match fails. For example, if the pattern "a?b?" is applied to - * a string not beginning with "a" or "b", it matches the empty string - * at the start of the string. With this flag set, this match is not - * valid, so GRegex searches further into the string for occurrences - * of "a" or "b". - * @G_REGEX_MATCH_PARTIAL: Turns on the partial matching feature, for more - * documentation on partial matching see g_match_info_is_partial_match(). - * @G_REGEX_MATCH_NEWLINE_CR: Overrides the newline definition set when - * creating a new #GRegex, setting the '\r' character as line terminator. - * @G_REGEX_MATCH_NEWLINE_LF: Overrides the newline definition set when - * creating a new #GRegex, setting the '\n' character as line terminator. - * @G_REGEX_MATCH_NEWLINE_CRLF: Overrides the newline definition set when - * creating a new #GRegex, setting the '\r\n' characters sequence as line terminator. - * @G_REGEX_MATCH_NEWLINE_ANY: Overrides the newline definition set when - * creating a new #GRegex, any Unicode newline sequence - * is recognised as a newline. These are '\r', '\n' and '\rn', and the - * single characters U+000B LINE TABULATION, U+000C FORM FEED (FF), - * U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and - * U+2029 PARAGRAPH SEPARATOR. - * @G_REGEX_MATCH_NEWLINE_ANYCRLF: Overrides the newline definition set when - * creating a new #GRegex; any '\r', '\n', or '\r\n' character sequence - * is recognized as a newline. Since: 2.34 - * @G_REGEX_MATCH_BSR_ANYCRLF: Overrides the newline definition for "\R" set when - * creating a new #GRegex; only '\r', '\n', or '\r\n' character sequences - * are recognized as a newline by "\R". Since: 2.34 - * @G_REGEX_MATCH_BSR_ANY: Overrides the newline definition for "\R" set when - * creating a new #GRegex; any Unicode newline character or character sequence - * are recognized as a newline by "\R". These are '\r', '\n' and '\rn', and the - * single characters U+000B LINE TABULATION, U+000C FORM FEED (FF), - * U+0085 NEXT LINE (NEL), U+2028 LINE SEPARATOR and - * U+2029 PARAGRAPH SEPARATOR. Since: 2.34 - * @G_REGEX_MATCH_PARTIAL_SOFT: An alias for #G_REGEX_MATCH_PARTIAL. Since: 2.34 - * @G_REGEX_MATCH_PARTIAL_HARD: Turns on the partial matching feature. In contrast to - * to #G_REGEX_MATCH_PARTIAL_SOFT, this stops matching as soon as a partial match - * is found, without continuing to search for a possible complete match. See - * g_match_info_is_partial_match() for more information. Since: 2.34 - * @G_REGEX_MATCH_NOTEMPTY_ATSTART: Like #G_REGEX_MATCH_NOTEMPTY, but only applied to - * the start of the matched string. For anchored - * patterns this can only happen for pattern containing "\K". Since: 2.34 - * - * Flags specifying match-time options. - * - * Since: 2.14 - */ -/* Remember to update G_REGEX_MATCH_MASK in gregex.c after - * adding a new flag. */ -typedef enum -{ - G_REGEX_MATCH_ANCHORED = 1 << 4, - G_REGEX_MATCH_NOTBOL = 1 << 7, - G_REGEX_MATCH_NOTEOL = 1 << 8, - G_REGEX_MATCH_NOTEMPTY = 1 << 10, - G_REGEX_MATCH_PARTIAL = 1 << 15, - G_REGEX_MATCH_NEWLINE_CR = 1 << 20, - G_REGEX_MATCH_NEWLINE_LF = 1 << 21, - G_REGEX_MATCH_NEWLINE_CRLF = G_REGEX_MATCH_NEWLINE_CR | G_REGEX_MATCH_NEWLINE_LF, - G_REGEX_MATCH_NEWLINE_ANY = 1 << 22, - G_REGEX_MATCH_NEWLINE_ANYCRLF = G_REGEX_MATCH_NEWLINE_CR | G_REGEX_MATCH_NEWLINE_ANY, - G_REGEX_MATCH_BSR_ANYCRLF = 1 << 23, - G_REGEX_MATCH_BSR_ANY = 1 << 24, - G_REGEX_MATCH_PARTIAL_SOFT = G_REGEX_MATCH_PARTIAL, - G_REGEX_MATCH_PARTIAL_HARD = 1 << 27, - G_REGEX_MATCH_NOTEMPTY_ATSTART = 1 << 28 -} GRegexMatchFlags; - -/** - * GRegex: - * - * A GRegex is the "compiled" form of a regular expression pattern. This - * structure is opaque and its fields cannot be accessed directly. - * - * Since: 2.14 - */ -typedef struct _GRegex GRegex; - - -typedef struct _GMatchInfo GMatchInfo; - -/** - * GRegexEvalCallback: - * @match_info: the #GMatchInfo generated by the match. - * Use g_match_info_get_regex() and g_match_info_get_string() if you - * need the #GRegex or the matched string. - * @result: a #GString containing the new string - * @user_data: user data passed to g_regex_replace_eval() - * - * Specifies the type of the function passed to g_regex_replace_eval(). - * It is called for each occurrence of the pattern in the string passed - * to g_regex_replace_eval(), and it should append the replacement to - * @result. - * - * Returns: %FALSE to continue the replacement process, %TRUE to stop it - * - * Since: 2.14 - */ -typedef gboolean (*GRegexEvalCallback) (const GMatchInfo *match_info, - GString *result, - gpointer user_data); - - -GLIB_AVAILABLE_IN_ALL -GRegex *g_regex_new (const gchar *pattern, - GRegexCompileFlags compile_options, - GRegexMatchFlags match_options, - GError **error); -GLIB_AVAILABLE_IN_ALL -GRegex *g_regex_ref (GRegex *regex); -GLIB_AVAILABLE_IN_ALL -void g_regex_unref (GRegex *regex); -GLIB_AVAILABLE_IN_ALL -const gchar *g_regex_get_pattern (const GRegex *regex); -GLIB_AVAILABLE_IN_ALL -gint g_regex_get_max_backref (const GRegex *regex); -GLIB_AVAILABLE_IN_ALL -gint g_regex_get_capture_count (const GRegex *regex); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_get_has_cr_or_lf (const GRegex *regex); -GLIB_AVAILABLE_IN_2_38 -gint g_regex_get_max_lookbehind (const GRegex *regex); -GLIB_AVAILABLE_IN_ALL -gint g_regex_get_string_number (const GRegex *regex, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -gchar *g_regex_escape_string (const gchar *string, - gint length); -GLIB_AVAILABLE_IN_ALL -gchar *g_regex_escape_nul (const gchar *string, - gint length); - -GLIB_AVAILABLE_IN_ALL -GRegexCompileFlags g_regex_get_compile_flags (const GRegex *regex); -GLIB_AVAILABLE_IN_ALL -GRegexMatchFlags g_regex_get_match_flags (const GRegex *regex); - -/* Matching. */ -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_match_simple (const gchar *pattern, - const gchar *string, - GRegexCompileFlags compile_options, - GRegexMatchFlags match_options); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_match (const GRegex *regex, - const gchar *string, - GRegexMatchFlags match_options, - GMatchInfo **match_info); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_match_full (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - GRegexMatchFlags match_options, - GMatchInfo **match_info, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_match_all (const GRegex *regex, - const gchar *string, - GRegexMatchFlags match_options, - GMatchInfo **match_info); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_match_all_full (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - GRegexMatchFlags match_options, - GMatchInfo **match_info, - GError **error); - -/* String splitting. */ -GLIB_AVAILABLE_IN_ALL -gchar **g_regex_split_simple (const gchar *pattern, - const gchar *string, - GRegexCompileFlags compile_options, - GRegexMatchFlags match_options); -GLIB_AVAILABLE_IN_ALL -gchar **g_regex_split (const GRegex *regex, - const gchar *string, - GRegexMatchFlags match_options); -GLIB_AVAILABLE_IN_ALL -gchar **g_regex_split_full (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - GRegexMatchFlags match_options, - gint max_tokens, - GError **error); - -/* String replacement. */ -GLIB_AVAILABLE_IN_ALL -gchar *g_regex_replace (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - const gchar *replacement, - GRegexMatchFlags match_options, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_regex_replace_literal (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - const gchar *replacement, - GRegexMatchFlags match_options, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_regex_replace_eval (const GRegex *regex, - const gchar *string, - gssize string_len, - gint start_position, - GRegexMatchFlags match_options, - GRegexEvalCallback eval, - gpointer user_data, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_regex_check_replacement (const gchar *replacement, - gboolean *has_references, - GError **error); - -/* Match info */ -GLIB_AVAILABLE_IN_ALL -GRegex *g_match_info_get_regex (const GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -const gchar *g_match_info_get_string (const GMatchInfo *match_info); - -GLIB_AVAILABLE_IN_ALL -GMatchInfo *g_match_info_ref (GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -void g_match_info_unref (GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -void g_match_info_free (GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -gboolean g_match_info_next (GMatchInfo *match_info, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_match_info_matches (const GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -gint g_match_info_get_match_count (const GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -gboolean g_match_info_is_partial_match (const GMatchInfo *match_info); -GLIB_AVAILABLE_IN_ALL -gchar *g_match_info_expand_references(const GMatchInfo *match_info, - const gchar *string_to_expand, - GError **error); -GLIB_AVAILABLE_IN_ALL -gchar *g_match_info_fetch (const GMatchInfo *match_info, - gint match_num); -GLIB_AVAILABLE_IN_ALL -gboolean g_match_info_fetch_pos (const GMatchInfo *match_info, - gint match_num, - gint *start_pos, - gint *end_pos); -GLIB_AVAILABLE_IN_ALL -gchar *g_match_info_fetch_named (const GMatchInfo *match_info, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -gboolean g_match_info_fetch_named_pos (const GMatchInfo *match_info, - const gchar *name, - gint *start_pos, - gint *end_pos); -GLIB_AVAILABLE_IN_ALL -gchar **g_match_info_fetch_all (const GMatchInfo *match_info); - -G_END_DECLS - -#endif /* __G_REGEX_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gscanner.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gscanner.h deleted file mode 100644 index 499d6e5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gscanner.h +++ /dev/null @@ -1,305 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_SCANNER_H__ -#define __G_SCANNER_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GScanner GScanner; -typedef struct _GScannerConfig GScannerConfig; -typedef union _GTokenValue GTokenValue; - -typedef void (*GScannerMsgFunc) (GScanner *scanner, - gchar *message, - gboolean error); - -/* GScanner: Flexible lexical scanner for general purpose. - */ - -/* Character sets */ -#define G_CSET_A_2_Z "ABCDEFGHIJKLMNOPQRSTUVWXYZ" -#define G_CSET_a_2_z "abcdefghijklmnopqrstuvwxyz" -#define G_CSET_DIGITS "0123456789" -#define G_CSET_LATINC "\300\301\302\303\304\305\306"\ - "\307\310\311\312\313\314\315\316\317\320"\ - "\321\322\323\324\325\326"\ - "\330\331\332\333\334\335\336" -#define G_CSET_LATINS "\337\340\341\342\343\344\345\346"\ - "\347\350\351\352\353\354\355\356\357\360"\ - "\361\362\363\364\365\366"\ - "\370\371\372\373\374\375\376\377" - -/* Error types */ -typedef enum -{ - G_ERR_UNKNOWN, - G_ERR_UNEXP_EOF, - G_ERR_UNEXP_EOF_IN_STRING, - G_ERR_UNEXP_EOF_IN_COMMENT, - G_ERR_NON_DIGIT_IN_CONST, - G_ERR_DIGIT_RADIX, - G_ERR_FLOAT_RADIX, - G_ERR_FLOAT_MALFORMED -} GErrorType; - -/* Token types */ -typedef enum -{ - G_TOKEN_EOF = 0, - - G_TOKEN_LEFT_PAREN = '(', - G_TOKEN_RIGHT_PAREN = ')', - G_TOKEN_LEFT_CURLY = '{', - G_TOKEN_RIGHT_CURLY = '}', - G_TOKEN_LEFT_BRACE = '[', - G_TOKEN_RIGHT_BRACE = ']', - G_TOKEN_EQUAL_SIGN = '=', - G_TOKEN_COMMA = ',', - - G_TOKEN_NONE = 256, - - G_TOKEN_ERROR, - - G_TOKEN_CHAR, - G_TOKEN_BINARY, - G_TOKEN_OCTAL, - G_TOKEN_INT, - G_TOKEN_HEX, - G_TOKEN_FLOAT, - G_TOKEN_STRING, - - G_TOKEN_SYMBOL, - G_TOKEN_IDENTIFIER, - G_TOKEN_IDENTIFIER_NULL, - - G_TOKEN_COMMENT_SINGLE, - G_TOKEN_COMMENT_MULTI, - - /*< private >*/ - G_TOKEN_LAST -} GTokenType; - -union _GTokenValue -{ - gpointer v_symbol; - gchar *v_identifier; - gulong v_binary; - gulong v_octal; - gulong v_int; - guint64 v_int64; - gdouble v_float; - gulong v_hex; - gchar *v_string; - gchar *v_comment; - guchar v_char; - guint v_error; -}; - -struct _GScannerConfig -{ - /* Character sets - */ - gchar *cset_skip_characters; /* default: " \t\n" */ - gchar *cset_identifier_first; - gchar *cset_identifier_nth; - gchar *cpair_comment_single; /* default: "#\n" */ - - /* Should symbol lookup work case sensitive? - */ - guint case_sensitive : 1; - - /* Boolean values to be adjusted "on the fly" - * to configure scanning behaviour. - */ - guint skip_comment_multi : 1; /* C like comment */ - guint skip_comment_single : 1; /* single line comment */ - guint scan_comment_multi : 1; /* scan multi line comments? */ - guint scan_identifier : 1; - guint scan_identifier_1char : 1; - guint scan_identifier_NULL : 1; - guint scan_symbols : 1; - guint scan_binary : 1; - guint scan_octal : 1; - guint scan_float : 1; - guint scan_hex : 1; /* '0x0ff0' */ - guint scan_hex_dollar : 1; /* '$0ff0' */ - guint scan_string_sq : 1; /* string: 'anything' */ - guint scan_string_dq : 1; /* string: "\\-escapes!\n" */ - guint numbers_2_int : 1; /* bin, octal, hex => int */ - guint int_2_float : 1; /* int => G_TOKEN_FLOAT? */ - guint identifier_2_string : 1; - guint char_2_token : 1; /* return G_TOKEN_CHAR? */ - guint symbol_2_token : 1; - guint scope_0_fallback : 1; /* try scope 0 on lookups? */ - guint store_int64 : 1; /* use value.v_int64 rather than v_int */ - - /*< private >*/ - guint padding_dummy; -}; - -struct _GScanner -{ - /* unused fields */ - gpointer user_data; - guint max_parse_errors; - - /* g_scanner_error() increments this field */ - guint parse_errors; - - /* name of input stream, featured by the default message handler */ - const gchar *input_name; - - /* quarked data */ - GData *qdata; - - /* link into the scanner configuration */ - GScannerConfig *config; - - /* fields filled in after g_scanner_get_next_token() */ - GTokenType token; - GTokenValue value; - guint line; - guint position; - - /* fields filled in after g_scanner_peek_next_token() */ - GTokenType next_token; - GTokenValue next_value; - guint next_line; - guint next_position; - - /*< private >*/ - /* to be considered private */ - GHashTable *symbol_table; - gint input_fd; - const gchar *text; - const gchar *text_end; - gchar *buffer; - guint scope_id; - - /*< public >*/ - /* handler function for _warn and _error */ - GScannerMsgFunc msg_handler; -}; - -GLIB_AVAILABLE_IN_ALL -GScanner* g_scanner_new (const GScannerConfig *config_templ); -GLIB_AVAILABLE_IN_ALL -void g_scanner_destroy (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -void g_scanner_input_file (GScanner *scanner, - gint input_fd); -GLIB_AVAILABLE_IN_ALL -void g_scanner_sync_file_offset (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -void g_scanner_input_text (GScanner *scanner, - const gchar *text, - guint text_len); -GLIB_AVAILABLE_IN_ALL -GTokenType g_scanner_get_next_token (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -GTokenType g_scanner_peek_next_token (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -GTokenType g_scanner_cur_token (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -GTokenValue g_scanner_cur_value (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -guint g_scanner_cur_line (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -guint g_scanner_cur_position (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -gboolean g_scanner_eof (GScanner *scanner); -GLIB_AVAILABLE_IN_ALL -guint g_scanner_set_scope (GScanner *scanner, - guint scope_id); -GLIB_AVAILABLE_IN_ALL -void g_scanner_scope_add_symbol (GScanner *scanner, - guint scope_id, - const gchar *symbol, - gpointer value); -GLIB_AVAILABLE_IN_ALL -void g_scanner_scope_remove_symbol (GScanner *scanner, - guint scope_id, - const gchar *symbol); -GLIB_AVAILABLE_IN_ALL -gpointer g_scanner_scope_lookup_symbol (GScanner *scanner, - guint scope_id, - const gchar *symbol); -GLIB_AVAILABLE_IN_ALL -void g_scanner_scope_foreach_symbol (GScanner *scanner, - guint scope_id, - GHFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gpointer g_scanner_lookup_symbol (GScanner *scanner, - const gchar *symbol); -GLIB_AVAILABLE_IN_ALL -void g_scanner_unexp_token (GScanner *scanner, - GTokenType expected_token, - const gchar *identifier_spec, - const gchar *symbol_spec, - const gchar *symbol_name, - const gchar *message, - gint is_error); -GLIB_AVAILABLE_IN_ALL -void g_scanner_error (GScanner *scanner, - const gchar *format, - ...) G_GNUC_PRINTF (2,3); -GLIB_AVAILABLE_IN_ALL -void g_scanner_warn (GScanner *scanner, - const gchar *format, - ...) G_GNUC_PRINTF (2,3); - -#ifndef G_DISABLE_DEPRECATED - -/* keep downward source compatibility */ -#define g_scanner_add_symbol( scanner, symbol, value ) G_STMT_START { \ - g_scanner_scope_add_symbol ((scanner), 0, (symbol), (value)); \ -} G_STMT_END -#define g_scanner_remove_symbol( scanner, symbol ) G_STMT_START { \ - g_scanner_scope_remove_symbol ((scanner), 0, (symbol)); \ -} G_STMT_END -#define g_scanner_foreach_symbol( scanner, func, data ) G_STMT_START { \ - g_scanner_scope_foreach_symbol ((scanner), 0, (func), (data)); \ -} G_STMT_END - -/* The following two functions are deprecated and will be removed in - * the next major release. They do no good. */ -#define g_scanner_freeze_symbol_table(scanner) ((void)0) -#define g_scanner_thaw_symbol_table(scanner) ((void)0) - -#endif /* G_DISABLE_DEPRECATED */ - -G_END_DECLS - -#endif /* __G_SCANNER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gsequence.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gsequence.h deleted file mode 100644 index 81d06a2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gsequence.h +++ /dev/null @@ -1,173 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 - * Soeren Sandmann (sandmann@daimi.au.dk) - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SEQUENCE_H__ -#define __G_SEQUENCE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GSequence GSequence; -typedef struct _GSequenceNode GSequenceIter; - -typedef gint (* GSequenceIterCompareFunc) (GSequenceIter *a, - GSequenceIter *b, - gpointer data); - - -/* GSequence */ -GLIB_AVAILABLE_IN_ALL -GSequence * g_sequence_new (GDestroyNotify data_destroy); -GLIB_AVAILABLE_IN_ALL -void g_sequence_free (GSequence *seq); -GLIB_AVAILABLE_IN_ALL -gint g_sequence_get_length (GSequence *seq); -GLIB_AVAILABLE_IN_ALL -void g_sequence_foreach (GSequence *seq, - GFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_foreach_range (GSequenceIter *begin, - GSequenceIter *end, - GFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_sort (GSequence *seq, - GCompareDataFunc cmp_func, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_sort_iter (GSequence *seq, - GSequenceIterCompareFunc cmp_func, - gpointer cmp_data); - - -/* Getting iters */ -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_get_begin_iter (GSequence *seq); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_get_end_iter (GSequence *seq); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_get_iter_at_pos (GSequence *seq, - gint pos); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_append (GSequence *seq, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_prepend (GSequence *seq, - gpointer data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_insert_before (GSequenceIter *iter, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_move (GSequenceIter *src, - GSequenceIter *dest); -GLIB_AVAILABLE_IN_ALL -void g_sequence_swap (GSequenceIter *a, - GSequenceIter *b); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_insert_sorted (GSequence *seq, - gpointer data, - GCompareDataFunc cmp_func, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_insert_sorted_iter (GSequence *seq, - gpointer data, - GSequenceIterCompareFunc iter_cmp, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_sort_changed (GSequenceIter *iter, - GCompareDataFunc cmp_func, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_sort_changed_iter (GSequenceIter *iter, - GSequenceIterCompareFunc iter_cmp, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -void g_sequence_remove (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -void g_sequence_remove_range (GSequenceIter *begin, - GSequenceIter *end); -GLIB_AVAILABLE_IN_ALL -void g_sequence_move_range (GSequenceIter *dest, - GSequenceIter *begin, - GSequenceIter *end); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_search (GSequence *seq, - gpointer data, - GCompareDataFunc cmp_func, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_search_iter (GSequence *seq, - gpointer data, - GSequenceIterCompareFunc iter_cmp, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_lookup (GSequence *seq, - gpointer data, - GCompareDataFunc cmp_func, - gpointer cmp_data); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_lookup_iter (GSequence *seq, - gpointer data, - GSequenceIterCompareFunc iter_cmp, - gpointer cmp_data); - - -/* Dereferencing */ -GLIB_AVAILABLE_IN_ALL -gpointer g_sequence_get (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -void g_sequence_set (GSequenceIter *iter, - gpointer data); - -/* Operations on GSequenceIter * */ -GLIB_AVAILABLE_IN_ALL -gboolean g_sequence_iter_is_begin (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -gboolean g_sequence_iter_is_end (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_iter_next (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_iter_prev (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -gint g_sequence_iter_get_position (GSequenceIter *iter); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_iter_move (GSequenceIter *iter, - gint delta); -GLIB_AVAILABLE_IN_ALL -GSequence * g_sequence_iter_get_sequence (GSequenceIter *iter); - - -/* Search */ -GLIB_AVAILABLE_IN_ALL -gint g_sequence_iter_compare (GSequenceIter *a, - GSequenceIter *b); -GLIB_AVAILABLE_IN_ALL -GSequenceIter *g_sequence_range_get_midpoint (GSequenceIter *begin, - GSequenceIter *end); - -G_END_DECLS - -#endif /* __G_SEQUENCE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gshell.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gshell.h deleted file mode 100644 index cff6c5c..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gshell.h +++ /dev/null @@ -1,59 +0,0 @@ -/* gshell.h - Shell-related utilities - * - * Copyright 2000 Red Hat, Inc. - * - * GLib is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, write - * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SHELL_H__ -#define __G_SHELL_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -#define G_SHELL_ERROR g_shell_error_quark () - -typedef enum -{ - /* mismatched or otherwise mangled quoting */ - G_SHELL_ERROR_BAD_QUOTING, - /* string to be parsed was empty */ - G_SHELL_ERROR_EMPTY_STRING, - G_SHELL_ERROR_FAILED -} GShellError; - -GLIB_AVAILABLE_IN_ALL -GQuark g_shell_error_quark (void); - -GLIB_AVAILABLE_IN_ALL -gchar* g_shell_quote (const gchar *unquoted_string); -GLIB_AVAILABLE_IN_ALL -gchar* g_shell_unquote (const gchar *quoted_string, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_shell_parse_argv (const gchar *command_line, - gint *argcp, - gchar ***argvp, - GError **error); - -G_END_DECLS - -#endif /* __G_SHELL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslice.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslice.h deleted file mode 100644 index e1b6686..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslice.h +++ /dev/null @@ -1,100 +0,0 @@ -/* GLIB sliced memory - fast threaded memory chunk allocator - * Copyright (C) 2005 Tim Janik - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SLICE_H__ -#define __G_SLICE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* slices - fast allocation/release of small memory blocks - */ -GLIB_AVAILABLE_IN_ALL -gpointer g_slice_alloc (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_slice_alloc0 (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -gpointer g_slice_copy (gsize block_size, - gconstpointer mem_block) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1); -GLIB_AVAILABLE_IN_ALL -void g_slice_free1 (gsize block_size, - gpointer mem_block); -GLIB_AVAILABLE_IN_ALL -void g_slice_free_chain_with_offset (gsize block_size, - gpointer mem_chain, - gsize next_offset); -#define g_slice_new(type) ((type*) g_slice_alloc (sizeof (type))) -#define g_slice_new0(type) ((type*) g_slice_alloc0 (sizeof (type))) -/* MemoryBlockType * - * g_slice_dup (MemoryBlockType, - * MemoryBlockType *mem_block); - * g_slice_free (MemoryBlockType, - * MemoryBlockType *mem_block); - * g_slice_free_chain (MemoryBlockType, - * MemoryBlockType *first_chain_block, - * memory_block_next_field); - * pseudo prototypes for the macro - * definitions following below. - */ - -/* we go through extra hoops to ensure type safety */ -#define g_slice_dup(type, mem) \ - (1 ? (type*) g_slice_copy (sizeof (type), (mem)) \ - : ((void) ((type*) 0 == (mem)), (type*) 0)) -#define g_slice_free(type, mem) do { \ - if (1) g_slice_free1 (sizeof (type), (mem)); \ - else (void) ((type*) 0 == (mem)); \ -} while (0) -#define g_slice_free_chain(type, mem_chain, next) do { \ - if (1) g_slice_free_chain_with_offset (sizeof (type), \ - (mem_chain), G_STRUCT_OFFSET (type, next)); \ - else (void) ((type*) 0 == (mem_chain)); \ -} while (0) - - -/* --- internal debugging API --- */ -typedef enum { - G_SLICE_CONFIG_ALWAYS_MALLOC = 1, - G_SLICE_CONFIG_BYPASS_MAGAZINES, - G_SLICE_CONFIG_WORKING_SET_MSECS, - G_SLICE_CONFIG_COLOR_INCREMENT, - G_SLICE_CONFIG_CHUNK_SIZES, - G_SLICE_CONFIG_CONTENTION_COUNTER -} GSliceConfig; - -GLIB_DEPRECATED_IN_2_34 -void g_slice_set_config (GSliceConfig ckey, gint64 value); -GLIB_DEPRECATED_IN_2_34 -gint64 g_slice_get_config (GSliceConfig ckey); -GLIB_DEPRECATED_IN_2_34 -gint64* g_slice_get_config_state (GSliceConfig ckey, gint64 address, guint *n_values); - -#ifdef G_ENABLE_DEBUG -GLIB_AVAILABLE_IN_ALL -void g_slice_debug_tree_statistics (void); -#endif - -G_END_DECLS - -#endif /* __G_SLICE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslist.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslist.h deleted file mode 100644 index 55b91c6..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gslist.h +++ /dev/null @@ -1,145 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_SLIST_H__ -#define __G_SLIST_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GSList GSList; - -struct _GSList -{ - gpointer data; - GSList *next; -}; - -/* Singly linked lists - */ -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_alloc (void) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -void g_slist_free (GSList *list); -GLIB_AVAILABLE_IN_ALL -void g_slist_free_1 (GSList *list); -#define g_slist_free1 g_slist_free_1 -GLIB_AVAILABLE_IN_ALL -void g_slist_free_full (GSList *list, - GDestroyNotify free_func); -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_append (GSList *list, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_prepend (GSList *list, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_insert (GSList *list, - gpointer data, - gint position) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_insert_sorted (GSList *list, - gpointer data, - GCompareFunc func) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_insert_sorted_with_data (GSList *list, - gpointer data, - GCompareDataFunc func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_insert_before (GSList *slist, - GSList *sibling, - gpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_concat (GSList *list1, - GSList *list2) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_remove (GSList *list, - gconstpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_remove_all (GSList *list, - gconstpointer data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_remove_link (GSList *list, - GSList *link_) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_delete_link (GSList *list, - GSList *link_) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_reverse (GSList *list) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_copy (GSList *list) G_GNUC_WARN_UNUSED_RESULT; - -GLIB_AVAILABLE_IN_2_34 -GSList* g_slist_copy_deep (GSList *list, - GCopyFunc func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_nth (GSList *list, - guint n); -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_find (GSList *list, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_find_custom (GSList *list, - gconstpointer data, - GCompareFunc func); -GLIB_AVAILABLE_IN_ALL -gint g_slist_position (GSList *list, - GSList *llink); -GLIB_AVAILABLE_IN_ALL -gint g_slist_index (GSList *list, - gconstpointer data); -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_last (GSList *list); -GLIB_AVAILABLE_IN_ALL -guint g_slist_length (GSList *list); -GLIB_AVAILABLE_IN_ALL -void g_slist_foreach (GSList *list, - GFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_sort (GSList *list, - GCompareFunc compare_func) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -GSList* g_slist_sort_with_data (GSList *list, - GCompareDataFunc compare_func, - gpointer user_data) G_GNUC_WARN_UNUSED_RESULT; -GLIB_AVAILABLE_IN_ALL -gpointer g_slist_nth_data (GSList *list, - guint n); - -#define g_slist_next(slist) ((slist) ? (((GSList *)(slist))->next) : NULL) - -G_END_DECLS - -#endif /* __G_SLIST_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gspawn.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gspawn.h deleted file mode 100644 index 5b5853a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gspawn.h +++ /dev/null @@ -1,307 +0,0 @@ -/* gspawn.h - Process launching - * - * Copyright 2000 Red Hat, Inc. - * - * GLib is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, write - * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_SPAWN_H__ -#define __G_SPAWN_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - - -/* I'm not sure I remember our proposed naming convention here. */ -/** - * G_SPAWN_ERROR: - * - * Error domain for spawning processes. Errors in this domain will - * be from the #GSpawnError enumeration. See #GError for information on - * error domains. - */ -#define G_SPAWN_ERROR g_spawn_error_quark () - -/** - * GSpawnError: - * @G_SPAWN_ERROR_FORK: Fork failed due to lack of memory. - * @G_SPAWN_ERROR_READ: Read or select on pipes failed. - * @G_SPAWN_ERROR_CHDIR: Changing to working directory failed. - * @G_SPAWN_ERROR_ACCES: execv() returned EACCES - * @G_SPAWN_ERROR_PERM: execv() returned EPERM - * @G_SPAWN_ERROR_TOO_BIG: execv() returned E2BIG - * @G_SPAWN_ERROR_2BIG: deprecated alias for %G_SPAWN_ERROR_TOO_BIG - * @G_SPAWN_ERROR_NOEXEC: execv() returned ENOEXEC - * @G_SPAWN_ERROR_NAMETOOLONG: execv() returned ENAMETOOLONG - * @G_SPAWN_ERROR_NOENT: execv() returned ENOENT - * @G_SPAWN_ERROR_NOMEM: execv() returned ENOMEM - * @G_SPAWN_ERROR_NOTDIR: execv() returned ENOTDIR - * @G_SPAWN_ERROR_LOOP: execv() returned ELOOP - * @G_SPAWN_ERROR_TXTBUSY: execv() returned ETXTBUSY - * @G_SPAWN_ERROR_IO: execv() returned EIO - * @G_SPAWN_ERROR_NFILE: execv() returned ENFILE - * @G_SPAWN_ERROR_MFILE: execv() returned EMFILE - * @G_SPAWN_ERROR_INVAL: execv() returned EINVAL - * @G_SPAWN_ERROR_ISDIR: execv() returned EISDIR - * @G_SPAWN_ERROR_LIBBAD: execv() returned ELIBBAD - * @G_SPAWN_ERROR_FAILED: Some other fatal failure, - * error->message should explain. - * - * Error codes returned by spawning processes. - */ -typedef enum -{ - G_SPAWN_ERROR_FORK, /* fork failed due to lack of memory */ - G_SPAWN_ERROR_READ, /* read or select on pipes failed */ - G_SPAWN_ERROR_CHDIR, /* changing to working dir failed */ - G_SPAWN_ERROR_ACCES, /* execv() returned EACCES */ - G_SPAWN_ERROR_PERM, /* execv() returned EPERM */ - G_SPAWN_ERROR_TOO_BIG,/* execv() returned E2BIG */ -#ifndef G_DISABLE_DEPRECATED - G_SPAWN_ERROR_2BIG = G_SPAWN_ERROR_TOO_BIG, -#endif - G_SPAWN_ERROR_NOEXEC, /* execv() returned ENOEXEC */ - G_SPAWN_ERROR_NAMETOOLONG, /* "" "" ENAMETOOLONG */ - G_SPAWN_ERROR_NOENT, /* "" "" ENOENT */ - G_SPAWN_ERROR_NOMEM, /* "" "" ENOMEM */ - G_SPAWN_ERROR_NOTDIR, /* "" "" ENOTDIR */ - G_SPAWN_ERROR_LOOP, /* "" "" ELOOP */ - G_SPAWN_ERROR_TXTBUSY, /* "" "" ETXTBUSY */ - G_SPAWN_ERROR_IO, /* "" "" EIO */ - G_SPAWN_ERROR_NFILE, /* "" "" ENFILE */ - G_SPAWN_ERROR_MFILE, /* "" "" EMFLE */ - G_SPAWN_ERROR_INVAL, /* "" "" EINVAL */ - G_SPAWN_ERROR_ISDIR, /* "" "" EISDIR */ - G_SPAWN_ERROR_LIBBAD, /* "" "" ELIBBAD */ - G_SPAWN_ERROR_FAILED /* other fatal failure, error->message - * should explain - */ -} GSpawnError; - -/** - * G_SPAWN_EXIT_ERROR: - * - * Error domain used by g_spawn_check_exit_status(). The code - * will be the program exit code. - */ -#define G_SPAWN_EXIT_ERROR g_spawn_exit_error_quark () - -/** - * GSpawnChildSetupFunc: - * @user_data: user data to pass to the function. - * - * Specifies the type of the setup function passed to g_spawn_async(), - * g_spawn_sync() and g_spawn_async_with_pipes(), which can, in very - * limited ways, be used to affect the child's execution. - * - * On POSIX platforms, the function is called in the child after GLib - * has performed all the setup it plans to perform, but before calling - * exec(). Actions taken in this function will only affect the child, - * not the parent. - * - * On Windows, the function is called in the parent. Its usefulness on - * Windows is thus questionable. In many cases executing the child setup - * function in the parent can have ill effects, and you should be very - * careful when porting software to Windows that uses child setup - * functions. - * - * However, even on POSIX, you are extremely limited in what you can - * safely do from a #GSpawnChildSetupFunc, because any mutexes that - * were held by other threads in the parent process at the time of the - * fork() will still be locked in the child process, and they will - * never be unlocked (since the threads that held them don't exist in - * the child). POSIX allows only async-signal-safe functions (see - * signal7) - * to be called in the child between fork() and exec(), which - * drastically limits the usefulness of child setup functions. - * - * In particular, it is not safe to call any function which may - * call malloc(), which includes POSIX functions such as setenv(). - * If you need to set up the child environment differently from - * the parent, you should use g_get_environ(), g_environ_setenv(), - * and g_environ_unsetenv(), and then pass the complete environment - * list to the g_spawn... function. - */ -typedef void (* GSpawnChildSetupFunc) (gpointer user_data); - -/** - * GSpawnFlags: - * @G_SPAWN_DEFAULT: no flags, default behaviour - * @G_SPAWN_LEAVE_DESCRIPTORS_OPEN: the parent's open file descriptors will be - * inherited by the child; otherwise all descriptors except stdin/stdout/stderr - * will be closed before calling exec() in the child. - * @G_SPAWN_DO_NOT_REAP_CHILD: the child will not be automatically reaped; you - * must use g_child_watch_add() yourself (or call waitpid() - * or handle SIGCHLD yourself), or the child will become a zombie. - * @G_SPAWN_SEARCH_PATH: argv[0] need not be an absolute path, - * it will be looked for in the user's PATH. - * @G_SPAWN_STDOUT_TO_DEV_NULL: the child's standard output will be discarded, - * instead of going to the same location as the parent's standard output. - * @G_SPAWN_STDERR_TO_DEV_NULL: the child's standard error will be discarded. - * @G_SPAWN_CHILD_INHERITS_STDIN: the child will inherit the parent's standard - * input (by default, the child's standard input is attached to - * /dev/null). - * @G_SPAWN_FILE_AND_ARGV_ZERO: the first element of argv is - * the file to execute, while the remaining elements are the actual argument - * vector to pass to the file. Normally g_spawn_async_with_pipes() uses - * argv[0] as the file to execute, and passes all of - * argv to the child. - * @G_SPAWN_SEARCH_PATH_FROM_ENVP: if argv[0] is not an abolute path, - * it will be looked for in the PATH from the passed child - * environment. Since: 2.34 - * - * Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes(). - */ -typedef enum -{ - G_SPAWN_DEFAULT = 0, - G_SPAWN_LEAVE_DESCRIPTORS_OPEN = 1 << 0, - G_SPAWN_DO_NOT_REAP_CHILD = 1 << 1, - /* look for argv[0] in the path i.e. use execvp() */ - G_SPAWN_SEARCH_PATH = 1 << 2, - /* Dump output to /dev/null */ - G_SPAWN_STDOUT_TO_DEV_NULL = 1 << 3, - G_SPAWN_STDERR_TO_DEV_NULL = 1 << 4, - G_SPAWN_CHILD_INHERITS_STDIN = 1 << 5, - G_SPAWN_FILE_AND_ARGV_ZERO = 1 << 6, - G_SPAWN_SEARCH_PATH_FROM_ENVP = 1 << 7 -} GSpawnFlags; - -GLIB_AVAILABLE_IN_ALL -GQuark g_spawn_error_quark (void); -GLIB_AVAILABLE_IN_ALL -GQuark g_spawn_exit_error_quark (void); - -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_async (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - GPid *child_pid, - GError **error); - - -/* Opens pipes for non-NULL standard_output, standard_input, standard_error, - * and returns the parent's end of the pipes. - */ -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_async_with_pipes (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - GPid *child_pid, - gint *standard_input, - gint *standard_output, - gint *standard_error, - GError **error); - - -/* If standard_output or standard_error are non-NULL, the full - * standard output or error of the command will be placed there. - */ - -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_sync (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - gchar **standard_output, - gchar **standard_error, - gint *exit_status, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_command_line_sync (const gchar *command_line, - gchar **standard_output, - gchar **standard_error, - gint *exit_status, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_command_line_async (const gchar *command_line, - GError **error); - -GLIB_AVAILABLE_IN_2_34 -gboolean g_spawn_check_exit_status (gint exit_status, - GError **error); - -GLIB_AVAILABLE_IN_ALL -void g_spawn_close_pid (GPid pid); - -#ifdef G_OS_WIN32 -#define g_spawn_async g_spawn_async_utf8 -#define g_spawn_async_with_pipes g_spawn_async_with_pipes_utf8 -#define g_spawn_sync g_spawn_sync_utf8 -#define g_spawn_command_line_sync g_spawn_command_line_sync_utf8 -#define g_spawn_command_line_async g_spawn_command_line_async_utf8 - -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_async_utf8 (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - GPid *child_pid, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_async_with_pipes_utf8 (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - GPid *child_pid, - gint *standard_input, - gint *standard_output, - gint *standard_error, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_sync_utf8 (const gchar *working_directory, - gchar **argv, - gchar **envp, - GSpawnFlags flags, - GSpawnChildSetupFunc child_setup, - gpointer user_data, - gchar **standard_output, - gchar **standard_error, - gint *exit_status, - GError **error); - -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_command_line_sync_utf8 (const gchar *command_line, - gchar **standard_output, - gchar **standard_error, - gint *exit_status, - GError **error); -GLIB_AVAILABLE_IN_ALL -gboolean g_spawn_command_line_async_utf8 (const gchar *command_line, - GError **error); -#endif - -G_END_DECLS - -#endif /* __G_SPAWN_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstdio.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstdio.h deleted file mode 100644 index 90ee74e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstdio.h +++ /dev/null @@ -1,172 +0,0 @@ -/* gstdio.h - GFilename wrappers for C library functions - * - * Copyright 2004 Tor Lillqvist - * - * GLib is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * GLib is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GLib; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_STDIO_H__ -#define __G_STDIO_H__ - -#include - -#include - -G_BEGIN_DECLS - -#if defined (_MSC_VER) && !defined(_WIN64) - -/* Make it clear that we mean the struct with 32-bit st_size and - * 32-bit st_*time fields as that is how the 32-bit GLib DLL normally - * has been compiled. If you get a compiler warning when calling - * g_stat(), do take it seriously and make sure that the type of - * struct stat the code in GLib fills in matches the struct the type - * of struct stat you pass to g_stat(). To avoid hassle, to get file - * attributes just use the GIO API instead which doesn't use struct - * stat. - * - * Sure, it would be nicer to use a struct with 64-bit st_size and - * 64-bit st_*time fields, but changing that now would break ABI. And - * in MinGW, a plain "struct stat" is the one with 32-bit st_size and - * st_*time fields. - */ - -typedef struct _stat32 GStatBuf; - -#else - -typedef struct stat GStatBuf; - -#endif - -#if defined(G_OS_UNIX) && !defined(G_STDIO_NO_WRAP_ON_UNIX) - -/* Just pass on to the system functions, so there's no potential for data - * format mismatches, especially with large file interfaces. - * A few functions can't be handled in this way, since they are not defined - * in a portable system header that we could include here. - */ - -#ifndef __GTK_DOC_IGNORE__ -#define g_chmod chmod -#define g_open open -#define g_creat creat -#define g_rename rename -#define g_mkdir mkdir -#define g_stat stat -#define g_lstat lstat -#define g_remove remove -#define g_fopen fopen -#define g_freopen freopen -#define g_utime utime -#endif - -GLIB_AVAILABLE_IN_ALL -int g_access (const gchar *filename, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_chdir (const gchar *path); - -GLIB_AVAILABLE_IN_ALL -int g_unlink (const gchar *filename); - -GLIB_AVAILABLE_IN_ALL -int g_rmdir (const gchar *filename); - -#else /* ! G_OS_UNIX */ - -/* Wrappers for C library functions that take pathname arguments. On - * Unix, the pathname is a file name as it literally is in the file - * system. On well-maintained systems with consistent users who know - * what they are doing and no exchange of files with others this would - * be a well-defined encoding, preferably UTF-8. On Windows, the - * pathname is always in UTF-8, even if that is not the on-disk - * encoding, and not the encoding accepted by the C library or Win32 - * API. - */ - -GLIB_AVAILABLE_IN_ALL -int g_access (const gchar *filename, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_chmod (const gchar *filename, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_open (const gchar *filename, - int flags, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_creat (const gchar *filename, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_rename (const gchar *oldfilename, - const gchar *newfilename); - -GLIB_AVAILABLE_IN_ALL -int g_mkdir (const gchar *filename, - int mode); - -GLIB_AVAILABLE_IN_ALL -int g_chdir (const gchar *path); - -GLIB_AVAILABLE_IN_ALL -int g_stat (const gchar *filename, - GStatBuf *buf); - -GLIB_AVAILABLE_IN_ALL -int g_lstat (const gchar *filename, - GStatBuf *buf); - -GLIB_AVAILABLE_IN_ALL -int g_unlink (const gchar *filename); - -GLIB_AVAILABLE_IN_ALL -int g_remove (const gchar *filename); - -GLIB_AVAILABLE_IN_ALL -int g_rmdir (const gchar *filename); - -GLIB_AVAILABLE_IN_ALL -FILE *g_fopen (const gchar *filename, - const gchar *mode); - -GLIB_AVAILABLE_IN_ALL -FILE *g_freopen (const gchar *filename, - const gchar *mode, - FILE *stream); - -struct utimbuf; /* Don't need the real definition of struct utimbuf when just - * including this header. - */ - -GLIB_AVAILABLE_IN_ALL -int g_utime (const gchar *filename, - struct utimbuf *utb); - -#endif /* G_OS_UNIX */ - -GLIB_AVAILABLE_IN_2_36 -gboolean g_close (gint fd, - GError **error); - -G_END_DECLS - -#endif /* __G_STDIO_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstrfuncs.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstrfuncs.h deleted file mode 100644 index 510623a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstrfuncs.h +++ /dev/null @@ -1,293 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_STRFUNCS_H__ -#define __G_STRFUNCS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -G_BEGIN_DECLS - -/* Functions like the ones in that are not affected by locale. */ -typedef enum { - G_ASCII_ALNUM = 1 << 0, - G_ASCII_ALPHA = 1 << 1, - G_ASCII_CNTRL = 1 << 2, - G_ASCII_DIGIT = 1 << 3, - G_ASCII_GRAPH = 1 << 4, - G_ASCII_LOWER = 1 << 5, - G_ASCII_PRINT = 1 << 6, - G_ASCII_PUNCT = 1 << 7, - G_ASCII_SPACE = 1 << 8, - G_ASCII_UPPER = 1 << 9, - G_ASCII_XDIGIT = 1 << 10 -} GAsciiType; - -GLIB_VAR const guint16 * const g_ascii_table; - -#define g_ascii_isalnum(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_ALNUM) != 0) - -#define g_ascii_isalpha(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_ALPHA) != 0) - -#define g_ascii_iscntrl(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_CNTRL) != 0) - -#define g_ascii_isdigit(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_DIGIT) != 0) - -#define g_ascii_isgraph(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_GRAPH) != 0) - -#define g_ascii_islower(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_LOWER) != 0) - -#define g_ascii_isprint(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_PRINT) != 0) - -#define g_ascii_ispunct(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_PUNCT) != 0) - -#define g_ascii_isspace(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_SPACE) != 0) - -#define g_ascii_isupper(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_UPPER) != 0) - -#define g_ascii_isxdigit(c) \ - ((g_ascii_table[(guchar) (c)] & G_ASCII_XDIGIT) != 0) - -GLIB_AVAILABLE_IN_ALL -gchar g_ascii_tolower (gchar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gchar g_ascii_toupper (gchar c) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gint g_ascii_digit_value (gchar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gint g_ascii_xdigit_value (gchar c) G_GNUC_CONST; - -/* String utility functions that modify a string argument or - * return a constant string that must not be freed. - */ -#define G_STR_DELIMITERS "_-|> <." -GLIB_AVAILABLE_IN_ALL -gchar* g_strdelimit (gchar *string, - const gchar *delimiters, - gchar new_delimiter); -GLIB_AVAILABLE_IN_ALL -gchar* g_strcanon (gchar *string, - const gchar *valid_chars, - gchar substitutor); -GLIB_AVAILABLE_IN_ALL -const gchar * g_strerror (gint errnum) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -const gchar * g_strsignal (gint signum) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gchar * g_strreverse (gchar *string); -GLIB_AVAILABLE_IN_ALL -gsize g_strlcpy (gchar *dest, - const gchar *src, - gsize dest_size); -GLIB_AVAILABLE_IN_ALL -gsize g_strlcat (gchar *dest, - const gchar *src, - gsize dest_size); -GLIB_AVAILABLE_IN_ALL -gchar * g_strstr_len (const gchar *haystack, - gssize haystack_len, - const gchar *needle); -GLIB_AVAILABLE_IN_ALL -gchar * g_strrstr (const gchar *haystack, - const gchar *needle); -GLIB_AVAILABLE_IN_ALL -gchar * g_strrstr_len (const gchar *haystack, - gssize haystack_len, - const gchar *needle); - -GLIB_AVAILABLE_IN_ALL -gboolean g_str_has_suffix (const gchar *str, - const gchar *suffix); -GLIB_AVAILABLE_IN_ALL -gboolean g_str_has_prefix (const gchar *str, - const gchar *prefix); - -/* String to/from double conversion functions */ - -GLIB_AVAILABLE_IN_ALL -gdouble g_strtod (const gchar *nptr, - gchar **endptr); -GLIB_AVAILABLE_IN_ALL -gdouble g_ascii_strtod (const gchar *nptr, - gchar **endptr); -GLIB_AVAILABLE_IN_ALL -guint64 g_ascii_strtoull (const gchar *nptr, - gchar **endptr, - guint base); -GLIB_AVAILABLE_IN_ALL -gint64 g_ascii_strtoll (const gchar *nptr, - gchar **endptr, - guint base); -/* 29 bytes should enough for all possible values that - * g_ascii_dtostr can produce. - * Then add 10 for good measure */ -#define G_ASCII_DTOSTR_BUF_SIZE (29 + 10) -GLIB_AVAILABLE_IN_ALL -gchar * g_ascii_dtostr (gchar *buffer, - gint buf_len, - gdouble d); -GLIB_AVAILABLE_IN_ALL -gchar * g_ascii_formatd (gchar *buffer, - gint buf_len, - const gchar *format, - gdouble d); - -/* removes leading spaces */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strchug (gchar *string); -/* removes trailing spaces */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strchomp (gchar *string); -/* removes leading & trailing spaces */ -#define g_strstrip( string ) g_strchomp (g_strchug (string)) - -GLIB_AVAILABLE_IN_ALL -gint g_ascii_strcasecmp (const gchar *s1, - const gchar *s2); -GLIB_AVAILABLE_IN_ALL -gint g_ascii_strncasecmp (const gchar *s1, - const gchar *s2, - gsize n); -GLIB_AVAILABLE_IN_ALL -gchar* g_ascii_strdown (const gchar *str, - gssize len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_ascii_strup (const gchar *str, - gssize len) G_GNUC_MALLOC; - - -GLIB_DEPRECATED -gint g_strcasecmp (const gchar *s1, - const gchar *s2); -GLIB_DEPRECATED -gint g_strncasecmp (const gchar *s1, - const gchar *s2, - guint n); -GLIB_DEPRECATED -gchar* g_strdown (gchar *string); -GLIB_DEPRECATED -gchar* g_strup (gchar *string); - - -/* String utility functions that return a newly allocated string which - * ought to be freed with g_free from the caller at some point. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strdup (const gchar *str) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strdup_printf (const gchar *format, - ...) G_GNUC_PRINTF (1, 2) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strdup_vprintf (const gchar *format, - va_list args) G_GNUC_PRINTF(1, 0) - G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strndup (const gchar *str, - gsize n) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strnfill (gsize length, - gchar fill_char) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strconcat (const gchar *string1, - ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -gchar* g_strjoin (const gchar *separator, - ...) G_GNUC_MALLOC G_GNUC_NULL_TERMINATED; - -/* Make a copy of a string interpreting C string -style escape - * sequences. Inverse of g_strescape. The recognized sequences are \b - * \f \n \r \t \\ \" and the octal format. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strcompress (const gchar *source) G_GNUC_MALLOC; - -/* Copy a string escaping nonprintable characters like in C strings. - * Inverse of g_strcompress. The exceptions parameter, if non-NULL, points - * to a string containing characters that are not to be escaped. - * - * Deprecated API: gchar* g_strescape (const gchar *source); - * Luckily this function wasn't used much, using NULL as second parameter - * provides mostly identical semantics. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strescape (const gchar *source, - const gchar *exceptions) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gpointer g_memdup (gconstpointer mem, - guint byte_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(2); - -/* NULL terminated string arrays. - * g_strsplit(), g_strsplit_set() split up string into max_tokens tokens - * at delim and return a newly allocated string array. - * g_strjoinv() concatenates all of str_array's strings, sliding in an - * optional separator, the returned string is newly allocated. - * g_strfreev() frees the array itself and all of its strings. - * g_strdupv() copies a NULL-terminated array of strings - * g_strv_length() returns the length of a NULL-terminated array of strings - */ -GLIB_AVAILABLE_IN_ALL -gchar** g_strsplit (const gchar *string, - const gchar *delimiter, - gint max_tokens) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar ** g_strsplit_set (const gchar *string, - const gchar *delimiters, - gint max_tokens) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_strjoinv (const gchar *separator, - gchar **str_array) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -void g_strfreev (gchar **str_array); -GLIB_AVAILABLE_IN_ALL -gchar** g_strdupv (gchar **str_array) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -guint g_strv_length (gchar **str_array); - -GLIB_AVAILABLE_IN_ALL -gchar* g_stpcpy (gchar *dest, - const char *src); - -G_END_DECLS - -#endif /* __G_STRFUNCS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstring.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstring.h deleted file mode 100644 index 0cbba5d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstring.h +++ /dev/null @@ -1,191 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_STRING_H__ -#define __G_STRING_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include /* for G_CAN_INLINE */ - -G_BEGIN_DECLS - -typedef struct _GString GString; - -struct _GString -{ - gchar *str; - gsize len; - gsize allocated_len; -}; - -GLIB_AVAILABLE_IN_ALL -GString* g_string_new (const gchar *init); -GLIB_AVAILABLE_IN_ALL -GString* g_string_new_len (const gchar *init, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_sized_new (gsize dfl_size); -GLIB_AVAILABLE_IN_ALL -gchar* g_string_free (GString *string, - gboolean free_segment); -GLIB_AVAILABLE_IN_2_34 -GBytes* g_string_free_to_bytes (GString *string); -GLIB_AVAILABLE_IN_ALL -gboolean g_string_equal (const GString *v, - const GString *v2); -GLIB_AVAILABLE_IN_ALL -guint g_string_hash (const GString *str); -GLIB_AVAILABLE_IN_ALL -GString* g_string_assign (GString *string, - const gchar *rval); -GLIB_AVAILABLE_IN_ALL -GString* g_string_truncate (GString *string, - gsize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_set_size (GString *string, - gsize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_insert_len (GString *string, - gssize pos, - const gchar *val, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_append (GString *string, - const gchar *val); -GLIB_AVAILABLE_IN_ALL -GString* g_string_append_len (GString *string, - const gchar *val, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_append_c (GString *string, - gchar c); -GLIB_AVAILABLE_IN_ALL -GString* g_string_append_unichar (GString *string, - gunichar wc); -GLIB_AVAILABLE_IN_ALL -GString* g_string_prepend (GString *string, - const gchar *val); -GLIB_AVAILABLE_IN_ALL -GString* g_string_prepend_c (GString *string, - gchar c); -GLIB_AVAILABLE_IN_ALL -GString* g_string_prepend_unichar (GString *string, - gunichar wc); -GLIB_AVAILABLE_IN_ALL -GString* g_string_prepend_len (GString *string, - const gchar *val, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_insert (GString *string, - gssize pos, - const gchar *val); -GLIB_AVAILABLE_IN_ALL -GString* g_string_insert_c (GString *string, - gssize pos, - gchar c); -GLIB_AVAILABLE_IN_ALL -GString* g_string_insert_unichar (GString *string, - gssize pos, - gunichar wc); -GLIB_AVAILABLE_IN_ALL -GString* g_string_overwrite (GString *string, - gsize pos, - const gchar *val); -GLIB_AVAILABLE_IN_ALL -GString* g_string_overwrite_len (GString *string, - gsize pos, - const gchar *val, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_erase (GString *string, - gssize pos, - gssize len); -GLIB_AVAILABLE_IN_ALL -GString* g_string_ascii_down (GString *string); -GLIB_AVAILABLE_IN_ALL -GString* g_string_ascii_up (GString *string); -GLIB_AVAILABLE_IN_ALL -void g_string_vprintf (GString *string, - const gchar *format, - va_list args) - G_GNUC_PRINTF(2, 0); -GLIB_AVAILABLE_IN_ALL -void g_string_printf (GString *string, - const gchar *format, - ...) G_GNUC_PRINTF (2, 3); -GLIB_AVAILABLE_IN_ALL -void g_string_append_vprintf (GString *string, - const gchar *format, - va_list args) - G_GNUC_PRINTF(2, 0); -GLIB_AVAILABLE_IN_ALL -void g_string_append_printf (GString *string, - const gchar *format, - ...) G_GNUC_PRINTF (2, 3); -GLIB_AVAILABLE_IN_ALL -GString* g_string_append_uri_escaped (GString *string, - const gchar *unescaped, - const gchar *reserved_chars_allowed, - gboolean allow_utf8); - -/* -- optimize g_strig_append_c --- */ -#ifdef G_CAN_INLINE -static inline GString* -g_string_append_c_inline (GString *gstring, - gchar c) -{ - if (gstring->len + 1 < gstring->allocated_len) - { - gstring->str[gstring->len++] = c; - gstring->str[gstring->len] = 0; - } - else - g_string_insert_c (gstring, -1, c); - return gstring; -} -#define g_string_append_c(gstr,c) g_string_append_c_inline (gstr, c) -#endif /* G_CAN_INLINE */ - - -GLIB_DEPRECATED -GString *g_string_down (GString *string); -GLIB_DEPRECATED -GString *g_string_up (GString *string); - -#ifndef G_DISABLE_DEPRECATED -#define g_string_sprintf g_string_printf -#define g_string_sprintfa g_string_append_printf -#endif - -G_END_DECLS - -#endif /* __G_STRING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstringchunk.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstringchunk.h deleted file mode 100644 index 79848e1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gstringchunk.h +++ /dev/null @@ -1,59 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_STRINGCHUNK_H__ -#define __G_STRINGCHUNK_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GStringChunk GStringChunk; - -GLIB_AVAILABLE_IN_ALL -GStringChunk* g_string_chunk_new (gsize size); -GLIB_AVAILABLE_IN_ALL -void g_string_chunk_free (GStringChunk *chunk); -GLIB_AVAILABLE_IN_ALL -void g_string_chunk_clear (GStringChunk *chunk); -GLIB_AVAILABLE_IN_ALL -gchar* g_string_chunk_insert (GStringChunk *chunk, - const gchar *string); -GLIB_AVAILABLE_IN_ALL -gchar* g_string_chunk_insert_len (GStringChunk *chunk, - const gchar *string, - gssize len); -GLIB_AVAILABLE_IN_ALL -gchar* g_string_chunk_insert_const (GStringChunk *chunk, - const gchar *string); - -G_END_DECLS - -#endif /* __G_STRING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtestutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtestutils.h deleted file mode 100644 index 889df44..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtestutils.h +++ /dev/null @@ -1,419 +0,0 @@ -/* GLib testing utilities - * Copyright (C) 2007 Imendio AB - * Authors: Tim Janik - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_TEST_UTILS_H__ -#define __G_TEST_UTILS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include - -G_BEGIN_DECLS - -typedef struct GTestCase GTestCase; -typedef struct GTestSuite GTestSuite; -typedef void (*GTestFunc) (void); -typedef void (*GTestDataFunc) (gconstpointer user_data); -typedef void (*GTestFixtureFunc) (gpointer fixture, - gconstpointer user_data); - -/* assertion API */ -#define g_assert_cmpstr(s1, cmp, s2) do { const char *__s1 = (s1), *__s2 = (s2); \ - if (g_strcmp0 (__s1, __s2) cmp 0) ; else \ - g_assertion_message_cmpstr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #s1 " " #cmp " " #s2, __s1, #cmp, __s2); } while (0) -#define g_assert_cmpint(n1, cmp, n2) do { gint64 __n1 = (n1), __n2 = (n2); \ - if (__n1 cmp __n2) ; else \ - g_assertion_message_cmpnum (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'i'); } while (0) -#define g_assert_cmpuint(n1, cmp, n2) do { guint64 __n1 = (n1), __n2 = (n2); \ - if (__n1 cmp __n2) ; else \ - g_assertion_message_cmpnum (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'i'); } while (0) -#define g_assert_cmphex(n1, cmp, n2) do { guint64 __n1 = (n1), __n2 = (n2); \ - if (__n1 cmp __n2) ; else \ - g_assertion_message_cmpnum (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'x'); } while (0) -#define g_assert_cmpfloat(n1,cmp,n2) do { long double __n1 = (n1), __n2 = (n2); \ - if (__n1 cmp __n2) ; else \ - g_assertion_message_cmpnum (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #n1 " " #cmp " " #n2, __n1, #cmp, __n2, 'f'); } while (0) -#define g_assert_no_error(err) do { if (err) \ - g_assertion_message_error (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #err, err, 0, 0); } while (0) -#define g_assert_error(err, dom, c) do { if (!err || (err)->domain != dom || (err)->code != c) \ - g_assertion_message_error (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #err, err, dom, c); } while (0) -#define g_assert_true(expr) do { if G_LIKELY (expr) ; else \ - g_assertion_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #expr); \ - } while (0) -#define g_assert_false(expr) do { if G_LIKELY (!(expr)) ; else \ - g_assertion_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #expr); \ - } while (0) -#define g_assert_null(expr) do { if G_LIKELY ((expr) == NULL) ; else \ - g_assertion_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #expr); \ - } while (0) -#ifdef G_DISABLE_ASSERT -#define g_assert_not_reached() do { (void) 0; } while (0) -#define g_assert(expr) do { (void) 0; } while (0) -#else /* !G_DISABLE_ASSERT */ -#define g_assert_not_reached() do { g_assertion_message_expr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, NULL); } while (0) -#define g_assert(expr) do { if G_LIKELY (expr) ; else \ - g_assertion_message_expr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \ - #expr); \ - } while (0) -#endif /* !G_DISABLE_ASSERT */ - -GLIB_AVAILABLE_IN_ALL -int g_strcmp0 (const char *str1, - const char *str2); - -/* report performance results */ -GLIB_AVAILABLE_IN_ALL -void g_test_minimized_result (double minimized_quantity, - const char *format, - ...) G_GNUC_PRINTF (2, 3); -GLIB_AVAILABLE_IN_ALL -void g_test_maximized_result (double maximized_quantity, - const char *format, - ...) G_GNUC_PRINTF (2, 3); - -/* initialize testing framework */ -GLIB_AVAILABLE_IN_ALL -void g_test_init (int *argc, - char ***argv, - ...); -/* query testing framework config */ -#define g_test_initialized() (g_test_config_vars->test_initialized) -#define g_test_quick() (g_test_config_vars->test_quick) -#define g_test_slow() (!g_test_config_vars->test_quick) -#define g_test_thorough() (!g_test_config_vars->test_quick) -#define g_test_perf() (g_test_config_vars->test_perf) -#define g_test_verbose() (g_test_config_vars->test_verbose) -#define g_test_quiet() (g_test_config_vars->test_quiet) -#define g_test_undefined() (g_test_config_vars->test_undefined) -GLIB_AVAILABLE_IN_2_38 -gboolean g_test_subprocess (void); - -/* run all tests under toplevel suite (path: /) */ -GLIB_AVAILABLE_IN_ALL -int g_test_run (void); -/* hook up a test functions under test path */ -GLIB_AVAILABLE_IN_ALL -void g_test_add_func (const char *testpath, - GTestFunc test_func); - -GLIB_AVAILABLE_IN_ALL -void g_test_add_data_func (const char *testpath, - gconstpointer test_data, - GTestDataFunc test_func); - -GLIB_AVAILABLE_IN_2_34 -void g_test_add_data_func_full (const char *testpath, - gpointer test_data, - GTestDataFunc test_func, - GDestroyNotify data_free_func); - -/* tell about failure */ -GLIB_AVAILABLE_IN_2_30 -void g_test_fail (void); -GLIB_AVAILABLE_IN_2_38 -void g_test_incomplete (const gchar *msg); -GLIB_AVAILABLE_IN_2_38 -void g_test_skip (const gchar *msg); -GLIB_AVAILABLE_IN_2_38 -gboolean g_test_failed (void); -GLIB_AVAILABLE_IN_2_38 -void g_test_set_nonfatal_assertions (void); - -/* hook up a test with fixture under test path */ -#define g_test_add(testpath, Fixture, tdata, fsetup, ftest, fteardown) \ - G_STMT_START { \ - void (*add_vtable) (const char*, \ - gsize, \ - gconstpointer, \ - void (*) (Fixture*, gconstpointer), \ - void (*) (Fixture*, gconstpointer), \ - void (*) (Fixture*, gconstpointer)) = (void (*) (const gchar *, gsize, gconstpointer, void (*) (Fixture*, gconstpointer), void (*) (Fixture*, gconstpointer), void (*) (Fixture*, gconstpointer))) g_test_add_vtable; \ - add_vtable \ - (testpath, sizeof (Fixture), tdata, fsetup, ftest, fteardown); \ - } G_STMT_END - -/* add test messages to the test report */ -GLIB_AVAILABLE_IN_ALL -void g_test_message (const char *format, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -void g_test_bug_base (const char *uri_pattern); -GLIB_AVAILABLE_IN_ALL -void g_test_bug (const char *bug_uri_snippet); -/* measure test timings */ -GLIB_AVAILABLE_IN_ALL -void g_test_timer_start (void); -GLIB_AVAILABLE_IN_ALL -double g_test_timer_elapsed (void); /* elapsed seconds */ -GLIB_AVAILABLE_IN_ALL -double g_test_timer_last (void); /* repeat last elapsed() result */ - -/* automatically g_free or g_object_unref upon teardown */ -GLIB_AVAILABLE_IN_ALL -void g_test_queue_free (gpointer gfree_pointer); -GLIB_AVAILABLE_IN_ALL -void g_test_queue_destroy (GDestroyNotify destroy_func, - gpointer destroy_data); -#define g_test_queue_unref(gobject) g_test_queue_destroy (g_object_unref, gobject) - -typedef enum { - G_TEST_TRAP_SILENCE_STDOUT = 1 << 7, - G_TEST_TRAP_SILENCE_STDERR = 1 << 8, - G_TEST_TRAP_INHERIT_STDIN = 1 << 9 -} GTestTrapFlags; - -GLIB_DEPRECATED_IN_2_38_FOR (g_test_trap_subprocess) -gboolean g_test_trap_fork (guint64 usec_timeout, - GTestTrapFlags test_trap_flags); - -typedef enum { - G_TEST_SUBPROCESS_INHERIT_STDIN = 1 << 0, - G_TEST_SUBPROCESS_INHERIT_STDOUT = 1 << 1, - G_TEST_SUBPROCESS_INHERIT_STDERR = 1 << 2 -} GTestSubprocessFlags; - -GLIB_AVAILABLE_IN_2_38 -void g_test_trap_subprocess (const char *test_path, - guint64 usec_timeout, - GTestSubprocessFlags test_flags); - -GLIB_AVAILABLE_IN_ALL -gboolean g_test_trap_has_passed (void); -GLIB_AVAILABLE_IN_ALL -gboolean g_test_trap_reached_timeout (void); -#define g_test_trap_assert_passed() g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 0, 0) -#define g_test_trap_assert_failed() g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 1, 0) -#define g_test_trap_assert_stdout(soutpattern) g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 2, soutpattern) -#define g_test_trap_assert_stdout_unmatched(soutpattern) g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 3, soutpattern) -#define g_test_trap_assert_stderr(serrpattern) g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 4, serrpattern) -#define g_test_trap_assert_stderr_unmatched(serrpattern) g_test_trap_assertions (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, 5, serrpattern) - -/* provide seed-able random numbers for tests */ -#define g_test_rand_bit() (0 != (g_test_rand_int() & (1 << 15))) -GLIB_AVAILABLE_IN_ALL -gint32 g_test_rand_int (void); -GLIB_AVAILABLE_IN_ALL -gint32 g_test_rand_int_range (gint32 begin, - gint32 end); -GLIB_AVAILABLE_IN_ALL -double g_test_rand_double (void); -GLIB_AVAILABLE_IN_ALL -double g_test_rand_double_range (double range_start, - double range_end); - -/* semi-internal API */ -GLIB_AVAILABLE_IN_ALL -GTestCase* g_test_create_case (const char *test_name, - gsize data_size, - gconstpointer test_data, - GTestFixtureFunc data_setup, - GTestFixtureFunc data_test, - GTestFixtureFunc data_teardown); -GLIB_AVAILABLE_IN_ALL -GTestSuite* g_test_create_suite (const char *suite_name); -GLIB_AVAILABLE_IN_ALL -GTestSuite* g_test_get_root (void); -GLIB_AVAILABLE_IN_ALL -void g_test_suite_add (GTestSuite *suite, - GTestCase *test_case); -GLIB_AVAILABLE_IN_ALL -void g_test_suite_add_suite (GTestSuite *suite, - GTestSuite *nestedsuite); -GLIB_AVAILABLE_IN_ALL -int g_test_run_suite (GTestSuite *suite); - -/* internal ABI */ -GLIB_AVAILABLE_IN_ALL -void g_test_trap_assertions (const char *domain, - const char *file, - int line, - const char *func, - guint64 assertion_flags, /* 0-pass, 1-fail, 2-outpattern, 4-errpattern */ - const char *pattern); -GLIB_AVAILABLE_IN_ALL -void g_assertion_message (const char *domain, - const char *file, - int line, - const char *func, - const char *message); -GLIB_AVAILABLE_IN_ALL -void g_assertion_message_expr (const char *domain, - const char *file, - int line, - const char *func, - const char *expr) G_GNUC_NORETURN; -GLIB_AVAILABLE_IN_ALL -void g_assertion_message_cmpstr (const char *domain, - const char *file, - int line, - const char *func, - const char *expr, - const char *arg1, - const char *cmp, - const char *arg2); -GLIB_AVAILABLE_IN_ALL -void g_assertion_message_cmpnum (const char *domain, - const char *file, - int line, - const char *func, - const char *expr, - long double arg1, - const char *cmp, - long double arg2, - char numtype); -GLIB_AVAILABLE_IN_ALL -void g_assertion_message_error (const char *domain, - const char *file, - int line, - const char *func, - const char *expr, - const GError *error, - GQuark error_domain, - int error_code); -GLIB_AVAILABLE_IN_ALL -void g_test_add_vtable (const char *testpath, - gsize data_size, - gconstpointer test_data, - GTestFixtureFunc data_setup, - GTestFixtureFunc data_test, - GTestFixtureFunc data_teardown); -typedef struct { - gboolean test_initialized; - gboolean test_quick; /* disable thorough tests */ - gboolean test_perf; /* run performance tests */ - gboolean test_verbose; /* extra info */ - gboolean test_quiet; /* reduce output */ - gboolean test_undefined; /* run tests that are meant to assert */ -} GTestConfig; -GLIB_VAR const GTestConfig * const g_test_config_vars; - -/* internal logging API */ -typedef enum { - G_TEST_LOG_NONE, - G_TEST_LOG_ERROR, /* s:msg */ - G_TEST_LOG_START_BINARY, /* s:binaryname s:seed */ - G_TEST_LOG_LIST_CASE, /* s:testpath */ - G_TEST_LOG_SKIP_CASE, /* s:testpath */ - G_TEST_LOG_START_CASE, /* s:testpath */ - G_TEST_LOG_STOP_CASE, /* d:status d:nforks d:elapsed */ - G_TEST_LOG_MIN_RESULT, /* s:blurb d:result */ - G_TEST_LOG_MAX_RESULT, /* s:blurb d:result */ - G_TEST_LOG_MESSAGE, /* s:blurb */ - G_TEST_LOG_START_SUITE, - G_TEST_LOG_STOP_SUITE -} GTestLogType; - -typedef struct { - GTestLogType log_type; - guint n_strings; - gchar **strings; /* NULL terminated */ - guint n_nums; - long double *nums; -} GTestLogMsg; -typedef struct { - /*< private >*/ - GString *data; - GSList *msgs; -} GTestLogBuffer; - -GLIB_AVAILABLE_IN_ALL -const char* g_test_log_type_name (GTestLogType log_type); -GLIB_AVAILABLE_IN_ALL -GTestLogBuffer* g_test_log_buffer_new (void); -GLIB_AVAILABLE_IN_ALL -void g_test_log_buffer_free (GTestLogBuffer *tbuffer); -GLIB_AVAILABLE_IN_ALL -void g_test_log_buffer_push (GTestLogBuffer *tbuffer, - guint n_bytes, - const guint8 *bytes); -GLIB_AVAILABLE_IN_ALL -GTestLogMsg* g_test_log_buffer_pop (GTestLogBuffer *tbuffer); -GLIB_AVAILABLE_IN_ALL -void g_test_log_msg_free (GTestLogMsg *tmsg); - -/** - * GTestLogFatalFunc: - * @log_domain: the log domain of the message - * @log_level: the log level of the message (including the fatal and recursion flags) - * @message: the message to process - * @user_data: user data, set in g_test_log_set_fatal_handler() - * - * Specifies the prototype of fatal log handler functions. - * - * Return value: %TRUE if the program should abort, %FALSE otherwise - * - * Since: 2.22 - */ -typedef gboolean (*GTestLogFatalFunc) (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *message, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -void -g_test_log_set_fatal_handler (GTestLogFatalFunc log_func, - gpointer user_data); - -GLIB_AVAILABLE_IN_2_34 -void g_test_expect_message (const gchar *log_domain, - GLogLevelFlags log_level, - const gchar *pattern); -GLIB_AVAILABLE_IN_2_34 -void g_test_assert_expected_messages_internal (const char *domain, - const char *file, - int line, - const char *func); - -typedef enum -{ - G_TEST_DIST, - G_TEST_BUILT -} GTestFileType; - -GLIB_AVAILABLE_IN_2_38 -gchar * g_test_build_filename (GTestFileType file_type, - const gchar *first_path, - ...) G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_2_38 -const gchar *g_test_get_dir (GTestFileType file_type); -GLIB_AVAILABLE_IN_2_38 -const gchar *g_test_get_filename (GTestFileType file_type, - const gchar *first_path, - ...) G_GNUC_NULL_TERMINATED; - -#define g_test_assert_expected_messages() g_test_assert_expected_messages_internal (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC) - -G_END_DECLS - -#endif /* __G_TEST_UTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthread.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthread.h deleted file mode 100644 index 43c7891..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthread.h +++ /dev/null @@ -1,273 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_THREAD_H__ -#define __G_THREAD_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_THREAD_ERROR g_thread_error_quark () -GLIB_AVAILABLE_IN_ALL -GQuark g_thread_error_quark (void); - -typedef enum -{ - G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */ -} GThreadError; - -typedef gpointer (*GThreadFunc) (gpointer data); - -typedef struct _GThread GThread; - -typedef union _GMutex GMutex; -typedef struct _GRecMutex GRecMutex; -typedef struct _GRWLock GRWLock; -typedef struct _GCond GCond; -typedef struct _GPrivate GPrivate; -typedef struct _GOnce GOnce; - -union _GMutex -{ - /*< private >*/ - gpointer p; - guint i[2]; -}; - -struct _GRWLock -{ - /*< private >*/ - gpointer p; - guint i[2]; -}; - -struct _GCond -{ - /*< private >*/ - gpointer p; - guint i[2]; -}; - -struct _GRecMutex -{ - /*< private >*/ - gpointer p; - guint i[2]; -}; - -#define G_PRIVATE_INIT(notify) { NULL, (notify), { NULL, NULL } } -struct _GPrivate -{ - /*< private >*/ - gpointer p; - GDestroyNotify notify; - gpointer future[2]; -}; - -typedef enum -{ - G_ONCE_STATUS_NOTCALLED, - G_ONCE_STATUS_PROGRESS, - G_ONCE_STATUS_READY -} GOnceStatus; - -#define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL } -struct _GOnce -{ - volatile GOnceStatus status; - volatile gpointer retval; -}; - -#define G_LOCK_NAME(name) g__ ## name ## _lock -#define G_LOCK_DEFINE_STATIC(name) static G_LOCK_DEFINE (name) -#define G_LOCK_DEFINE(name) GMutex G_LOCK_NAME (name) -#define G_LOCK_EXTERN(name) extern GMutex G_LOCK_NAME (name) - -#ifdef G_DEBUG_LOCKS -# define G_LOCK(name) G_STMT_START{ \ - g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ - "file %s: line %d (%s): locking: %s ", \ - __FILE__, __LINE__, G_STRFUNC, \ - #name); \ - g_mutex_lock (&G_LOCK_NAME (name)); \ - }G_STMT_END -# define G_UNLOCK(name) G_STMT_START{ \ - g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ - "file %s: line %d (%s): unlocking: %s ", \ - __FILE__, __LINE__, G_STRFUNC, \ - #name); \ - g_mutex_unlock (&G_LOCK_NAME (name)); \ - }G_STMT_END -# define G_TRYLOCK(name) \ - (g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ - "file %s: line %d (%s): try locking: %s ", \ - __FILE__, __LINE__, G_STRFUNC, \ - #name), g_mutex_trylock (&G_LOCK_NAME (name))) -#else /* !G_DEBUG_LOCKS */ -# define G_LOCK(name) g_mutex_lock (&G_LOCK_NAME (name)) -# define G_UNLOCK(name) g_mutex_unlock (&G_LOCK_NAME (name)) -# define G_TRYLOCK(name) g_mutex_trylock (&G_LOCK_NAME (name)) -#endif /* !G_DEBUG_LOCKS */ - -GLIB_AVAILABLE_IN_2_32 -GThread * g_thread_ref (GThread *thread); -GLIB_AVAILABLE_IN_2_32 -void g_thread_unref (GThread *thread); -GLIB_AVAILABLE_IN_2_32 -GThread * g_thread_new (const gchar *name, - GThreadFunc func, - gpointer data); -GLIB_AVAILABLE_IN_2_32 -GThread * g_thread_try_new (const gchar *name, - GThreadFunc func, - gpointer data, - GError **error); -GLIB_AVAILABLE_IN_ALL -GThread * g_thread_self (void); -GLIB_AVAILABLE_IN_ALL -void g_thread_exit (gpointer retval); -GLIB_AVAILABLE_IN_ALL -gpointer g_thread_join (GThread *thread); -GLIB_AVAILABLE_IN_ALL -void g_thread_yield (void); - - -GLIB_AVAILABLE_IN_2_32 -void g_mutex_init (GMutex *mutex); -GLIB_AVAILABLE_IN_2_32 -void g_mutex_clear (GMutex *mutex); -GLIB_AVAILABLE_IN_ALL -void g_mutex_lock (GMutex *mutex); -GLIB_AVAILABLE_IN_ALL -gboolean g_mutex_trylock (GMutex *mutex); -GLIB_AVAILABLE_IN_ALL -void g_mutex_unlock (GMutex *mutex); - -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_init (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_clear (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_writer_lock (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -gboolean g_rw_lock_writer_trylock (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_writer_unlock (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_reader_lock (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -gboolean g_rw_lock_reader_trylock (GRWLock *rw_lock); -GLIB_AVAILABLE_IN_2_32 -void g_rw_lock_reader_unlock (GRWLock *rw_lock); - -GLIB_AVAILABLE_IN_2_32 -void g_rec_mutex_init (GRecMutex *rec_mutex); -GLIB_AVAILABLE_IN_2_32 -void g_rec_mutex_clear (GRecMutex *rec_mutex); -GLIB_AVAILABLE_IN_2_32 -void g_rec_mutex_lock (GRecMutex *rec_mutex); -GLIB_AVAILABLE_IN_2_32 -gboolean g_rec_mutex_trylock (GRecMutex *rec_mutex); -GLIB_AVAILABLE_IN_2_32 -void g_rec_mutex_unlock (GRecMutex *rec_mutex); - -GLIB_AVAILABLE_IN_2_32 -void g_cond_init (GCond *cond); -GLIB_AVAILABLE_IN_2_32 -void g_cond_clear (GCond *cond); -GLIB_AVAILABLE_IN_ALL -void g_cond_wait (GCond *cond, - GMutex *mutex); -GLIB_AVAILABLE_IN_ALL -void g_cond_signal (GCond *cond); -GLIB_AVAILABLE_IN_ALL -void g_cond_broadcast (GCond *cond); -GLIB_AVAILABLE_IN_2_32 -gboolean g_cond_wait_until (GCond *cond, - GMutex *mutex, - gint64 end_time); - -GLIB_AVAILABLE_IN_ALL -gpointer g_private_get (GPrivate *key); -GLIB_AVAILABLE_IN_ALL -void g_private_set (GPrivate *key, - gpointer value); -GLIB_AVAILABLE_IN_2_32 -void g_private_replace (GPrivate *key, - gpointer value); - -GLIB_AVAILABLE_IN_ALL -gpointer g_once_impl (GOnce *once, - GThreadFunc func, - gpointer arg); -GLIB_AVAILABLE_IN_ALL -gboolean g_once_init_enter (volatile void *location); -GLIB_AVAILABLE_IN_ALL -void g_once_init_leave (volatile void *location, - gsize result); - -#ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED -# define g_once(once, func, arg) g_once_impl ((once), (func), (arg)) -#else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/ -# define g_once(once, func, arg) \ - (((once)->status == G_ONCE_STATUS_READY) ? \ - (once)->retval : \ - g_once_impl ((once), (func), (arg))) -#endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */ - -#ifdef __GNUC__ -# define g_once_init_enter(location) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(location) == sizeof (gpointer)); \ - (void) (0 ? (gpointer) *(location) : 0); \ - (!g_atomic_pointer_get (location) && \ - g_once_init_enter (location)); \ - })) -# define g_once_init_leave(location, result) \ - (G_GNUC_EXTENSION ({ \ - G_STATIC_ASSERT (sizeof *(location) == sizeof (gpointer)); \ - (void) (0 ? *(location) = (result) : 0); \ - g_once_init_leave ((location), (gsize) (result)); \ - })) -#else -# define g_once_init_enter(location) \ - (g_once_init_enter((location))) -# define g_once_init_leave(location, result) \ - (g_once_init_leave((location), (gsize) (result))) -#endif - -GLIB_AVAILABLE_IN_2_36 -guint g_get_num_processors (void); - -G_END_DECLS - -#endif /* __G_THREAD_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthreadpool.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthreadpool.h deleted file mode 100644 index c05d700..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gthreadpool.h +++ /dev/null @@ -1,94 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_THREADPOOL_H__ -#define __G_THREADPOOL_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GThreadPool GThreadPool; - -/* Thread Pools - */ - -struct _GThreadPool -{ - GFunc func; - gpointer user_data; - gboolean exclusive; -}; - -GLIB_AVAILABLE_IN_ALL -GThreadPool * g_thread_pool_new (GFunc func, - gpointer user_data, - gint max_threads, - gboolean exclusive, - GError **error); -GLIB_AVAILABLE_IN_ALL -void g_thread_pool_free (GThreadPool *pool, - gboolean immediate, - gboolean wait_); -GLIB_AVAILABLE_IN_ALL -gboolean g_thread_pool_push (GThreadPool *pool, - gpointer data, - GError **error); -GLIB_AVAILABLE_IN_ALL -guint g_thread_pool_unprocessed (GThreadPool *pool); -GLIB_AVAILABLE_IN_ALL -void g_thread_pool_set_sort_function (GThreadPool *pool, - GCompareDataFunc func, - gpointer user_data); -GLIB_AVAILABLE_IN_ALL -gboolean g_thread_pool_set_max_threads (GThreadPool *pool, - gint max_threads, - GError **error); -GLIB_AVAILABLE_IN_ALL -gint g_thread_pool_get_max_threads (GThreadPool *pool); -GLIB_AVAILABLE_IN_ALL -guint g_thread_pool_get_num_threads (GThreadPool *pool); - -GLIB_AVAILABLE_IN_ALL -void g_thread_pool_set_max_unused_threads (gint max_threads); -GLIB_AVAILABLE_IN_ALL -gint g_thread_pool_get_max_unused_threads (void); -GLIB_AVAILABLE_IN_ALL -guint g_thread_pool_get_num_unused_threads (void); -GLIB_AVAILABLE_IN_ALL -void g_thread_pool_stop_unused_threads (void); -GLIB_AVAILABLE_IN_ALL -void g_thread_pool_set_max_idle_time (guint interval); -GLIB_AVAILABLE_IN_ALL -guint g_thread_pool_get_max_idle_time (void); - -G_END_DECLS - -#endif /* __G_THREADPOOL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimer.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimer.h deleted file mode 100644 index 702e002..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimer.h +++ /dev/null @@ -1,76 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_TIMER_H__ -#define __G_TIMER_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* Timer - */ - -/* microseconds per second */ -typedef struct _GTimer GTimer; - -#define G_USEC_PER_SEC 1000000 - -GLIB_AVAILABLE_IN_ALL -GTimer* g_timer_new (void); -GLIB_AVAILABLE_IN_ALL -void g_timer_destroy (GTimer *timer); -GLIB_AVAILABLE_IN_ALL -void g_timer_start (GTimer *timer); -GLIB_AVAILABLE_IN_ALL -void g_timer_stop (GTimer *timer); -GLIB_AVAILABLE_IN_ALL -void g_timer_reset (GTimer *timer); -GLIB_AVAILABLE_IN_ALL -void g_timer_continue (GTimer *timer); -GLIB_AVAILABLE_IN_ALL -gdouble g_timer_elapsed (GTimer *timer, - gulong *microseconds); - -GLIB_AVAILABLE_IN_ALL -void g_usleep (gulong microseconds); - -GLIB_AVAILABLE_IN_ALL -void g_time_val_add (GTimeVal *time_, - glong microseconds); -GLIB_AVAILABLE_IN_ALL -gboolean g_time_val_from_iso8601 (const gchar *iso_date, - GTimeVal *time_); -GLIB_AVAILABLE_IN_ALL -gchar* g_time_val_to_iso8601 (GTimeVal *time_) G_GNUC_MALLOC; - -G_END_DECLS - -#endif /* __G_TIMER_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimezone.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimezone.h deleted file mode 100644 index 536acb1..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtimezone.h +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Copyright © 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_TIME_ZONE_H__ -#define __G_TIME_ZONE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GTimeZone GTimeZone; - -/** - * GTimeType: - * @G_TIME_TYPE_STANDARD: the time is in local standard time - * @G_TIME_TYPE_DAYLIGHT: the time is in local daylight time - * @G_TIME_TYPE_UNIVERSAL: the time is in UTC - * - * Disambiguates a given time in two ways. - * - * First, specifies if the given time is in universal or local time. - * - * Second, if the time is in local time, specifies if it is local - * standard time or local daylight time. This is important for the case - * where the same local time occurs twice (during daylight savings time - * transitions, for example). - */ -typedef enum -{ - G_TIME_TYPE_STANDARD, - G_TIME_TYPE_DAYLIGHT, - G_TIME_TYPE_UNIVERSAL -} GTimeType; - -GLIB_AVAILABLE_IN_ALL -GTimeZone * g_time_zone_new (const gchar *identifier); -GLIB_AVAILABLE_IN_ALL -GTimeZone * g_time_zone_new_utc (void); -GLIB_AVAILABLE_IN_ALL -GTimeZone * g_time_zone_new_local (void); - -GLIB_AVAILABLE_IN_ALL -GTimeZone * g_time_zone_ref (GTimeZone *tz); -GLIB_AVAILABLE_IN_ALL -void g_time_zone_unref (GTimeZone *tz); - -GLIB_AVAILABLE_IN_ALL -gint g_time_zone_find_interval (GTimeZone *tz, - GTimeType type, - gint64 time_); - -GLIB_AVAILABLE_IN_ALL -gint g_time_zone_adjust_time (GTimeZone *tz, - GTimeType type, - gint64 *time_); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_time_zone_get_abbreviation (GTimeZone *tz, - gint interval); -GLIB_AVAILABLE_IN_ALL -gint32 g_time_zone_get_offset (GTimeZone *tz, - gint interval); -GLIB_AVAILABLE_IN_ALL -gboolean g_time_zone_is_dst (GTimeZone *tz, - gint interval); - -G_END_DECLS - -#endif /* __G_TIME_ZONE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtrashstack.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtrashstack.h deleted file mode 100644 index bff504d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtrashstack.h +++ /dev/null @@ -1,103 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_TRASH_STACK_H__ -#define __G_TRASH_STACK_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GTrashStack GTrashStack; -struct _GTrashStack -{ - GTrashStack *next; -}; - -G_INLINE_FUNC void g_trash_stack_push (GTrashStack **stack_p, - gpointer data_p); -G_INLINE_FUNC gpointer g_trash_stack_pop (GTrashStack **stack_p); -G_INLINE_FUNC gpointer g_trash_stack_peek (GTrashStack **stack_p); -G_INLINE_FUNC guint g_trash_stack_height (GTrashStack **stack_p); - -#if defined (G_CAN_INLINE) || defined (__G_TRASH_STACK_C__) - -G_INLINE_FUNC void -g_trash_stack_push (GTrashStack **stack_p, - gpointer data_p) -{ - GTrashStack *data = (GTrashStack *) data_p; - - data->next = *stack_p; - *stack_p = data; -} -G_INLINE_FUNC gpointer -g_trash_stack_pop (GTrashStack **stack_p) -{ - GTrashStack *data; - - data = *stack_p; - if (data) - { - *stack_p = data->next; - /* NULLify private pointer here, most platforms store NULL as - * subsequent 0 bytes - */ - data->next = NULL; - } - - return data; -} -G_INLINE_FUNC gpointer -g_trash_stack_peek (GTrashStack **stack_p) -{ - GTrashStack *data; - - data = *stack_p; - - return data; -} -G_INLINE_FUNC guint -g_trash_stack_height (GTrashStack **stack_p) -{ - GTrashStack *data; - guint i = 0; - - for (data = *stack_p; data; data = data->next) - i++; - - return i; -} - -#endif /* G_CAN_INLINE || __G_TRASH_STACK_C__ */ - -G_END_DECLS - -#endif /* __G_UTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtree.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtree.h deleted file mode 100644 index 34cb8bb..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtree.h +++ /dev/null @@ -1,106 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_TREE_H__ -#define __G_TREE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -typedef struct _GTree GTree; - -typedef gboolean (*GTraverseFunc) (gpointer key, - gpointer value, - gpointer data); - -/* Balanced binary trees - */ -GLIB_AVAILABLE_IN_ALL -GTree* g_tree_new (GCompareFunc key_compare_func); -GLIB_AVAILABLE_IN_ALL -GTree* g_tree_new_with_data (GCompareDataFunc key_compare_func, - gpointer key_compare_data); -GLIB_AVAILABLE_IN_ALL -GTree* g_tree_new_full (GCompareDataFunc key_compare_func, - gpointer key_compare_data, - GDestroyNotify key_destroy_func, - GDestroyNotify value_destroy_func); -GLIB_AVAILABLE_IN_ALL -GTree* g_tree_ref (GTree *tree); -GLIB_AVAILABLE_IN_ALL -void g_tree_unref (GTree *tree); -GLIB_AVAILABLE_IN_ALL -void g_tree_destroy (GTree *tree); -GLIB_AVAILABLE_IN_ALL -void g_tree_insert (GTree *tree, - gpointer key, - gpointer value); -GLIB_AVAILABLE_IN_ALL -void g_tree_replace (GTree *tree, - gpointer key, - gpointer value); -GLIB_AVAILABLE_IN_ALL -gboolean g_tree_remove (GTree *tree, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -gboolean g_tree_steal (GTree *tree, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -gpointer g_tree_lookup (GTree *tree, - gconstpointer key); -GLIB_AVAILABLE_IN_ALL -gboolean g_tree_lookup_extended (GTree *tree, - gconstpointer lookup_key, - gpointer *orig_key, - gpointer *value); -GLIB_AVAILABLE_IN_ALL -void g_tree_foreach (GTree *tree, - GTraverseFunc func, - gpointer user_data); - -GLIB_DEPRECATED -void g_tree_traverse (GTree *tree, - GTraverseFunc traverse_func, - GTraverseType traverse_type, - gpointer user_data); - -GLIB_AVAILABLE_IN_ALL -gpointer g_tree_search (GTree *tree, - GCompareFunc search_func, - gconstpointer user_data); -GLIB_AVAILABLE_IN_ALL -gint g_tree_height (GTree *tree); -GLIB_AVAILABLE_IN_ALL -gint g_tree_nnodes (GTree *tree); - -G_END_DECLS - -#endif /* __G_TREE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtypes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtypes.h deleted file mode 100644 index c18e0bf..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gtypes.h +++ /dev/null @@ -1,484 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_TYPES_H__ -#define __G_TYPES_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include - -G_BEGIN_DECLS - -/* Provide type definitions for commonly used types. - * These are useful because a "gint8" can be adjusted - * to be 1 byte (8 bits) on all platforms. Similarly and - * more importantly, "gint32" can be adjusted to be - * 4 bytes (32 bits) on all platforms. - */ - -typedef char gchar; -typedef short gshort; -typedef long glong; -typedef int gint; -typedef gint gboolean; - -typedef unsigned char guchar; -typedef unsigned short gushort; -typedef unsigned long gulong; -typedef unsigned int guint; - -typedef float gfloat; -typedef double gdouble; - -/* Define min and max constants for the fixed size numerical types */ -#define G_MININT8 ((gint8) 0x80) -#define G_MAXINT8 ((gint8) 0x7f) -#define G_MAXUINT8 ((guint8) 0xff) - -#define G_MININT16 ((gint16) 0x8000) -#define G_MAXINT16 ((gint16) 0x7fff) -#define G_MAXUINT16 ((guint16) 0xffff) - -#define G_MININT32 ((gint32) 0x80000000) -#define G_MAXINT32 ((gint32) 0x7fffffff) -#define G_MAXUINT32 ((guint32) 0xffffffff) - -#define G_MININT64 ((gint64) G_GINT64_CONSTANT(0x8000000000000000)) -#define G_MAXINT64 G_GINT64_CONSTANT(0x7fffffffffffffff) -#define G_MAXUINT64 G_GINT64_CONSTANT(0xffffffffffffffffU) - -typedef void* gpointer; -typedef const void *gconstpointer; - -typedef gint (*GCompareFunc) (gconstpointer a, - gconstpointer b); -typedef gint (*GCompareDataFunc) (gconstpointer a, - gconstpointer b, - gpointer user_data); -typedef gboolean (*GEqualFunc) (gconstpointer a, - gconstpointer b); -typedef void (*GDestroyNotify) (gpointer data); -typedef void (*GFunc) (gpointer data, - gpointer user_data); -typedef guint (*GHashFunc) (gconstpointer key); -typedef void (*GHFunc) (gpointer key, - gpointer value, - gpointer user_data); - -/** - * GFreeFunc: - * @data: a data pointer - * - * Declares a type of function which takes an arbitrary - * data pointer argument and has no return value. It is - * not currently used in GLib or GTK+. - */ -typedef void (*GFreeFunc) (gpointer data); - -/** - * GTranslateFunc: - * @str: the untranslated string - * @data: user data specified when installing the function, e.g. - * in g_option_group_set_translate_func() - * - * The type of functions which are used to translate user-visible - * strings, for output. - * - * Returns: a translation of the string for the current locale. - * The returned string is owned by GLib and must not be freed. - */ -typedef const gchar * (*GTranslateFunc) (const gchar *str, - gpointer data); - - -/* Define some mathematical constants that aren't available - * symbolically in some strict ISO C implementations. - * - * Note that the large number of digits used in these definitions - * doesn't imply that GLib or current computers in general would be - * able to handle floating point numbers with an accuracy like this. - * It's mostly an exercise in futility and future proofing. For - * extended precision floating point support, look somewhere else - * than GLib. - */ -#define G_E 2.7182818284590452353602874713526624977572470937000 -#define G_LN2 0.69314718055994530941723212145817656807550013436026 -#define G_LN10 2.3025850929940456840179914546843642076011014886288 -#define G_PI 3.1415926535897932384626433832795028841971693993751 -#define G_PI_2 1.5707963267948966192313216916397514420985846996876 -#define G_PI_4 0.78539816339744830961566084581987572104929234984378 -#define G_SQRT2 1.4142135623730950488016887242096980785696718753769 - -/* Portable endian checks and conversions - * - * glibconfig.h defines G_BYTE_ORDER which expands to one of - * the below macros. - */ -#define G_LITTLE_ENDIAN 1234 -#define G_BIG_ENDIAN 4321 -#define G_PDP_ENDIAN 3412 /* unused, need specific PDP check */ - - -/* Basic bit swapping functions - */ -#define GUINT16_SWAP_LE_BE_CONSTANT(val) ((guint16) ( \ - (guint16) ((guint16) (val) >> 8) | \ - (guint16) ((guint16) (val) << 8))) - -#define GUINT32_SWAP_LE_BE_CONSTANT(val) ((guint32) ( \ - (((guint32) (val) & (guint32) 0x000000ffU) << 24) | \ - (((guint32) (val) & (guint32) 0x0000ff00U) << 8) | \ - (((guint32) (val) & (guint32) 0x00ff0000U) >> 8) | \ - (((guint32) (val) & (guint32) 0xff000000U) >> 24))) - -#define GUINT64_SWAP_LE_BE_CONSTANT(val) ((guint64) ( \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x00000000000000ffU)) << 56) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x000000000000ff00U)) << 40) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x0000000000ff0000U)) << 24) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x00000000ff000000U)) << 8) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x000000ff00000000U)) >> 8) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x0000ff0000000000U)) >> 24) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0x00ff000000000000U)) >> 40) | \ - (((guint64) (val) & \ - (guint64) G_GINT64_CONSTANT (0xff00000000000000U)) >> 56))) - -/* Arch specific stuff for speed - */ -#if defined (__GNUC__) && (__GNUC__ >= 2) && defined (__OPTIMIZE__) - -# if __GNUC__ >= 4 && defined (__GNUC_MINOR__) && __GNUC_MINOR__ >= 3 -# define GUINT32_SWAP_LE_BE(val) ((guint32) __builtin_bswap32 ((gint32) (val))) -# define GUINT64_SWAP_LE_BE(val) ((guint64) __builtin_bswap64 ((gint64) (val))) -# endif - -# if defined (__i386__) -# define GUINT16_SWAP_LE_BE_IA32(val) \ - (G_GNUC_EXTENSION \ - ({ register guint16 __v, __x = ((guint16) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT16_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ ("rorw $8, %w0" \ - : "=r" (__v) \ - : "0" (__x) \ - : "cc"); \ - __v; })) -# if !defined (__i486__) && !defined (__i586__) \ - && !defined (__pentium__) && !defined (__i686__) \ - && !defined (__pentiumpro__) && !defined (__pentium4__) -# define GUINT32_SWAP_LE_BE_IA32(val) \ - (G_GNUC_EXTENSION \ - ({ register guint32 __v, __x = ((guint32) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ ("rorw $8, %w0\n\t" \ - "rorl $16, %0\n\t" \ - "rorw $8, %w0" \ - : "=r" (__v) \ - : "0" (__x) \ - : "cc"); \ - __v; })) -# else /* 486 and higher has bswap */ -# define GUINT32_SWAP_LE_BE_IA32(val) \ - (G_GNUC_EXTENSION \ - ({ register guint32 __v, __x = ((guint32) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ ("bswap %0" \ - : "=r" (__v) \ - : "0" (__x)); \ - __v; })) -# endif /* processor specific 32-bit stuff */ -# define GUINT64_SWAP_LE_BE_IA32(val) \ - (G_GNUC_EXTENSION \ - ({ union { guint64 __ll; \ - guint32 __l[2]; } __w, __r; \ - __w.__ll = ((guint64) (val)); \ - if (__builtin_constant_p (__w.__ll)) \ - __r.__ll = GUINT64_SWAP_LE_BE_CONSTANT (__w.__ll); \ - else \ - { \ - __r.__l[0] = GUINT32_SWAP_LE_BE (__w.__l[1]); \ - __r.__l[1] = GUINT32_SWAP_LE_BE (__w.__l[0]); \ - } \ - __r.__ll; })) - /* Possibly just use the constant version and let gcc figure it out? */ -# define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_IA32 (val)) -# ifndef GUINT32_SWAP_LE_BE -# define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_IA32 (val)) -# endif -# ifndef GUINT64_SWAP_LE_BE -# define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_IA32 (val)) -# endif -# elif defined (__ia64__) -# define GUINT16_SWAP_LE_BE_IA64(val) \ - (G_GNUC_EXTENSION \ - ({ register guint16 __v, __x = ((guint16) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT16_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ __volatile__ ("shl %0 = %1, 48 ;;" \ - "mux1 %0 = %0, @rev ;;" \ - : "=r" (__v) \ - : "r" (__x)); \ - __v; })) -# define GUINT32_SWAP_LE_BE_IA64(val) \ - (G_GNUC_EXTENSION \ - ({ register guint32 __v, __x = ((guint32) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ __volatile__ ("shl %0 = %1, 32 ;;" \ - "mux1 %0 = %0, @rev ;;" \ - : "=r" (__v) \ - : "r" (__x)); \ - __v; })) -# define GUINT64_SWAP_LE_BE_IA64(val) \ - (G_GNUC_EXTENSION \ - ({ register guint64 __v, __x = ((guint64) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT64_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ __volatile__ ("mux1 %0 = %1, @rev ;;" \ - : "=r" (__v) \ - : "r" (__x)); \ - __v; })) -# define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_IA64 (val)) -# ifndef GUINT32_SWAP_LE_BE -# define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_IA64 (val)) -# endif -# ifndef GUINT64_SWAP_LE_BE -# define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_IA64 (val)) -# endif -# elif defined (__x86_64__) -# define GUINT32_SWAP_LE_BE_X86_64(val) \ - (G_GNUC_EXTENSION \ - ({ register guint32 __v, __x = ((guint32) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT32_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ ("bswapl %0" \ - : "=r" (__v) \ - : "0" (__x)); \ - __v; })) -# define GUINT64_SWAP_LE_BE_X86_64(val) \ - (G_GNUC_EXTENSION \ - ({ register guint64 __v, __x = ((guint64) (val)); \ - if (__builtin_constant_p (__x)) \ - __v = GUINT64_SWAP_LE_BE_CONSTANT (__x); \ - else \ - __asm__ ("bswapq %0" \ - : "=r" (__v) \ - : "0" (__x)); \ - __v; })) - /* gcc seems to figure out optimal code for this on its own */ -# define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_CONSTANT (val)) -# ifndef GUINT32_SWAP_LE_BE -# define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_X86_64 (val)) -# endif -# ifndef GUINT64_SWAP_LE_BE -# define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_X86_64 (val)) -# endif -# else /* generic gcc */ -# define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_CONSTANT (val)) -# ifndef GUINT32_SWAP_LE_BE -# define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_CONSTANT (val)) -# endif -# ifndef GUINT64_SWAP_LE_BE -# define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_CONSTANT (val)) -# endif -# endif -#else /* generic */ -# define GUINT16_SWAP_LE_BE(val) (GUINT16_SWAP_LE_BE_CONSTANT (val)) -# define GUINT32_SWAP_LE_BE(val) (GUINT32_SWAP_LE_BE_CONSTANT (val)) -# define GUINT64_SWAP_LE_BE(val) (GUINT64_SWAP_LE_BE_CONSTANT (val)) -#endif /* generic */ - -#define GUINT16_SWAP_LE_PDP(val) ((guint16) (val)) -#define GUINT16_SWAP_BE_PDP(val) (GUINT16_SWAP_LE_BE (val)) -#define GUINT32_SWAP_LE_PDP(val) ((guint32) ( \ - (((guint32) (val) & (guint32) 0x0000ffffU) << 16) | \ - (((guint32) (val) & (guint32) 0xffff0000U) >> 16))) -#define GUINT32_SWAP_BE_PDP(val) ((guint32) ( \ - (((guint32) (val) & (guint32) 0x00ff00ffU) << 8) | \ - (((guint32) (val) & (guint32) 0xff00ff00U) >> 8))) - -/* The G*_TO_?E() macros are defined in glibconfig.h. - * The transformation is symmetric, so the FROM just maps to the TO. - */ -#define GINT16_FROM_LE(val) (GINT16_TO_LE (val)) -#define GUINT16_FROM_LE(val) (GUINT16_TO_LE (val)) -#define GINT16_FROM_BE(val) (GINT16_TO_BE (val)) -#define GUINT16_FROM_BE(val) (GUINT16_TO_BE (val)) -#define GINT32_FROM_LE(val) (GINT32_TO_LE (val)) -#define GUINT32_FROM_LE(val) (GUINT32_TO_LE (val)) -#define GINT32_FROM_BE(val) (GINT32_TO_BE (val)) -#define GUINT32_FROM_BE(val) (GUINT32_TO_BE (val)) - -#define GINT64_FROM_LE(val) (GINT64_TO_LE (val)) -#define GUINT64_FROM_LE(val) (GUINT64_TO_LE (val)) -#define GINT64_FROM_BE(val) (GINT64_TO_BE (val)) -#define GUINT64_FROM_BE(val) (GUINT64_TO_BE (val)) - -#define GLONG_FROM_LE(val) (GLONG_TO_LE (val)) -#define GULONG_FROM_LE(val) (GULONG_TO_LE (val)) -#define GLONG_FROM_BE(val) (GLONG_TO_BE (val)) -#define GULONG_FROM_BE(val) (GULONG_TO_BE (val)) - -#define GINT_FROM_LE(val) (GINT_TO_LE (val)) -#define GUINT_FROM_LE(val) (GUINT_TO_LE (val)) -#define GINT_FROM_BE(val) (GINT_TO_BE (val)) -#define GUINT_FROM_BE(val) (GUINT_TO_BE (val)) - -#define GSIZE_FROM_LE(val) (GSIZE_TO_LE (val)) -#define GSSIZE_FROM_LE(val) (GSSIZE_TO_LE (val)) -#define GSIZE_FROM_BE(val) (GSIZE_TO_BE (val)) -#define GSSIZE_FROM_BE(val) (GSSIZE_TO_BE (val)) - - -/* Portable versions of host-network order stuff - */ -#define g_ntohl(val) (GUINT32_FROM_BE (val)) -#define g_ntohs(val) (GUINT16_FROM_BE (val)) -#define g_htonl(val) (GUINT32_TO_BE (val)) -#define g_htons(val) (GUINT16_TO_BE (val)) - -/* IEEE Standard 754 Single Precision Storage Format (gfloat): - * - * 31 30 23 22 0 - * +--------+---------------+---------------+ - * | s 1bit | e[30:23] 8bit | f[22:0] 23bit | - * +--------+---------------+---------------+ - * B0------------------->B1------->B2-->B3--> - * - * IEEE Standard 754 Double Precision Storage Format (gdouble): - * - * 63 62 52 51 32 31 0 - * +--------+----------------+----------------+ +---------------+ - * | s 1bit | e[62:52] 11bit | f[51:32] 20bit | | f[31:0] 32bit | - * +--------+----------------+----------------+ +---------------+ - * B0--------------->B1---------->B2--->B3----> B4->B5->B6->B7-> - */ -/* subtract from biased_exponent to form base2 exponent (normal numbers) */ -typedef union _GDoubleIEEE754 GDoubleIEEE754; -typedef union _GFloatIEEE754 GFloatIEEE754; -#define G_IEEE754_FLOAT_BIAS (127) -#define G_IEEE754_DOUBLE_BIAS (1023) -/* multiply with base2 exponent to get base10 exponent (normal numbers) */ -#define G_LOG_2_BASE_10 (0.30102999566398119521) -#if G_BYTE_ORDER == G_LITTLE_ENDIAN -union _GFloatIEEE754 -{ - gfloat v_float; - struct { - guint mantissa : 23; - guint biased_exponent : 8; - guint sign : 1; - } mpn; -}; -union _GDoubleIEEE754 -{ - gdouble v_double; - struct { - guint mantissa_low : 32; - guint mantissa_high : 20; - guint biased_exponent : 11; - guint sign : 1; - } mpn; -}; -#elif G_BYTE_ORDER == G_BIG_ENDIAN -union _GFloatIEEE754 -{ - gfloat v_float; - struct { - guint sign : 1; - guint biased_exponent : 8; - guint mantissa : 23; - } mpn; -}; -union _GDoubleIEEE754 -{ - gdouble v_double; - struct { - guint sign : 1; - guint biased_exponent : 11; - guint mantissa_high : 20; - guint mantissa_low : 32; - } mpn; -}; -#else /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */ -#error unknown ENDIAN type -#endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */ - -typedef struct _GTimeVal GTimeVal; - -struct _GTimeVal -{ - glong tv_sec; - glong tv_usec; -}; - -G_END_DECLS - -/* We prefix variable declarations so they can - * properly get exported in Windows DLLs. - */ -#ifndef GLIB_VAR -# ifdef G_PLATFORM_WIN32 -# ifdef GLIB_STATIC_COMPILATION -# define GLIB_VAR extern -# else /* !GLIB_STATIC_COMPILATION */ -# ifdef GLIB_COMPILATION -# ifdef DLL_EXPORT -# define GLIB_VAR __declspec(dllexport) -# else /* !DLL_EXPORT */ -# define GLIB_VAR extern -# endif /* !DLL_EXPORT */ -# else /* !GLIB_COMPILATION */ -# define GLIB_VAR extern __declspec(dllimport) -# endif /* !GLIB_COMPILATION */ -# endif /* !GLIB_STATIC_COMPILATION */ -# else /* !G_PLATFORM_WIN32 */ -# define GLIB_VAR _GLIB_EXTERN -# endif /* !G_PLATFORM_WIN32 */ -#endif /* GLIB_VAR */ - -#endif /* __G_TYPES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gunicode.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gunicode.h deleted file mode 100644 index fdf1086..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gunicode.h +++ /dev/null @@ -1,813 +0,0 @@ -/* gunicode.h - Unicode manipulation functions - * - * Copyright (C) 1999, 2000 Tom Tromey - * Copyright 2000, 2005 Red Hat, Inc. - * - * The Gnome Library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * The Gnome Library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with the Gnome Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#ifndef __G_UNICODE_H__ -#define __G_UNICODE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * gunichar: - * - * A type which can hold any UTF-32 or UCS-4 character code, - * also known as a Unicode code point. - * - * If you want to produce the UTF-8 representation of a #gunichar, - * use g_ucs4_to_utf8(). See also g_utf8_to_ucs4() for the reverse - * process. - * - * To print/scan values of this type as integer, use - * %G_GINT32_MODIFIER and/or %G_GUINT32_FORMAT. - * - * The notation to express a Unicode code point in running text is - * as a hexadecimal number with four to six digits and uppercase - * letters, prefixed by the string "U+". Leading zeros are omitted, - * unless the code point would have fewer than four hexadecimal digits. - * For example, "U+0041 LATIN CAPITAL LETTER A". To print a code point - * in the U+-notation, use the format string "U+\%04"G_GINT32_FORMAT"X". - * To scan, use the format string "U+\%06"G_GINT32_FORMAT"X". - * - * |[ - * gunichar c; - * sscanf ("U+0041", "U+%06"G_GINT32_FORMAT"X", &c) - * g_print ("Read U+%04"G_GINT32_FORMAT"X", c); - * ]| - */ -typedef guint32 gunichar; - -/** - * gunichar2: - * - * A type which can hold any UTF-16 code - * pointUTF-16 also has so called - * surrogate pairs to encode characters beyond - * the BMP as pairs of 16bit numbers. Surrogate pairs cannot be stored - * in a single gunichar2 field, but all GLib functions accepting gunichar2 - * arrays will correctly interpret surrogate pairs.. - * - * To print/scan values of this type to/from text you need to convert - * to/from UTF-8, using g_utf16_to_utf8()/g_utf8_to_utf16(). - * - * To print/scan values of this type as integer, use - * %G_GINT16_MODIFIER and/or %G_GUINT16_FORMAT. - */ -typedef guint16 gunichar2; - -/** - * GUnicodeType: - * @G_UNICODE_CONTROL: General category "Other, Control" (Cc) - * @G_UNICODE_FORMAT: General category "Other, Format" (Cf) - * @G_UNICODE_UNASSIGNED: General category "Other, Not Assigned" (Cn) - * @G_UNICODE_PRIVATE_USE: General category "Other, Private Use" (Co) - * @G_UNICODE_SURROGATE: General category "Other, Surrogate" (Cs) - * @G_UNICODE_LOWERCASE_LETTER: General category "Letter, Lowercase" (Ll) - * @G_UNICODE_MODIFIER_LETTER: General category "Letter, Modifier" (Lm) - * @G_UNICODE_OTHER_LETTER: General category "Letter, Other" (Lo) - * @G_UNICODE_TITLECASE_LETTER: General category "Letter, Titlecase" (Lt) - * @G_UNICODE_UPPERCASE_LETTER: General category "Letter, Uppercase" (Lu) - * @G_UNICODE_SPACING_MARK: General category "Mark, Spacing" (Mc) - * @G_UNICODE_ENCLOSING_MARK: General category "Mark, Enclosing" (Me) - * @G_UNICODE_NON_SPACING_MARK: General category "Mark, Nonspacing" (Mn) - * @G_UNICODE_DECIMAL_NUMBER: General category "Number, Decimal Digit" (Nd) - * @G_UNICODE_LETTER_NUMBER: General category "Number, Letter" (Nl) - * @G_UNICODE_OTHER_NUMBER: General category "Number, Other" (No) - * @G_UNICODE_CONNECT_PUNCTUATION: General category "Punctuation, Connector" (Pc) - * @G_UNICODE_DASH_PUNCTUATION: General category "Punctuation, Dash" (Pd) - * @G_UNICODE_CLOSE_PUNCTUATION: General category "Punctuation, Close" (Pe) - * @G_UNICODE_FINAL_PUNCTUATION: General category "Punctuation, Final quote" (Pf) - * @G_UNICODE_INITIAL_PUNCTUATION: General category "Punctuation, Initial quote" (Pi) - * @G_UNICODE_OTHER_PUNCTUATION: General category "Punctuation, Other" (Po) - * @G_UNICODE_OPEN_PUNCTUATION: General category "Punctuation, Open" (Ps) - * @G_UNICODE_CURRENCY_SYMBOL: General category "Symbol, Currency" (Sc) - * @G_UNICODE_MODIFIER_SYMBOL: General category "Symbol, Modifier" (Sk) - * @G_UNICODE_MATH_SYMBOL: General category "Symbol, Math" (Sm) - * @G_UNICODE_OTHER_SYMBOL: General category "Symbol, Other" (So) - * @G_UNICODE_LINE_SEPARATOR: General category "Separator, Line" (Zl) - * @G_UNICODE_PARAGRAPH_SEPARATOR: General category "Separator, Paragraph" (Zp) - * @G_UNICODE_SPACE_SEPARATOR: General category "Separator, Space" (Zs) - * - * These are the possible character classifications from the - * Unicode specification. - * See http://www.unicode.org/Public/UNIDATA/UnicodeData.html. - */ -typedef enum -{ - G_UNICODE_CONTROL, - G_UNICODE_FORMAT, - G_UNICODE_UNASSIGNED, - G_UNICODE_PRIVATE_USE, - G_UNICODE_SURROGATE, - G_UNICODE_LOWERCASE_LETTER, - G_UNICODE_MODIFIER_LETTER, - G_UNICODE_OTHER_LETTER, - G_UNICODE_TITLECASE_LETTER, - G_UNICODE_UPPERCASE_LETTER, - G_UNICODE_SPACING_MARK, - G_UNICODE_ENCLOSING_MARK, - G_UNICODE_NON_SPACING_MARK, - G_UNICODE_DECIMAL_NUMBER, - G_UNICODE_LETTER_NUMBER, - G_UNICODE_OTHER_NUMBER, - G_UNICODE_CONNECT_PUNCTUATION, - G_UNICODE_DASH_PUNCTUATION, - G_UNICODE_CLOSE_PUNCTUATION, - G_UNICODE_FINAL_PUNCTUATION, - G_UNICODE_INITIAL_PUNCTUATION, - G_UNICODE_OTHER_PUNCTUATION, - G_UNICODE_OPEN_PUNCTUATION, - G_UNICODE_CURRENCY_SYMBOL, - G_UNICODE_MODIFIER_SYMBOL, - G_UNICODE_MATH_SYMBOL, - G_UNICODE_OTHER_SYMBOL, - G_UNICODE_LINE_SEPARATOR, - G_UNICODE_PARAGRAPH_SEPARATOR, - G_UNICODE_SPACE_SEPARATOR -} GUnicodeType; - -/** - * G_UNICODE_COMBINING_MARK: - * - * Older name for %G_UNICODE_SPACING_MARK. - * - * Deprecated: 2.30: Use %G_UNICODE_SPACING_MARK. - */ -#ifndef G_DISABLE_DEPRECATED -#define G_UNICODE_COMBINING_MARK G_UNICODE_SPACING_MARK -#endif - -/** - * GUnicodeBreakType: - * @G_UNICODE_BREAK_MANDATORY: Mandatory Break (BK) - * @G_UNICODE_BREAK_CARRIAGE_RETURN: Carriage Return (CR) - * @G_UNICODE_BREAK_LINE_FEED: Line Feed (LF) - * @G_UNICODE_BREAK_COMBINING_MARK: Attached Characters and Combining Marks (CM) - * @G_UNICODE_BREAK_SURROGATE: Surrogates (SG) - * @G_UNICODE_BREAK_ZERO_WIDTH_SPACE: Zero Width Space (ZW) - * @G_UNICODE_BREAK_INSEPARABLE: Inseparable (IN) - * @G_UNICODE_BREAK_NON_BREAKING_GLUE: Non-breaking ("Glue") (GL) - * @G_UNICODE_BREAK_CONTINGENT: Contingent Break Opportunity (CB) - * @G_UNICODE_BREAK_SPACE: Space (SP) - * @G_UNICODE_BREAK_AFTER: Break Opportunity After (BA) - * @G_UNICODE_BREAK_BEFORE: Break Opportunity Before (BB) - * @G_UNICODE_BREAK_BEFORE_AND_AFTER: Break Opportunity Before and After (B2) - * @G_UNICODE_BREAK_HYPHEN: Hyphen (HY) - * @G_UNICODE_BREAK_NON_STARTER: Nonstarter (NS) - * @G_UNICODE_BREAK_OPEN_PUNCTUATION: Opening Punctuation (OP) - * @G_UNICODE_BREAK_CLOSE_PUNCTUATION: Closing Punctuation (CL) - * @G_UNICODE_BREAK_QUOTATION: Ambiguous Quotation (QU) - * @G_UNICODE_BREAK_EXCLAMATION: Exclamation/Interrogation (EX) - * @G_UNICODE_BREAK_IDEOGRAPHIC: Ideographic (ID) - * @G_UNICODE_BREAK_NUMERIC: Numeric (NU) - * @G_UNICODE_BREAK_INFIX_SEPARATOR: Infix Separator (Numeric) (IS) - * @G_UNICODE_BREAK_SYMBOL: Symbols Allowing Break After (SY) - * @G_UNICODE_BREAK_ALPHABETIC: Ordinary Alphabetic and Symbol Characters (AL) - * @G_UNICODE_BREAK_PREFIX: Prefix (Numeric) (PR) - * @G_UNICODE_BREAK_POSTFIX: Postfix (Numeric) (PO) - * @G_UNICODE_BREAK_COMPLEX_CONTEXT: Complex Content Dependent (South East Asian) (SA) - * @G_UNICODE_BREAK_AMBIGUOUS: Ambiguous (Alphabetic or Ideographic) (AI) - * @G_UNICODE_BREAK_UNKNOWN: Unknown (XX) - * @G_UNICODE_BREAK_NEXT_LINE: Next Line (NL) - * @G_UNICODE_BREAK_WORD_JOINER: Word Joiner (WJ) - * @G_UNICODE_BREAK_HANGUL_L_JAMO: Hangul L Jamo (JL) - * @G_UNICODE_BREAK_HANGUL_V_JAMO: Hangul V Jamo (JV) - * @G_UNICODE_BREAK_HANGUL_T_JAMO: Hangul T Jamo (JT) - * @G_UNICODE_BREAK_HANGUL_LV_SYLLABLE: Hangul LV Syllable (H2) - * @G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE: Hangul LVT Syllable (H3) - * @G_UNICODE_BREAK_CLOSE_PARANTHESIS: Closing Parenthesis (CP). Since 2.28 - * @G_UNICODE_BREAK_CONDITIONAL_JAPANESE_STARTER: Conditional Japanese Starter (CJ). Since: 2.32 - * @G_UNICODE_BREAK_HEBREW_LETTER: Hebrew Letter (HL). Since: 2.32 - * @G_UNICODE_BREAK_REGIONAL_INDICATOR: Regional Indicator (RI). Since: 2.36 - * - * These are the possible line break classifications. - * - * Since new unicode versions may add new types here, applications should be ready - * to handle unknown values. They may be regarded as %G_UNICODE_BREAK_UNKNOWN. - * - * See http://www.unicode.org/unicode/reports/tr14/. - */ -typedef enum -{ - G_UNICODE_BREAK_MANDATORY, - G_UNICODE_BREAK_CARRIAGE_RETURN, - G_UNICODE_BREAK_LINE_FEED, - G_UNICODE_BREAK_COMBINING_MARK, - G_UNICODE_BREAK_SURROGATE, - G_UNICODE_BREAK_ZERO_WIDTH_SPACE, - G_UNICODE_BREAK_INSEPARABLE, - G_UNICODE_BREAK_NON_BREAKING_GLUE, - G_UNICODE_BREAK_CONTINGENT, - G_UNICODE_BREAK_SPACE, - G_UNICODE_BREAK_AFTER, - G_UNICODE_BREAK_BEFORE, - G_UNICODE_BREAK_BEFORE_AND_AFTER, - G_UNICODE_BREAK_HYPHEN, - G_UNICODE_BREAK_NON_STARTER, - G_UNICODE_BREAK_OPEN_PUNCTUATION, - G_UNICODE_BREAK_CLOSE_PUNCTUATION, - G_UNICODE_BREAK_QUOTATION, - G_UNICODE_BREAK_EXCLAMATION, - G_UNICODE_BREAK_IDEOGRAPHIC, - G_UNICODE_BREAK_NUMERIC, - G_UNICODE_BREAK_INFIX_SEPARATOR, - G_UNICODE_BREAK_SYMBOL, - G_UNICODE_BREAK_ALPHABETIC, - G_UNICODE_BREAK_PREFIX, - G_UNICODE_BREAK_POSTFIX, - G_UNICODE_BREAK_COMPLEX_CONTEXT, - G_UNICODE_BREAK_AMBIGUOUS, - G_UNICODE_BREAK_UNKNOWN, - G_UNICODE_BREAK_NEXT_LINE, - G_UNICODE_BREAK_WORD_JOINER, - G_UNICODE_BREAK_HANGUL_L_JAMO, - G_UNICODE_BREAK_HANGUL_V_JAMO, - G_UNICODE_BREAK_HANGUL_T_JAMO, - G_UNICODE_BREAK_HANGUL_LV_SYLLABLE, - G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE, - G_UNICODE_BREAK_CLOSE_PARANTHESIS, - G_UNICODE_BREAK_CONDITIONAL_JAPANESE_STARTER, - G_UNICODE_BREAK_HEBREW_LETTER, - G_UNICODE_BREAK_REGIONAL_INDICATOR -} GUnicodeBreakType; - -/** - * GUnicodeScript: - * @G_UNICODE_SCRIPT_INVALID_CODE: - * a value never returned from g_unichar_get_script() - * @G_UNICODE_SCRIPT_COMMON: a character used by multiple different scripts - * @G_UNICODE_SCRIPT_INHERITED: a mark glyph that takes its script from the - * i base glyph to which it is attached - * @G_UNICODE_SCRIPT_ARABIC: Arabic - * @G_UNICODE_SCRIPT_ARMENIAN: Armenian - * @G_UNICODE_SCRIPT_BENGALI: Bengali - * @G_UNICODE_SCRIPT_BOPOMOFO: Bopomofo - * @G_UNICODE_SCRIPT_CHEROKEE: Cherokee - * @G_UNICODE_SCRIPT_COPTIC: Coptic - * @G_UNICODE_SCRIPT_CYRILLIC: Cyrillic - * @G_UNICODE_SCRIPT_DESERET: Deseret - * @G_UNICODE_SCRIPT_DEVANAGARI: Devanagari - * @G_UNICODE_SCRIPT_ETHIOPIC: Ethiopic - * @G_UNICODE_SCRIPT_GEORGIAN: Georgian - * @G_UNICODE_SCRIPT_GOTHIC: Gothic - * @G_UNICODE_SCRIPT_GREEK: Greek - * @G_UNICODE_SCRIPT_GUJARATI: Gujarati - * @G_UNICODE_SCRIPT_GURMUKHI: Gurmukhi - * @G_UNICODE_SCRIPT_HAN: Han - * @G_UNICODE_SCRIPT_HANGUL: Hangul - * @G_UNICODE_SCRIPT_HEBREW: Hebrew - * @G_UNICODE_SCRIPT_HIRAGANA: Hiragana - * @G_UNICODE_SCRIPT_KANNADA: Kannada - * @G_UNICODE_SCRIPT_KATAKANA: Katakana - * @G_UNICODE_SCRIPT_KHMER: Khmer - * @G_UNICODE_SCRIPT_LAO: Lao - * @G_UNICODE_SCRIPT_LATIN: Latin - * @G_UNICODE_SCRIPT_MALAYALAM: Malayalam - * @G_UNICODE_SCRIPT_MONGOLIAN: Mongolian - * @G_UNICODE_SCRIPT_MYANMAR: Myanmar - * @G_UNICODE_SCRIPT_OGHAM: Ogham - * @G_UNICODE_SCRIPT_OLD_ITALIC: Old Italic - * @G_UNICODE_SCRIPT_ORIYA: Oriya - * @G_UNICODE_SCRIPT_RUNIC: Runic - * @G_UNICODE_SCRIPT_SINHALA: Sinhala - * @G_UNICODE_SCRIPT_SYRIAC: Syriac - * @G_UNICODE_SCRIPT_TAMIL: Tamil - * @G_UNICODE_SCRIPT_TELUGU: Telugu - * @G_UNICODE_SCRIPT_THAANA: Thaana - * @G_UNICODE_SCRIPT_THAI: Thai - * @G_UNICODE_SCRIPT_TIBETAN: Tibetan - * @G_UNICODE_SCRIPT_CANADIAN_ABORIGINAL: - * Canadian Aboriginal - * @G_UNICODE_SCRIPT_YI: Yi - * @G_UNICODE_SCRIPT_TAGALOG: Tagalog - * @G_UNICODE_SCRIPT_HANUNOO: Hanunoo - * @G_UNICODE_SCRIPT_BUHID: Buhid - * @G_UNICODE_SCRIPT_TAGBANWA: Tagbanwa - * @G_UNICODE_SCRIPT_BRAILLE: Braille - * @G_UNICODE_SCRIPT_CYPRIOT: Cypriot - * @G_UNICODE_SCRIPT_LIMBU: Limbu - * @G_UNICODE_SCRIPT_OSMANYA: Osmanya - * @G_UNICODE_SCRIPT_SHAVIAN: Shavian - * @G_UNICODE_SCRIPT_LINEAR_B: Linear B - * @G_UNICODE_SCRIPT_TAI_LE: Tai Le - * @G_UNICODE_SCRIPT_UGARITIC: Ugaritic - * @G_UNICODE_SCRIPT_NEW_TAI_LUE: - * New Tai Lue - * @G_UNICODE_SCRIPT_BUGINESE: Buginese - * @G_UNICODE_SCRIPT_GLAGOLITIC: Glagolitic - * @G_UNICODE_SCRIPT_TIFINAGH: Tifinagh - * @G_UNICODE_SCRIPT_SYLOTI_NAGRI: - * Syloti Nagri - * @G_UNICODE_SCRIPT_OLD_PERSIAN: - * Old Persian - * @G_UNICODE_SCRIPT_KHAROSHTHI: Kharoshthi - * @G_UNICODE_SCRIPT_UNKNOWN: an unassigned code point - * @G_UNICODE_SCRIPT_BALINESE: Balinese - * @G_UNICODE_SCRIPT_CUNEIFORM: Cuneiform - * @G_UNICODE_SCRIPT_PHOENICIAN: Phoenician - * @G_UNICODE_SCRIPT_PHAGS_PA: Phags-pa - * @G_UNICODE_SCRIPT_NKO: N'Ko - * @G_UNICODE_SCRIPT_KAYAH_LI: Kayah Li. Since 2.16.3 - * @G_UNICODE_SCRIPT_LEPCHA: Lepcha. Since 2.16.3 - * @G_UNICODE_SCRIPT_REJANG: Rejang. Since 2.16.3 - * @G_UNICODE_SCRIPT_SUNDANESE: Sundanese. Since 2.16.3 - * @G_UNICODE_SCRIPT_SAURASHTRA: Saurashtra. Since 2.16.3 - * @G_UNICODE_SCRIPT_CHAM: Cham. Since 2.16.3 - * @G_UNICODE_SCRIPT_OL_CHIKI: Ol Chiki. Since 2.16.3 - * @G_UNICODE_SCRIPT_VAI: Vai. Since 2.16.3 - * @G_UNICODE_SCRIPT_CARIAN: Carian. Since 2.16.3 - * @G_UNICODE_SCRIPT_LYCIAN: Lycian. Since 2.16.3 - * @G_UNICODE_SCRIPT_LYDIAN: Lydian. Since 2.16.3 - * @G_UNICODE_SCRIPT_AVESTAN: Avestan. Since 2.26 - * @G_UNICODE_SCRIPT_BAMUM: Bamum. Since 2.26 - * @G_UNICODE_SCRIPT_EGYPTIAN_HIEROGLYPHS: - * Egyptian Hieroglpyhs. Since 2.26 - * @G_UNICODE_SCRIPT_IMPERIAL_ARAMAIC: - * Imperial Aramaic. Since 2.26 - * @G_UNICODE_SCRIPT_INSCRIPTIONAL_PAHLAVI: - * Inscriptional Pahlavi. Since 2.26 - * @G_UNICODE_SCRIPT_INSCRIPTIONAL_PARTHIAN: - * Inscriptional Parthian. Since 2.26 - * @G_UNICODE_SCRIPT_JAVANESE: Javanese. Since 2.26 - * @G_UNICODE_SCRIPT_KAITHI: Kaithi. Since 2.26 - * @G_UNICODE_SCRIPT_LISU: Lisu. Since 2.26 - * @G_UNICODE_SCRIPT_MEETEI_MAYEK: - * Meetei Mayek. Since 2.26 - * @G_UNICODE_SCRIPT_OLD_SOUTH_ARABIAN: - * Old South Arabian. Since 2.26 - * @G_UNICODE_SCRIPT_OLD_TURKIC: Old Turkic. Since 2.28 - * @G_UNICODE_SCRIPT_SAMARITAN: Samaritan. Since 2.26 - * @G_UNICODE_SCRIPT_TAI_THAM: Tai Tham. Since 2.26 - * @G_UNICODE_SCRIPT_TAI_VIET: Tai Viet. Since 2.26 - * @G_UNICODE_SCRIPT_BATAK: Batak. Since 2.28 - * @G_UNICODE_SCRIPT_BRAHMI: Brahmi. Since 2.28 - * @G_UNICODE_SCRIPT_MANDAIC: Mandaic. Since 2.28 - * @G_UNICODE_SCRIPT_CHAKMA: Chakma. Since: 2.32 - * @G_UNICODE_SCRIPT_MEROITIC_CURSIVE: Meroitic Cursive. Since: 2.32 - * @G_UNICODE_SCRIPT_MEROITIC_HIEROGLYPHS: Meroitic Hieroglyphs. Since: 2.32 - * @G_UNICODE_SCRIPT_MIAO: Miao. Since: 2.32 - * @G_UNICODE_SCRIPT_SHARADA: Sharada. Since: 2.32 - * @G_UNICODE_SCRIPT_SORA_SOMPENG: Sora Sompeng. Since: 2.32 - * @G_UNICODE_SCRIPT_TAKRI: Takri. Since: 2.32 - * - * The #GUnicodeScript enumeration identifies different writing - * systems. The values correspond to the names as defined in the - * Unicode standard. The enumeration has been added in GLib 2.14, - * and is interchangeable with #PangoScript. - * - * Note that new types may be added in the future. Applications - * should be ready to handle unknown values. - * See Unicode Standard Annex - * #24: Script names. - */ -typedef enum -{ /* ISO 15924 code */ - G_UNICODE_SCRIPT_INVALID_CODE = -1, - G_UNICODE_SCRIPT_COMMON = 0, /* Zyyy */ - G_UNICODE_SCRIPT_INHERITED, /* Zinh (Qaai) */ - G_UNICODE_SCRIPT_ARABIC, /* Arab */ - G_UNICODE_SCRIPT_ARMENIAN, /* Armn */ - G_UNICODE_SCRIPT_BENGALI, /* Beng */ - G_UNICODE_SCRIPT_BOPOMOFO, /* Bopo */ - G_UNICODE_SCRIPT_CHEROKEE, /* Cher */ - G_UNICODE_SCRIPT_COPTIC, /* Copt (Qaac) */ - G_UNICODE_SCRIPT_CYRILLIC, /* Cyrl (Cyrs) */ - G_UNICODE_SCRIPT_DESERET, /* Dsrt */ - G_UNICODE_SCRIPT_DEVANAGARI, /* Deva */ - G_UNICODE_SCRIPT_ETHIOPIC, /* Ethi */ - G_UNICODE_SCRIPT_GEORGIAN, /* Geor (Geon, Geoa) */ - G_UNICODE_SCRIPT_GOTHIC, /* Goth */ - G_UNICODE_SCRIPT_GREEK, /* Grek */ - G_UNICODE_SCRIPT_GUJARATI, /* Gujr */ - G_UNICODE_SCRIPT_GURMUKHI, /* Guru */ - G_UNICODE_SCRIPT_HAN, /* Hani */ - G_UNICODE_SCRIPT_HANGUL, /* Hang */ - G_UNICODE_SCRIPT_HEBREW, /* Hebr */ - G_UNICODE_SCRIPT_HIRAGANA, /* Hira */ - G_UNICODE_SCRIPT_KANNADA, /* Knda */ - G_UNICODE_SCRIPT_KATAKANA, /* Kana */ - G_UNICODE_SCRIPT_KHMER, /* Khmr */ - G_UNICODE_SCRIPT_LAO, /* Laoo */ - G_UNICODE_SCRIPT_LATIN, /* Latn (Latf, Latg) */ - G_UNICODE_SCRIPT_MALAYALAM, /* Mlym */ - G_UNICODE_SCRIPT_MONGOLIAN, /* Mong */ - G_UNICODE_SCRIPT_MYANMAR, /* Mymr */ - G_UNICODE_SCRIPT_OGHAM, /* Ogam */ - G_UNICODE_SCRIPT_OLD_ITALIC, /* Ital */ - G_UNICODE_SCRIPT_ORIYA, /* Orya */ - G_UNICODE_SCRIPT_RUNIC, /* Runr */ - G_UNICODE_SCRIPT_SINHALA, /* Sinh */ - G_UNICODE_SCRIPT_SYRIAC, /* Syrc (Syrj, Syrn, Syre) */ - G_UNICODE_SCRIPT_TAMIL, /* Taml */ - G_UNICODE_SCRIPT_TELUGU, /* Telu */ - G_UNICODE_SCRIPT_THAANA, /* Thaa */ - G_UNICODE_SCRIPT_THAI, /* Thai */ - G_UNICODE_SCRIPT_TIBETAN, /* Tibt */ - G_UNICODE_SCRIPT_CANADIAN_ABORIGINAL, /* Cans */ - G_UNICODE_SCRIPT_YI, /* Yiii */ - G_UNICODE_SCRIPT_TAGALOG, /* Tglg */ - G_UNICODE_SCRIPT_HANUNOO, /* Hano */ - G_UNICODE_SCRIPT_BUHID, /* Buhd */ - G_UNICODE_SCRIPT_TAGBANWA, /* Tagb */ - - /* Unicode-4.0 additions */ - G_UNICODE_SCRIPT_BRAILLE, /* Brai */ - G_UNICODE_SCRIPT_CYPRIOT, /* Cprt */ - G_UNICODE_SCRIPT_LIMBU, /* Limb */ - G_UNICODE_SCRIPT_OSMANYA, /* Osma */ - G_UNICODE_SCRIPT_SHAVIAN, /* Shaw */ - G_UNICODE_SCRIPT_LINEAR_B, /* Linb */ - G_UNICODE_SCRIPT_TAI_LE, /* Tale */ - G_UNICODE_SCRIPT_UGARITIC, /* Ugar */ - - /* Unicode-4.1 additions */ - G_UNICODE_SCRIPT_NEW_TAI_LUE, /* Talu */ - G_UNICODE_SCRIPT_BUGINESE, /* Bugi */ - G_UNICODE_SCRIPT_GLAGOLITIC, /* Glag */ - G_UNICODE_SCRIPT_TIFINAGH, /* Tfng */ - G_UNICODE_SCRIPT_SYLOTI_NAGRI, /* Sylo */ - G_UNICODE_SCRIPT_OLD_PERSIAN, /* Xpeo */ - G_UNICODE_SCRIPT_KHAROSHTHI, /* Khar */ - - /* Unicode-5.0 additions */ - G_UNICODE_SCRIPT_UNKNOWN, /* Zzzz */ - G_UNICODE_SCRIPT_BALINESE, /* Bali */ - G_UNICODE_SCRIPT_CUNEIFORM, /* Xsux */ - G_UNICODE_SCRIPT_PHOENICIAN, /* Phnx */ - G_UNICODE_SCRIPT_PHAGS_PA, /* Phag */ - G_UNICODE_SCRIPT_NKO, /* Nkoo */ - - /* Unicode-5.1 additions */ - G_UNICODE_SCRIPT_KAYAH_LI, /* Kali */ - G_UNICODE_SCRIPT_LEPCHA, /* Lepc */ - G_UNICODE_SCRIPT_REJANG, /* Rjng */ - G_UNICODE_SCRIPT_SUNDANESE, /* Sund */ - G_UNICODE_SCRIPT_SAURASHTRA, /* Saur */ - G_UNICODE_SCRIPT_CHAM, /* Cham */ - G_UNICODE_SCRIPT_OL_CHIKI, /* Olck */ - G_UNICODE_SCRIPT_VAI, /* Vaii */ - G_UNICODE_SCRIPT_CARIAN, /* Cari */ - G_UNICODE_SCRIPT_LYCIAN, /* Lyci */ - G_UNICODE_SCRIPT_LYDIAN, /* Lydi */ - - /* Unicode-5.2 additions */ - G_UNICODE_SCRIPT_AVESTAN, /* Avst */ - G_UNICODE_SCRIPT_BAMUM, /* Bamu */ - G_UNICODE_SCRIPT_EGYPTIAN_HIEROGLYPHS, /* Egyp */ - G_UNICODE_SCRIPT_IMPERIAL_ARAMAIC, /* Armi */ - G_UNICODE_SCRIPT_INSCRIPTIONAL_PAHLAVI, /* Phli */ - G_UNICODE_SCRIPT_INSCRIPTIONAL_PARTHIAN, /* Prti */ - G_UNICODE_SCRIPT_JAVANESE, /* Java */ - G_UNICODE_SCRIPT_KAITHI, /* Kthi */ - G_UNICODE_SCRIPT_LISU, /* Lisu */ - G_UNICODE_SCRIPT_MEETEI_MAYEK, /* Mtei */ - G_UNICODE_SCRIPT_OLD_SOUTH_ARABIAN, /* Sarb */ - G_UNICODE_SCRIPT_OLD_TURKIC, /* Orkh */ - G_UNICODE_SCRIPT_SAMARITAN, /* Samr */ - G_UNICODE_SCRIPT_TAI_THAM, /* Lana */ - G_UNICODE_SCRIPT_TAI_VIET, /* Tavt */ - - /* Unicode-6.0 additions */ - G_UNICODE_SCRIPT_BATAK, /* Batk */ - G_UNICODE_SCRIPT_BRAHMI, /* Brah */ - G_UNICODE_SCRIPT_MANDAIC, /* Mand */ - - /* Unicode-6.1 additions */ - G_UNICODE_SCRIPT_CHAKMA, /* Cakm */ - G_UNICODE_SCRIPT_MEROITIC_CURSIVE, /* Merc */ - G_UNICODE_SCRIPT_MEROITIC_HIEROGLYPHS, /* Mero */ - G_UNICODE_SCRIPT_MIAO, /* Plrd */ - G_UNICODE_SCRIPT_SHARADA, /* Shrd */ - G_UNICODE_SCRIPT_SORA_SOMPENG, /* Sora */ - G_UNICODE_SCRIPT_TAKRI /* Takr */ -} GUnicodeScript; - -GLIB_AVAILABLE_IN_ALL -guint32 g_unicode_script_to_iso15924 (GUnicodeScript script); -GLIB_AVAILABLE_IN_ALL -GUnicodeScript g_unicode_script_from_iso15924 (guint32 iso15924); - -/* These are all analogs of the functions. - */ -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isalnum (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isalpha (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_iscntrl (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isdigit (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isgraph (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_islower (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isprint (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_ispunct (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isspace (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isupper (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isxdigit (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_istitle (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_isdefined (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_iswide (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_iswide_cjk(gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_iszerowidth(gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_ismark (gunichar c) G_GNUC_CONST; - -/* More functions. These convert between the three cases. - * See the Unicode book to understand title case. */ -GLIB_AVAILABLE_IN_ALL -gunichar g_unichar_toupper (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gunichar g_unichar_tolower (gunichar c) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gunichar g_unichar_totitle (gunichar c) G_GNUC_CONST; - -/* If C is a digit (according to 'g_unichar_isdigit'), then return its - numeric value. Otherwise return -1. */ -GLIB_AVAILABLE_IN_ALL -gint g_unichar_digit_value (gunichar c) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gint g_unichar_xdigit_value (gunichar c) G_GNUC_CONST; - -/* Return the Unicode character type of a given character. */ -GLIB_AVAILABLE_IN_ALL -GUnicodeType g_unichar_type (gunichar c) G_GNUC_CONST; - -/* Return the line break property for a given character */ -GLIB_AVAILABLE_IN_ALL -GUnicodeBreakType g_unichar_break_type (gunichar c) G_GNUC_CONST; - -/* Returns the combining class for a given character */ -GLIB_AVAILABLE_IN_ALL -gint g_unichar_combining_class (gunichar uc) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_get_mirror_char (gunichar ch, - gunichar *mirrored_ch); - -GLIB_AVAILABLE_IN_ALL -GUnicodeScript g_unichar_get_script (gunichar ch) G_GNUC_CONST; - -/* Validate a Unicode character */ -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_validate (gunichar ch) G_GNUC_CONST; - -/* Pairwise canonical compose/decompose */ -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_compose (gunichar a, - gunichar b, - gunichar *ch); -GLIB_AVAILABLE_IN_ALL -gboolean g_unichar_decompose (gunichar ch, - gunichar *a, - gunichar *b); - -GLIB_AVAILABLE_IN_ALL -gsize g_unichar_fully_decompose (gunichar ch, - gboolean compat, - gunichar *result, - gsize result_len); - -/** - * G_UNICHAR_MAX_DECOMPOSITION_LENGTH: - * - * The maximum length (in codepoints) of a compatibility or canonical - * decomposition of a single Unicode character. - * - * This is as defined by Unicode 6.1. - * - * Since: 2.32 - */ -#define G_UNICHAR_MAX_DECOMPOSITION_LENGTH 18 /* codepoints */ - -/* Compute canonical ordering of a string in-place. This rearranges - decomposed characters in the string according to their combining - classes. See the Unicode manual for more information. */ -GLIB_AVAILABLE_IN_ALL -void g_unicode_canonical_ordering (gunichar *string, - gsize len); - - -GLIB_DEPRECATED_IN_2_30 -gunichar *g_unicode_canonical_decomposition (gunichar ch, - gsize *result_len) G_GNUC_MALLOC; - -/* Array of skip-bytes-per-initial character. - */ -GLIB_VAR const gchar * const g_utf8_skip; - -/** - * g_utf8_next_char: - * @p: Pointer to the start of a valid UTF-8 character - * - * Skips to the next character in a UTF-8 string. The string must be - * valid; this macro is as fast as possible, and has no error-checking. - * You would use this macro to iterate over a string character by - * character. The macro returns the start of the next UTF-8 character. - * Before using this macro, use g_utf8_validate() to validate strings - * that may contain invalid UTF-8. - */ -#define g_utf8_next_char(p) (char *)((p) + g_utf8_skip[*(const guchar *)(p)]) - -GLIB_AVAILABLE_IN_ALL -gunichar g_utf8_get_char (const gchar *p) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gunichar g_utf8_get_char_validated (const gchar *p, - gssize max_len) G_GNUC_PURE; - -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_offset_to_pointer (const gchar *str, - glong offset) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -glong g_utf8_pointer_to_offset (const gchar *str, - const gchar *pos) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_prev_char (const gchar *p) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_find_next_char (const gchar *p, - const gchar *end) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_find_prev_char (const gchar *str, - const gchar *p) G_GNUC_PURE; - -GLIB_AVAILABLE_IN_ALL -glong g_utf8_strlen (const gchar *p, - gssize max) G_GNUC_PURE; - -GLIB_AVAILABLE_IN_2_30 -gchar *g_utf8_substring (const gchar *str, - glong start_pos, - glong end_pos) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_strncpy (gchar *dest, - const gchar *src, - gsize n); - -/* Find the UTF-8 character corresponding to ch, in string p. These - functions are equivalants to strchr and strrchr */ -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_strchr (const gchar *p, - gssize len, - gunichar c); -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_strrchr (const gchar *p, - gssize len, - gunichar c); -GLIB_AVAILABLE_IN_ALL -gchar* g_utf8_strreverse (const gchar *str, - gssize len); - -GLIB_AVAILABLE_IN_ALL -gunichar2 *g_utf8_to_utf16 (const gchar *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gunichar * g_utf8_to_ucs4 (const gchar *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gunichar * g_utf8_to_ucs4_fast (const gchar *str, - glong len, - glong *items_written) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gunichar * g_utf16_to_ucs4 (const gunichar2 *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_utf16_to_utf8 (const gunichar2 *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gunichar2 *g_ucs4_to_utf16 (const gunichar *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar* g_ucs4_to_utf8 (const gunichar *str, - glong len, - glong *items_read, - glong *items_written, - GError **error) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gint g_unichar_to_utf8 (gunichar c, - gchar *outbuf); - -GLIB_AVAILABLE_IN_ALL -gboolean g_utf8_validate (const gchar *str, - gssize max_len, - const gchar **end); - -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_strup (const gchar *str, - gssize len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_strdown (const gchar *str, - gssize len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_casefold (const gchar *str, - gssize len) G_GNUC_MALLOC; - -/** - * GNormalizeMode: - * @G_NORMALIZE_DEFAULT: standardize differences that do not affect the - * text content, such as the above-mentioned accent representation - * @G_NORMALIZE_NFD: another name for %G_NORMALIZE_DEFAULT - * @G_NORMALIZE_DEFAULT_COMPOSE: like %G_NORMALIZE_DEFAULT, but with - * composed forms rather than a maximally decomposed form - * @G_NORMALIZE_NFC: another name for %G_NORMALIZE_DEFAULT_COMPOSE - * @G_NORMALIZE_ALL: beyond %G_NORMALIZE_DEFAULT also standardize the - * "compatibility" characters in Unicode, such as SUPERSCRIPT THREE - * to the standard forms (in this case DIGIT THREE). Formatting - * information may be lost but for most text operations such - * characters should be considered the same - * @G_NORMALIZE_NFKD: another name for %G_NORMALIZE_ALL - * @G_NORMALIZE_ALL_COMPOSE: like %G_NORMALIZE_ALL, but with composed - * forms rather than a maximally decomposed form - * @G_NORMALIZE_NFKC: another name for %G_NORMALIZE_ALL_COMPOSE - * - * Defines how a Unicode string is transformed in a canonical - * form, standardizing such issues as whether a character with - * an accent is represented as a base character and combining - * accent or as a single precomposed character. Unicode strings - * should generally be normalized before comparing them. - */ -typedef enum { - G_NORMALIZE_DEFAULT, - G_NORMALIZE_NFD = G_NORMALIZE_DEFAULT, - G_NORMALIZE_DEFAULT_COMPOSE, - G_NORMALIZE_NFC = G_NORMALIZE_DEFAULT_COMPOSE, - G_NORMALIZE_ALL, - G_NORMALIZE_NFKD = G_NORMALIZE_ALL, - G_NORMALIZE_ALL_COMPOSE, - G_NORMALIZE_NFKC = G_NORMALIZE_ALL_COMPOSE -} GNormalizeMode; - -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_normalize (const gchar *str, - gssize len, - GNormalizeMode mode) G_GNUC_MALLOC; - -GLIB_AVAILABLE_IN_ALL -gint g_utf8_collate (const gchar *str1, - const gchar *str2) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_collate_key (const gchar *str, - gssize len) G_GNUC_MALLOC; -GLIB_AVAILABLE_IN_ALL -gchar *g_utf8_collate_key_for_filename (const gchar *str, - gssize len) G_GNUC_MALLOC; - - -/* private */ -gchar *_g_utf8_make_valid (const gchar *name); - -G_END_DECLS - -#endif /* __G_UNICODE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gurifuncs.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gurifuncs.h deleted file mode 100644 index 9f89770..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gurifuncs.h +++ /dev/null @@ -1,85 +0,0 @@ -/* GIO - GLib Input, Output and Streaming Library - * - * Copyright (C) 2006-2007 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Alexander Larsson - */ - -#ifndef __G_URI_FUNCS_H__ -#define __G_URI_FUNCS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_URI_RESERVED_CHARS_GENERIC_DELIMITERS: - * - * Generic delimiters characters as defined in RFC 3986. Includes ":/?#[]@". - **/ -#define G_URI_RESERVED_CHARS_GENERIC_DELIMITERS ":/?#[]@" - -/** - * G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS: - * - * Subcomponent delimiter characters as defined in RFC 3986. Includes "!$&'()*+,;=". - **/ -#define G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS "!$&'()*+,;=" - -/** - * G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT: - * - * Allowed characters in path elements. Includes "!$&'()*+,;=:@". - **/ -#define G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS ":@" - -/** - * G_URI_RESERVED_CHARS_ALLOWED_IN_PATH: - * - * Allowed characters in a path. Includes "!$&'()*+,;=:@/". - **/ -#define G_URI_RESERVED_CHARS_ALLOWED_IN_PATH G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT "/" - -/** - * G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO: - * - * Allowed characters in userinfo as defined in RFC 3986. Includes "!$&'()*+,;=:". - **/ -#define G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS ":" - -GLIB_AVAILABLE_IN_ALL -char * g_uri_unescape_string (const char *escaped_string, - const char *illegal_characters); -GLIB_AVAILABLE_IN_ALL -char * g_uri_unescape_segment (const char *escaped_string, - const char *escaped_string_end, - const char *illegal_characters); -GLIB_AVAILABLE_IN_ALL -char * g_uri_parse_scheme (const char *uri); -GLIB_AVAILABLE_IN_ALL -char * g_uri_escape_string (const char *unescaped, - const char *reserved_chars_allowed, - gboolean allow_utf8); - -G_END_DECLS - -#endif /* __G_URI_FUNCS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gutils.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gutils.h deleted file mode 100644 index 472f3c2..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gutils.h +++ /dev/null @@ -1,385 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_UTILS_H__ -#define __G_UTILS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/* Define G_VA_COPY() to do the right thing for copying va_list variables. - * glibconfig.h may have already defined G_VA_COPY as va_copy or __va_copy. - */ -#if !defined (G_VA_COPY) -# if defined (__GNUC__) && defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32)) -# define G_VA_COPY(ap1, ap2) (*(ap1) = *(ap2)) -# elif defined (G_VA_COPY_AS_ARRAY) -# define G_VA_COPY(ap1, ap2) g_memmove ((ap1), (ap2), sizeof (va_list)) -# else /* va_list is a pointer */ -# define G_VA_COPY(ap1, ap2) ((ap1) = (ap2)) -# endif /* va_list is a pointer */ -#endif /* !G_VA_COPY */ - -/* inlining hassle. for compilers that don't allow the 'inline' keyword, - * mostly because of strict ANSI C compliance or dumbness, we try to fall - * back to either '__inline__' or '__inline'. - * G_CAN_INLINE is defined in glibconfig.h if the compiler seems to be - * actually *capable* to do function inlining, in which case inline - * function bodies do make sense. we also define G_INLINE_FUNC to properly - * export the function prototypes if no inlining can be performed. - * inline function bodies have to be special cased with G_CAN_INLINE and a - * .c file specific macro to allow one compiled instance with extern linkage - * of the functions by defining G_IMPLEMENT_INLINES and the .c file macro. - */ -#if defined (G_HAVE_INLINE) && defined (__GNUC__) && defined (__STRICT_ANSI__) -# undef inline -# define inline __inline__ -#elif !defined (G_HAVE_INLINE) -# undef inline -# if defined (G_HAVE___INLINE__) -# define inline __inline__ -# elif defined (G_HAVE___INLINE) -# define inline __inline -# else /* !inline && !__inline__ && !__inline */ -# define inline /* don't inline, then */ -# endif -#endif -#ifdef G_IMPLEMENT_INLINES -# define G_INLINE_FUNC _GLIB_EXTERN -# undef G_CAN_INLINE -#elif defined (__GNUC__) -# define G_INLINE_FUNC static __inline __attribute__ ((unused)) -#elif defined (G_CAN_INLINE) -# define G_INLINE_FUNC static inline -#else /* can't inline */ -# define G_INLINE_FUNC _GLIB_EXTERN -#endif /* !G_INLINE_FUNC */ - -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_name (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_real_name (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_home_dir (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_tmp_dir (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_host_name (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_prgname (void); -GLIB_AVAILABLE_IN_ALL -void g_set_prgname (const gchar *prgname); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_application_name (void); -GLIB_AVAILABLE_IN_ALL -void g_set_application_name (const gchar *application_name); - -GLIB_AVAILABLE_IN_ALL -void g_reload_user_special_dirs_cache (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_data_dir (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_config_dir (void); -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_cache_dir (void); -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_get_system_data_dirs (void); - -#ifdef G_OS_WIN32 -/* This functions is not part of the public GLib API */ -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_win32_get_system_data_dirs_for_module (void (*address_of_function)(void)); -#endif - -#if defined (G_OS_WIN32) && defined (G_CAN_INLINE) && !defined (__cplusplus) -/* This function is not part of the public GLib API either. Just call - * g_get_system_data_dirs() in your code, never mind that that is - * actually a macro and you will in fact call this inline function. - */ -static inline const gchar * const * -_g_win32_get_system_data_dirs (void) -{ - return g_win32_get_system_data_dirs_for_module ((void (*)(void)) &_g_win32_get_system_data_dirs); -} -#define g_get_system_data_dirs _g_win32_get_system_data_dirs -#endif - -GLIB_AVAILABLE_IN_ALL -const gchar * const * g_get_system_config_dirs (void); - -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_runtime_dir (void); - -/** - * GUserDirectory: - * @G_USER_DIRECTORY_DESKTOP: the user's Desktop directory - * @G_USER_DIRECTORY_DOCUMENTS: the user's Documents directory - * @G_USER_DIRECTORY_DOWNLOAD: the user's Downloads directory - * @G_USER_DIRECTORY_MUSIC: the user's Music directory - * @G_USER_DIRECTORY_PICTURES: the user's Pictures directory - * @G_USER_DIRECTORY_PUBLIC_SHARE: the user's shared directory - * @G_USER_DIRECTORY_TEMPLATES: the user's Templates directory - * @G_USER_DIRECTORY_VIDEOS: the user's Movies directory - * @G_USER_N_DIRECTORIES: the number of enum values - * - * These are logical ids for special directories which are defined - * depending on the platform used. You should use g_get_user_special_dir() - * to retrieve the full path associated to the logical id. - * - * The #GUserDirectory enumeration can be extended at later date. Not - * every platform has a directory for every logical id in this - * enumeration. - * - * Since: 2.14 - */ -typedef enum { - G_USER_DIRECTORY_DESKTOP, - G_USER_DIRECTORY_DOCUMENTS, - G_USER_DIRECTORY_DOWNLOAD, - G_USER_DIRECTORY_MUSIC, - G_USER_DIRECTORY_PICTURES, - G_USER_DIRECTORY_PUBLIC_SHARE, - G_USER_DIRECTORY_TEMPLATES, - G_USER_DIRECTORY_VIDEOS, - - G_USER_N_DIRECTORIES -} GUserDirectory; - -GLIB_AVAILABLE_IN_ALL -const gchar * g_get_user_special_dir (GUserDirectory directory); - -/** - * GDebugKey: - * @key: the string - * @value: the flag - * - * Associates a string with a bit flag. - * Used in g_parse_debug_string(). - */ -typedef struct _GDebugKey GDebugKey; -struct _GDebugKey -{ - const gchar *key; - guint value; -}; - -/* Miscellaneous utility functions - */ -GLIB_AVAILABLE_IN_ALL -guint g_parse_debug_string (const gchar *string, - const GDebugKey *keys, - guint nkeys); - -GLIB_AVAILABLE_IN_ALL -gint g_snprintf (gchar *string, - gulong n, - gchar const *format, - ...) G_GNUC_PRINTF (3, 4); -GLIB_AVAILABLE_IN_ALL -gint g_vsnprintf (gchar *string, - gulong n, - gchar const *format, - va_list args) - G_GNUC_PRINTF(3, 0); - -GLIB_AVAILABLE_IN_ALL -void g_nullify_pointer (gpointer *nullify_location); - -typedef enum -{ - G_FORMAT_SIZE_DEFAULT = 0, - G_FORMAT_SIZE_LONG_FORMAT = 1 << 0, - G_FORMAT_SIZE_IEC_UNITS = 1 << 1 -} GFormatSizeFlags; - -GLIB_AVAILABLE_IN_2_30 -gchar *g_format_size_full (guint64 size, - GFormatSizeFlags flags); -GLIB_AVAILABLE_IN_2_30 -gchar *g_format_size (guint64 size); - -GLIB_DEPRECATED_FOR(g_format_size) -gchar *g_format_size_for_display (goffset size); - -#ifndef G_DISABLE_DEPRECATED -/** - * GVoidFunc: - * - * Declares a type of function which takes no arguments - * and has no return value. It is used to specify the type - * function passed to g_atexit(). - */ -typedef void (*GVoidFunc) (void); -#ifndef ATEXIT -# define ATEXIT(proc) g_ATEXIT(proc) -#else -# define G_NATIVE_ATEXIT -#endif /* ATEXIT */ -/* we use a GLib function as a replacement for ATEXIT, so - * the programmer is not required to check the return value - * (if there is any in the implementation) and doesn't encounter - * missing include files. - */ -GLIB_DEPRECATED -void g_atexit (GVoidFunc func); - -#ifdef G_OS_WIN32 -/* It's a bad idea to wrap atexit() on Windows. If the GLib DLL calls - * atexit(), the function will be called when the GLib DLL is detached - * from the program, which is not what the caller wants. The caller - * wants the function to be called when it *itself* exits (or is - * detached, in case the caller, too, is a DLL). - */ -#if (defined(__MINGW_H) && !defined(_STDLIB_H_)) || (defined(_MSC_VER) && !defined(_INC_STDLIB)) -int atexit (void (*)(void)); -#endif -#define g_atexit(func) atexit(func) -#endif - -#endif /* G_DISABLE_DEPRECATED */ - - -/* Look for an executable in PATH, following execvp() rules */ -GLIB_AVAILABLE_IN_ALL -gchar* g_find_program_in_path (const gchar *program); - -/* Bit tests - */ -G_INLINE_FUNC gint g_bit_nth_lsf (gulong mask, - gint nth_bit) G_GNUC_CONST; -G_INLINE_FUNC gint g_bit_nth_msf (gulong mask, - gint nth_bit) G_GNUC_CONST; -G_INLINE_FUNC guint g_bit_storage (gulong number) G_GNUC_CONST; - -/* inline function implementations - */ -#if defined (G_CAN_INLINE) || defined (__G_UTILS_C__) -G_INLINE_FUNC gint -g_bit_nth_lsf (gulong mask, - gint nth_bit) -{ - if (G_UNLIKELY (nth_bit < -1)) - nth_bit = -1; - while (nth_bit < ((GLIB_SIZEOF_LONG * 8) - 1)) - { - nth_bit++; - if (mask & (1UL << nth_bit)) - return nth_bit; - } - return -1; -} -G_INLINE_FUNC gint -g_bit_nth_msf (gulong mask, - gint nth_bit) -{ - if (nth_bit < 0 || G_UNLIKELY (nth_bit > GLIB_SIZEOF_LONG * 8)) - nth_bit = GLIB_SIZEOF_LONG * 8; - while (nth_bit > 0) - { - nth_bit--; - if (mask & (1UL << nth_bit)) - return nth_bit; - } - return -1; -} -G_INLINE_FUNC guint -g_bit_storage (gulong number) -{ -#if defined(__GNUC__) && (__GNUC__ >= 4) && defined(__OPTIMIZE__) - return G_LIKELY (number) ? - ((GLIB_SIZEOF_LONG * 8U - 1) ^ (guint) __builtin_clzl(number)) + 1 : 1; -#else - register guint n_bits = 0; - - do - { - n_bits++; - number >>= 1; - } - while (number); - return n_bits; -#endif -} -#endif /* G_CAN_INLINE || __G_UTILS_C__ */ - -#ifndef G_DISABLE_DEPRECATED - -/* - * This macro is deprecated. This DllMain() is too complex. It is - * recommended to write an explicit minimal DLlMain() that just saves - * the handle to the DLL and then use that handle instead, for - * instance passing it to - * g_win32_get_package_installation_directory_of_module(). - * - * On Windows, this macro defines a DllMain function that stores the - * actual DLL name that the code being compiled will be included in. - * STATIC should be empty or 'static'. DLL_NAME is the name of the - * (pointer to the) char array where the DLL name will be stored. If - * this is used, you must also include . If you need a more complex - * DLL entry point function, you cannot use this. - * - * On non-Windows platforms, expands to nothing. - */ - -#ifndef G_PLATFORM_WIN32 -# define G_WIN32_DLLMAIN_FOR_DLL_NAME(static, dll_name) -#else -# define G_WIN32_DLLMAIN_FOR_DLL_NAME(static, dll_name) \ -static char *dll_name; \ - \ -BOOL WINAPI \ -DllMain (HINSTANCE hinstDLL, \ - DWORD fdwReason, \ - LPVOID lpvReserved) \ -{ \ - wchar_t wcbfr[1000]; \ - char *tem; \ - switch (fdwReason) \ - { \ - case DLL_PROCESS_ATTACH: \ - GetModuleFileNameW ((HMODULE) hinstDLL, wcbfr, G_N_ELEMENTS (wcbfr)); \ - tem = g_utf16_to_utf8 (wcbfr, -1, NULL, NULL, NULL); \ - dll_name = g_path_get_basename (tem); \ - g_free (tem); \ - break; \ - } \ - \ - return TRUE; \ -} - -#endif /* !G_DISABLE_DEPRECATED */ - -#endif /* G_PLATFORM_WIN32 */ - -G_END_DECLS - -#endif /* __G_UTILS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvariant.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvariant.h deleted file mode 100644 index dbace86..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvariant.h +++ /dev/null @@ -1,400 +0,0 @@ -/* - * Copyright © 2007, 2008 Ryan Lortie - * Copyright © 2009, 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_VARIANT_H__ -#define __G_VARIANT_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include - -G_BEGIN_DECLS - -typedef struct _GVariant GVariant; - -typedef enum -{ - G_VARIANT_CLASS_BOOLEAN = 'b', - G_VARIANT_CLASS_BYTE = 'y', - G_VARIANT_CLASS_INT16 = 'n', - G_VARIANT_CLASS_UINT16 = 'q', - G_VARIANT_CLASS_INT32 = 'i', - G_VARIANT_CLASS_UINT32 = 'u', - G_VARIANT_CLASS_INT64 = 'x', - G_VARIANT_CLASS_UINT64 = 't', - G_VARIANT_CLASS_HANDLE = 'h', - G_VARIANT_CLASS_DOUBLE = 'd', - G_VARIANT_CLASS_STRING = 's', - G_VARIANT_CLASS_OBJECT_PATH = 'o', - G_VARIANT_CLASS_SIGNATURE = 'g', - G_VARIANT_CLASS_VARIANT = 'v', - G_VARIANT_CLASS_MAYBE = 'm', - G_VARIANT_CLASS_ARRAY = 'a', - G_VARIANT_CLASS_TUPLE = '(', - G_VARIANT_CLASS_DICT_ENTRY = '{' -} GVariantClass; - -GLIB_AVAILABLE_IN_ALL -void g_variant_unref (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_ref (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_ref_sink (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_floating (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_take_ref (GVariant *value); - -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_get_type (GVariant *value); -GLIB_AVAILABLE_IN_ALL -const gchar * g_variant_get_type_string (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_of_type (GVariant *value, - const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_container (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariantClass g_variant_classify (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_boolean (gboolean value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_byte (guchar value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_int16 (gint16 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_uint16 (guint16 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_int32 (gint32 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_uint32 (guint32 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_int64 (gint64 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_uint64 (guint64 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_handle (gint32 value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_double (gdouble value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_string (const gchar *string); -GLIB_AVAILABLE_IN_2_38 -GVariant * g_variant_new_take_string (gchar *string); -GLIB_AVAILABLE_IN_2_38 -GVariant * g_variant_new_printf (const gchar *format_string, - ...) G_GNUC_PRINTF (1, 2); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_object_path (const gchar *object_path); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_object_path (const gchar *string); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_signature (const gchar *signature); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_signature (const gchar *string); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_variant (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_strv (const gchar * const *strv, - gssize length); -GLIB_AVAILABLE_IN_2_30 -GVariant * g_variant_new_objv (const gchar * const *strv, - gssize length); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_bytestring (const gchar *string); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_bytestring_array (const gchar * const *strv, - gssize length); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_fixed_array (const GVariantType *element_type, - gconstpointer elements, - gsize n_elements, - gsize element_size); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_get_boolean (GVariant *value); -GLIB_AVAILABLE_IN_ALL -guchar g_variant_get_byte (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gint16 g_variant_get_int16 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -guint16 g_variant_get_uint16 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gint32 g_variant_get_int32 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -guint32 g_variant_get_uint32 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gint64 g_variant_get_int64 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -guint64 g_variant_get_uint64 (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gint32 g_variant_get_handle (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gdouble g_variant_get_double (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_get_variant (GVariant *value); -GLIB_AVAILABLE_IN_ALL -const gchar * g_variant_get_string (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -gchar * g_variant_dup_string (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -const gchar ** g_variant_get_strv (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -gchar ** g_variant_dup_strv (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_2_30 -const gchar ** g_variant_get_objv (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -gchar ** g_variant_dup_objv (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -const gchar * g_variant_get_bytestring (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gchar * g_variant_dup_bytestring (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -const gchar ** g_variant_get_bytestring_array (GVariant *value, - gsize *length); -GLIB_AVAILABLE_IN_ALL -gchar ** g_variant_dup_bytestring_array (GVariant *value, - gsize *length); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_maybe (const GVariantType *child_type, - GVariant *child); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_array (const GVariantType *child_type, - GVariant * const *children, - gsize n_children); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_tuple (GVariant * const *children, - gsize n_children); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_dict_entry (GVariant *key, - GVariant *value); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_get_maybe (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gsize g_variant_n_children (GVariant *value); -GLIB_AVAILABLE_IN_ALL -void g_variant_get_child (GVariant *value, - gsize index_, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_get_child_value (GVariant *value, - gsize index_); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_lookup (GVariant *dictionary, - const gchar *key, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_lookup_value (GVariant *dictionary, - const gchar *key, - const GVariantType *expected_type); -GLIB_AVAILABLE_IN_ALL -gconstpointer g_variant_get_fixed_array (GVariant *value, - gsize *n_elements, - gsize element_size); - -GLIB_AVAILABLE_IN_ALL -gsize g_variant_get_size (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gconstpointer g_variant_get_data (GVariant *value); -GLIB_AVAILABLE_IN_2_36 -GBytes * g_variant_get_data_as_bytes (GVariant *value); -GLIB_AVAILABLE_IN_ALL -void g_variant_store (GVariant *value, - gpointer data); - -GLIB_AVAILABLE_IN_ALL -gchar * g_variant_print (GVariant *value, - gboolean type_annotate); -GLIB_AVAILABLE_IN_ALL -GString * g_variant_print_string (GVariant *value, - GString *string, - gboolean type_annotate); - -GLIB_AVAILABLE_IN_ALL -guint g_variant_hash (gconstpointer value); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_equal (gconstpointer one, - gconstpointer two); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_get_normal_form (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_is_normal_form (GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_byteswap (GVariant *value); - -GLIB_AVAILABLE_IN_2_36 -GVariant * g_variant_new_from_bytes (const GVariantType *type, - GBytes *bytes, - gboolean trusted); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_from_data (const GVariantType *type, - gconstpointer data, - gsize size, - gboolean trusted, - GDestroyNotify notify, - gpointer user_data); - -typedef struct _GVariantIter GVariantIter; -struct _GVariantIter { - /*< private >*/ - gsize x[16]; -}; - -GLIB_AVAILABLE_IN_ALL -GVariantIter * g_variant_iter_new (GVariant *value); -GLIB_AVAILABLE_IN_ALL -gsize g_variant_iter_init (GVariantIter *iter, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -GVariantIter * g_variant_iter_copy (GVariantIter *iter); -GLIB_AVAILABLE_IN_ALL -gsize g_variant_iter_n_children (GVariantIter *iter); -GLIB_AVAILABLE_IN_ALL -void g_variant_iter_free (GVariantIter *iter); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_iter_next_value (GVariantIter *iter); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_iter_next (GVariantIter *iter, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_iter_loop (GVariantIter *iter, - const gchar *format_string, - ...); - - -typedef struct _GVariantBuilder GVariantBuilder; -struct _GVariantBuilder { - /*< private >*/ - gsize x[16]; -}; - -typedef enum -{ - G_VARIANT_PARSE_ERROR_FAILED, - G_VARIANT_PARSE_ERROR_BASIC_TYPE_EXPECTED, - G_VARIANT_PARSE_ERROR_CANNOT_INFER_TYPE, - G_VARIANT_PARSE_ERROR_DEFINITE_TYPE_EXPECTED, - G_VARIANT_PARSE_ERROR_INPUT_NOT_AT_END, - G_VARIANT_PARSE_ERROR_INVALID_CHARACTER, - G_VARIANT_PARSE_ERROR_INVALID_FORMAT_STRING, - G_VARIANT_PARSE_ERROR_INVALID_OBJECT_PATH, - G_VARIANT_PARSE_ERROR_INVALID_SIGNATURE, - G_VARIANT_PARSE_ERROR_INVALID_TYPE_STRING, - G_VARIANT_PARSE_ERROR_NO_COMMON_TYPE, - G_VARIANT_PARSE_ERROR_NUMBER_OUT_OF_RANGE, - G_VARIANT_PARSE_ERROR_NUMBER_TOO_BIG, - G_VARIANT_PARSE_ERROR_TYPE_ERROR, - G_VARIANT_PARSE_ERROR_UNEXPECTED_TOKEN, - G_VARIANT_PARSE_ERROR_UNKNOWN_KEYWORD, - G_VARIANT_PARSE_ERROR_UNTERMINATED_STRING_CONSTANT, - G_VARIANT_PARSE_ERROR_VALUE_EXPECTED -} GVariantParseError; -#define G_VARIANT_PARSE_ERROR (g_variant_parser_get_error_quark ()) - -GLIB_AVAILABLE_IN_ALL -GQuark g_variant_parser_get_error_quark (void); - -GLIB_AVAILABLE_IN_ALL -GVariantBuilder * g_variant_builder_new (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_unref (GVariantBuilder *builder); -GLIB_AVAILABLE_IN_ALL -GVariantBuilder * g_variant_builder_ref (GVariantBuilder *builder); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_init (GVariantBuilder *builder, - const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_builder_end (GVariantBuilder *builder); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_clear (GVariantBuilder *builder); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_open (GVariantBuilder *builder, - const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_close (GVariantBuilder *builder); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_add_value (GVariantBuilder *builder, - GVariant *value); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_add (GVariantBuilder *builder, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -void g_variant_builder_add_parsed (GVariantBuilder *builder, - const gchar *format, - ...); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new (const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -void g_variant_get (GVariant *value, - const gchar *format_string, - ...); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_va (const gchar *format_string, - const gchar **endptr, - va_list *app); -GLIB_AVAILABLE_IN_ALL -void g_variant_get_va (GVariant *value, - const gchar *format_string, - const gchar **endptr, - va_list *app); -GLIB_AVAILABLE_IN_2_34 -gboolean g_variant_check_format_string (GVariant *value, - const gchar *format_string, - gboolean copy_only); - -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_parse (const GVariantType *type, - const gchar *text, - const gchar *limit, - const gchar **endptr, - GError **error); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_parsed (const gchar *format, - ...); -GLIB_AVAILABLE_IN_ALL -GVariant * g_variant_new_parsed_va (const gchar *format, - va_list *app); - -GLIB_AVAILABLE_IN_ALL -gint g_variant_compare (gconstpointer one, - gconstpointer two); -G_END_DECLS - -#endif /* __G_VARIANT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvarianttype.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvarianttype.h deleted file mode 100644 index 81e324f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gvarianttype.h +++ /dev/null @@ -1,382 +0,0 @@ -/* - * Copyright © 2007, 2008 Ryan Lortie - * Copyright © 2009, 2010 Codethink Limited - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the licence, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Ryan Lortie - */ - -#ifndef __G_VARIANT_TYPE_H__ -#define __G_VARIANT_TYPE_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -/** - * GVariantType: - * - * A type in the GVariant type system. - * - * Two types may not be compared by value; use g_variant_type_equal() or - * g_variant_type_is_subtype_of(). May be copied using - * g_variant_type_copy() and freed using g_variant_type_free(). - **/ -typedef struct _GVariantType GVariantType; - -/** - * G_VARIANT_TYPE_BOOLEAN: - * - * The type of a value that can be either %TRUE or %FALSE. - **/ -#define G_VARIANT_TYPE_BOOLEAN ((const GVariantType *) "b") - -/** - * G_VARIANT_TYPE_BYTE: - * - * The type of an integer value that can range from 0 to 255. - **/ -#define G_VARIANT_TYPE_BYTE ((const GVariantType *) "y") - -/** - * G_VARIANT_TYPE_INT16: - * - * The type of an integer value that can range from -32768 to 32767. - **/ -#define G_VARIANT_TYPE_INT16 ((const GVariantType *) "n") - -/** - * G_VARIANT_TYPE_UINT16: - * - * The type of an integer value that can range from 0 to 65535. - * There were about this many people living in Toronto in the 1870s. - **/ -#define G_VARIANT_TYPE_UINT16 ((const GVariantType *) "q") - -/** - * G_VARIANT_TYPE_INT32: - * - * The type of an integer value that can range from -2147483648 to - * 2147483647. - **/ -#define G_VARIANT_TYPE_INT32 ((const GVariantType *) "i") - -/** - * G_VARIANT_TYPE_UINT32: - * - * The type of an integer value that can range from 0 to 4294967295. - * That's one number for everyone who was around in the late 1970s. - **/ -#define G_VARIANT_TYPE_UINT32 ((const GVariantType *) "u") - -/** - * G_VARIANT_TYPE_INT64: - * - * The type of an integer value that can range from - * -9223372036854775808 to 9223372036854775807. - **/ -#define G_VARIANT_TYPE_INT64 ((const GVariantType *) "x") - -/** - * G_VARIANT_TYPE_UINT64: - * - * The type of an integer value that can range from 0 to - * 18446744073709551616. That's a really big number, but a Rubik's - * cube can have a bit more than twice as many possible positions. - **/ -#define G_VARIANT_TYPE_UINT64 ((const GVariantType *) "t") - -/** - * G_VARIANT_TYPE_DOUBLE: - * - * The type of a double precision IEEE754 floating point number. - * These guys go up to about 1.80e308 (plus and minus) but miss out on - * some numbers in between. In any case, that's far greater than the - * estimated number of fundamental particles in the observable - * universe. - **/ -#define G_VARIANT_TYPE_DOUBLE ((const GVariantType *) "d") - -/** - * G_VARIANT_TYPE_STRING: - * - * The type of a string. "" is a string. %NULL is not a string. - **/ -#define G_VARIANT_TYPE_STRING ((const GVariantType *) "s") - -/** - * G_VARIANT_TYPE_OBJECT_PATH: - * - * The type of a D-Bus object reference. These are strings of a - * specific format used to identify objects at a given destination on - * the bus. - * - * If you are not interacting with D-Bus, then there is no reason to make - * use of this type. If you are, then the D-Bus specification contains a - * precise description of valid object paths. - **/ -#define G_VARIANT_TYPE_OBJECT_PATH ((const GVariantType *) "o") - -/** - * G_VARIANT_TYPE_SIGNATURE: - * - * The type of a D-Bus type signature. These are strings of a specific - * format used as type signatures for D-Bus methods and messages. - * - * If you are not interacting with D-Bus, then there is no reason to make - * use of this type. If you are, then the D-Bus specification contains a - * precise description of valid signature strings. - **/ -#define G_VARIANT_TYPE_SIGNATURE ((const GVariantType *) "g") - -/** - * G_VARIANT_TYPE_VARIANT: - * - * The type of a box that contains any other value (including another - * variant). - **/ -#define G_VARIANT_TYPE_VARIANT ((const GVariantType *) "v") - -/** - * G_VARIANT_TYPE_HANDLE: - * - * The type of a 32bit signed integer value, that by convention, is used - * as an index into an array of file descriptors that are sent alongside - * a D-Bus message. - * - * If you are not interacting with D-Bus, then there is no reason to make - * use of this type. - **/ -#define G_VARIANT_TYPE_HANDLE ((const GVariantType *) "h") - -/** - * G_VARIANT_TYPE_UNIT: - * - * The empty tuple type. Has only one instance. Known also as "triv" - * or "void". - **/ -#define G_VARIANT_TYPE_UNIT ((const GVariantType *) "()") - -/** - * G_VARIANT_TYPE_ANY: - * - * An indefinite type that is a supertype of every type (including - * itself). - **/ -#define G_VARIANT_TYPE_ANY ((const GVariantType *) "*") - -/** - * G_VARIANT_TYPE_BASIC: - * - * An indefinite type that is a supertype of every basic (ie: - * non-container) type. - **/ -#define G_VARIANT_TYPE_BASIC ((const GVariantType *) "?") - -/** - * G_VARIANT_TYPE_MAYBE: - * - * An indefinite type that is a supertype of every maybe type. - **/ -#define G_VARIANT_TYPE_MAYBE ((const GVariantType *) "m*") - -/** - * G_VARIANT_TYPE_ARRAY: - * - * An indefinite type that is a supertype of every array type. - **/ -#define G_VARIANT_TYPE_ARRAY ((const GVariantType *) "a*") - -/** - * G_VARIANT_TYPE_TUPLE: - * - * An indefinite type that is a supertype of every tuple type, - * regardless of the number of items in the tuple. - **/ -#define G_VARIANT_TYPE_TUPLE ((const GVariantType *) "r") - -/** - * G_VARIANT_TYPE_DICT_ENTRY: - * - * An indefinite type that is a supertype of every dictionary entry - * type. - **/ -#define G_VARIANT_TYPE_DICT_ENTRY ((const GVariantType *) "{?*}") - -/** - * G_VARIANT_TYPE_DICTIONARY: - * - * An indefinite type that is a supertype of every dictionary type -- - * that is, any array type that has an element type equal to any - * dictionary entry type. - **/ -#define G_VARIANT_TYPE_DICTIONARY ((const GVariantType *) "a{?*}") - -/** - * G_VARIANT_TYPE_STRING_ARRAY: - * - * The type of an array of strings. - **/ -#define G_VARIANT_TYPE_STRING_ARRAY ((const GVariantType *) "as") - -/** - * G_VARIANT_TYPE_OBJECT_PATH_ARRAY: - * - * The type of an array of object paths. - **/ -#define G_VARIANT_TYPE_OBJECT_PATH_ARRAY ((const GVariantType *) "ao") - -/** - * G_VARIANT_TYPE_BYTESTRING: - * - * The type of an array of bytes. This type is commonly used to pass - * around strings that may not be valid utf8. In that case, the - * convention is that the nul terminator character should be included as - * the last character in the array. - **/ -#define G_VARIANT_TYPE_BYTESTRING ((const GVariantType *) "ay") - -/** - * G_VARIANT_TYPE_BYTESTRING_ARRAY: - * - * The type of an array of byte strings (an array of arrays of bytes). - **/ -#define G_VARIANT_TYPE_BYTESTRING_ARRAY ((const GVariantType *) "aay") - -/** - * G_VARIANT_TYPE_VARDICT: - * - * The type of a dictionary mapping strings to variants (the ubiquitous - * "a{sv}" type). - * - * Since: 2.30 - **/ -#define G_VARIANT_TYPE_VARDICT ((const GVariantType *) "a{sv}") - - -/** - * G_VARIANT_TYPE: - * @type_string: a well-formed #GVariantType type string - * - * Converts a string to a const #GVariantType. Depending on the - * current debugging level, this function may perform a runtime check - * to ensure that @string is a valid GVariant type string. - * - * It is always a programmer error to use this macro with an invalid - * type string. If in doubt, use g_variant_type_string_is_valid() to - * check if the string is valid. - * - * Since 2.24 - **/ -#ifndef G_DISABLE_CHECKS -# define G_VARIANT_TYPE(type_string) (g_variant_type_checked_ ((type_string))) -#else -# define G_VARIANT_TYPE(type_string) ((const GVariantType *) (type_string)) -#endif - -/* type string checking */ -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_string_is_valid (const gchar *type_string); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_string_scan (const gchar *string, - const gchar *limit, - const gchar **endptr); - -/* create/destroy */ -GLIB_AVAILABLE_IN_ALL -void g_variant_type_free (GVariantType *type); -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_copy (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_new (const gchar *type_string); - -/* getters */ -GLIB_AVAILABLE_IN_ALL -gsize g_variant_type_get_string_length (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -const gchar * g_variant_type_peek_string (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gchar * g_variant_type_dup_string (const GVariantType *type); - -/* classification */ -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_definite (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_container (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_basic (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_maybe (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_array (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_tuple (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_dict_entry (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_variant (const GVariantType *type); - -/* for hash tables */ -GLIB_AVAILABLE_IN_ALL -guint g_variant_type_hash (gconstpointer type); -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_equal (gconstpointer type1, - gconstpointer type2); - -/* subtypes */ -GLIB_AVAILABLE_IN_ALL -gboolean g_variant_type_is_subtype_of (const GVariantType *type, - const GVariantType *supertype); - -/* type iterator interface */ -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_element (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_first (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_next (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -gsize g_variant_type_n_items (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_key (const GVariantType *type); -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_value (const GVariantType *type); - -/* constructors */ -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_new_array (const GVariantType *element); -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_new_maybe (const GVariantType *element); -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_new_tuple (const GVariantType * const *items, - gint length); -GLIB_AVAILABLE_IN_ALL -GVariantType * g_variant_type_new_dict_entry (const GVariantType *key, - const GVariantType *value); - -/*< private >*/ -GLIB_AVAILABLE_IN_ALL -const GVariantType * g_variant_type_checked_ (const gchar *); - -G_END_DECLS - -#endif /* __G_VARIANT_TYPE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversion.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversion.h deleted file mode 100644 index 7eb414d..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversion.h +++ /dev/null @@ -1,57 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_VERSION_H__ -#define __G_VERSION_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -GLIB_VAR const guint glib_major_version; -GLIB_VAR const guint glib_minor_version; -GLIB_VAR const guint glib_micro_version; -GLIB_VAR const guint glib_interface_age; -GLIB_VAR const guint glib_binary_age; - -GLIB_AVAILABLE_IN_ALL -const gchar * glib_check_version (guint required_major, - guint required_minor, - guint required_micro); - -#define GLIB_CHECK_VERSION(major,minor,micro) \ - (GLIB_MAJOR_VERSION > (major) || \ - (GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION > (minor)) || \ - (GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION == (minor) && \ - GLIB_MICRO_VERSION >= (micro))) - -G_END_DECLS - -#endif /* __G_VERSION_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversionmacros.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversionmacros.h deleted file mode 100644 index b591534..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gversionmacros.h +++ /dev/null @@ -1,299 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_VERSION_MACROS_H__ -#define __G_VERSION_MACROS_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -/* Version boundaries checks */ - -#define G_ENCODE_VERSION(major,minor) ((major) << 16 | (minor) << 8) - -/* XXX: Every new stable minor release bump should add a macro here */ - -/** - * GLIB_VERSION_2_26: - * - * A macro that evaluates to the 2.26 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.32 - */ -#define GLIB_VERSION_2_26 (G_ENCODE_VERSION (2, 26)) - -/** - * GLIB_VERSION_2_28: - * - * A macro that evaluates to the 2.28 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.32 - */ -#define GLIB_VERSION_2_28 (G_ENCODE_VERSION (2, 28)) - -/** - * GLIB_VERSION_2_30: - * - * A macro that evaluates to the 2.30 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.32 - */ -#define GLIB_VERSION_2_30 (G_ENCODE_VERSION (2, 30)) - -/** - * GLIB_VERSION_2_32: - * - * A macro that evaluates to the 2.32 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.32 - */ -#define GLIB_VERSION_2_32 (G_ENCODE_VERSION (2, 32)) - -/** - * GLIB_VERSION_2_34: - * - * A macro that evaluates to the 2.34 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.34 - */ -#define GLIB_VERSION_2_34 (G_ENCODE_VERSION (2, 34)) - -/** - * GLIB_VERSION_2_36: - * - * A macro that evaluates to the 2.36 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.36 - */ -#define GLIB_VERSION_2_36 (G_ENCODE_VERSION (2, 36)) - -/** - * GLIB_VERSION_2_38: - * - * A macro that evaluates to the 2.38 version of GLib, in a format - * that can be used by the C pre-processor. - * - * Since: 2.38 - */ -#define GLIB_VERSION_2_38 (G_ENCODE_VERSION (2, 38)) - -/* evaluates to the current stable version; for development cycles, - * this means the next stable target - */ -#if (GLIB_MINOR_VERSION % 2) -#define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION + 1)) -#else -#define GLIB_VERSION_CUR_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION)) -#endif - -/* evaluates to the previous stable version */ -#if (GLIB_MINOR_VERSION % 2) -#define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 1)) -#else -#define GLIB_VERSION_PREV_STABLE (G_ENCODE_VERSION (GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION - 2)) -#endif - -/** - * GLIB_VERSION_MIN_REQUIRED: - * - * A macro that should be defined by the user prior to including - * the glib.h header. - * The definition should be one of the predefined GLib version - * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,... - * - * This macro defines the earliest version of GLib that the package is - * required to be able to compile against. - * - * If the compiler is configured to warn about the use of deprecated - * functions, then using functions that were deprecated in version - * %GLIB_VERSION_MIN_REQUIRED or earlier will cause warnings (but - * using functions deprecated in later releases will not). - * - * Since: 2.32 - */ -/* If the package sets GLIB_VERSION_MIN_REQUIRED to some future - * GLIB_VERSION_X_Y value that we don't know about, it will compare as - * 0 in preprocessor tests. - */ -#ifndef GLIB_VERSION_MIN_REQUIRED -# define GLIB_VERSION_MIN_REQUIRED (GLIB_VERSION_CUR_STABLE) -#elif GLIB_VERSION_MIN_REQUIRED == 0 -# undef GLIB_VERSION_MIN_REQUIRED -# define GLIB_VERSION_MIN_REQUIRED (GLIB_VERSION_CUR_STABLE + 2) -#endif - -/** - * GLIB_VERSION_MAX_ALLOWED: - * - * A macro that should be defined by the user prior to including - * the glib.h header. - * The definition should be one of the predefined GLib version - * macros: %GLIB_VERSION_2_26, %GLIB_VERSION_2_28,... - * - * This macro defines the latest version of the GLib API that the - * package is allowed to make use of. - * - * If the compiler is configured to warn about the use of deprecated - * functions, then using functions added after version - * %GLIB_VERSION_MAX_ALLOWED will cause warnings. - * - * Unless you are using GLIB_CHECK_VERSION() or the like to compile - * different code depending on the GLib version, then this should be - * set to the same value as %GLIB_VERSION_MIN_REQUIRED. - * - * Since: 2.32 - */ -#if !defined (GLIB_VERSION_MAX_ALLOWED) || (GLIB_VERSION_MAX_ALLOWED == 0) -# undef GLIB_VERSION_MAX_ALLOWED -# define GLIB_VERSION_MAX_ALLOWED (GLIB_VERSION_CUR_STABLE) -#endif - -/* sanity checks */ -#if GLIB_VERSION_MIN_REQUIRED > GLIB_VERSION_CUR_STABLE -#error "GLIB_VERSION_MIN_REQUIRED must be <= GLIB_VERSION_CUR_STABLE" -#endif -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_MIN_REQUIRED -#error "GLIB_VERSION_MAX_ALLOWED must be >= GLIB_VERSION_MIN_REQUIRED" -#endif -#if GLIB_VERSION_MIN_REQUIRED < GLIB_VERSION_2_26 -#error "GLIB_VERSION_MIN_REQUIRED must be >= GLIB_VERSION_2_26" -#endif - -/* These macros are used to mark deprecated functions in GLib headers, - * and thus have to be exposed in installed headers. But please - * do *not* use them in other projects. Instead, use G_DEPRECATED - * or define your own wrappers around it. - */ -#define GLIB_AVAILABLE_IN_ALL _GLIB_EXTERN - -/* XXX: Every new stable minor release should add a set of macros here */ - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_26 -# define GLIB_DEPRECATED_IN_2_26 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_26_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_26 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_26_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_26 -# define GLIB_AVAILABLE_IN_2_26 GLIB_UNAVAILABLE(2, 26) -#else -# define GLIB_AVAILABLE_IN_2_26 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_28 -# define GLIB_DEPRECATED_IN_2_28 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_28_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_28 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_28_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_28 -# define GLIB_AVAILABLE_IN_2_28 GLIB_UNAVAILABLE(2, 28) -#else -# define GLIB_AVAILABLE_IN_2_28 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_30 -# define GLIB_DEPRECATED_IN_2_30 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_30_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_30 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_30_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_30 -# define GLIB_AVAILABLE_IN_2_30 GLIB_UNAVAILABLE(2, 30) -#else -# define GLIB_AVAILABLE_IN_2_30 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_32 -# define GLIB_DEPRECATED_IN_2_32 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_32_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_32 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_32_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_32 -# define GLIB_AVAILABLE_IN_2_32 GLIB_UNAVAILABLE(2, 32) -#else -# define GLIB_AVAILABLE_IN_2_32 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_34 -# define GLIB_DEPRECATED_IN_2_34 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_34_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_34 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_34_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_34 -# define GLIB_AVAILABLE_IN_2_34 GLIB_UNAVAILABLE(2, 34) -#else -# define GLIB_AVAILABLE_IN_2_34 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_36 -# define GLIB_DEPRECATED_IN_2_36 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_36_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_36 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_36_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_36 -# define GLIB_AVAILABLE_IN_2_36 GLIB_UNAVAILABLE(2, 36) -#else -# define GLIB_AVAILABLE_IN_2_36 _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MIN_REQUIRED >= GLIB_VERSION_2_38 -# define GLIB_DEPRECATED_IN_2_38 GLIB_DEPRECATED -# define GLIB_DEPRECATED_IN_2_38_FOR(f) GLIB_DEPRECATED_FOR(f) -#else -# define GLIB_DEPRECATED_IN_2_38 _GLIB_EXTERN -# define GLIB_DEPRECATED_IN_2_38_FOR(f) _GLIB_EXTERN -#endif - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 -# define GLIB_AVAILABLE_IN_2_38 GLIB_UNAVAILABLE(2, 38) -#else -# define GLIB_AVAILABLE_IN_2_38 _GLIB_EXTERN -#endif - -#endif /* __G_VERSION_MACROS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gwin32.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gwin32.h deleted file mode 100644 index ae87a45..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glib/gwin32.h +++ /dev/null @@ -1,133 +0,0 @@ -/* GLIB - Library of useful routines for C programming - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __G_WIN32_H__ -#define __G_WIN32_H__ - -#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#ifdef G_PLATFORM_WIN32 - -G_BEGIN_DECLS - -#ifndef MAXPATHLEN -#define MAXPATHLEN 1024 -#endif - -#ifdef G_OS_WIN32 - -/* - * To get prototypes for the following POSIXish functions, you have to - * include the indicated non-POSIX headers. The functions are defined - * in OLDNAMES.LIB (MSVC) or -lmoldname-msvc (mingw32). But note that - * for POSIX functions that take or return file names in the system - * codepage, in many cases you would want to use the GLib wrappers in - * gstdio.h and UTF-8 instead. - * - * getcwd: (MSVC), (mingw32) - * getpid: - * access: - * unlink: or - * open, read, write, lseek, close: - * rmdir: - * pipe: (actually, _pipe()) - */ - -/* For some POSIX functions that are not provided by the MS runtime, - * we provide emulation functions in glib, which are prefixed with - * g_win32_. Or that was the idea at some time, but there is just one - * of those: - */ -GLIB_AVAILABLE_IN_ALL -gint g_win32_ftruncate (gint f, - guint size); -#endif /* G_OS_WIN32 */ - -/* The MS setlocale uses locale names of the form "English_United - * States.1252" etc. We want the Unixish standard form "en", "zh_TW" - * etc. This function gets the current thread locale from Windows and - * returns it as a string of the above form for use in forming file - * names etc. The returned string should be deallocated with g_free(). - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_win32_getlocale (void); - -/* Translate a Win32 error code (as returned by GetLastError()) into - * the corresponding message. The returned string should be deallocated - * with g_free(). - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_win32_error_message (gint error); - -#ifndef _WIN64 -GLIB_DEPRECATED -gchar* g_win32_get_package_installation_directory (const gchar *package, - const gchar *dll_name); - -GLIB_DEPRECATED -gchar* g_win32_get_package_installation_subdirectory (const gchar *package, - const gchar *dll_name, - const gchar *subdir); -#endif - -GLIB_AVAILABLE_IN_ALL -gchar* g_win32_get_package_installation_directory_of_module (gpointer hmodule); - -GLIB_AVAILABLE_IN_ALL -guint g_win32_get_windows_version (void); - -GLIB_AVAILABLE_IN_ALL -gchar* g_win32_locale_filename_from_utf8 (const gchar *utf8filename); - -/* As of GLib 2.14 we only support NT-based Windows */ -#define G_WIN32_IS_NT_BASED() TRUE -#define G_WIN32_HAVE_WIDECHAR_API() TRUE - -G_END_DECLS - -#endif /* G_PLATFORM_WIN32 */ - -#ifdef G_OS_WIN32 -#ifdef _WIN64 -#define g_win32_get_package_installation_directory g_win32_get_package_installation_directory_utf8 -#define g_win32_get_package_installation_subdirectory g_win32_get_package_installation_subdirectory_utf8 -#endif - -GLIB_AVAILABLE_IN_ALL -gchar *g_win32_get_package_installation_directory_utf8 (const gchar *package, - const gchar *dll_name); -GLIB_AVAILABLE_IN_ALL -gchar *g_win32_get_package_installation_subdirectory_utf8 (const gchar *package, - const gchar *dll_name, - const gchar *subdir); - -#endif /* G_OS_WIN32 */ - -#endif /* __G_WIN32_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glibconfig.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glibconfig.h deleted file mode 100644 index 43083a5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/glibconfig.h +++ /dev/null @@ -1,288 +0,0 @@ -/* glibconfig.h - * - * This is a generated file. Please modify 'configure.ac' - */ - -#ifndef __GLIBCONFIG_H__ -#define __GLIBCONFIG_H__ - -#include - -#include -#include -#define GLIB_HAVE_ALLOCA_H -#define GLIB_HAVE_SYS_POLL_H - -/* Specifies that GLib's g_print*() functions wrap the - * system printf functions. This is useful to know, for example, - * when using glibc's register_printf_function(). - */ -#define GLIB_USING_SYSTEM_PRINTF - -G_BEGIN_DECLS - -#define G_MINFLOAT FLT_MIN -#define G_MAXFLOAT FLT_MAX -#define G_MINDOUBLE DBL_MIN -#define G_MAXDOUBLE DBL_MAX -#define G_MINSHORT SHRT_MIN -#define G_MAXSHORT SHRT_MAX -#define G_MAXUSHORT USHRT_MAX -#define G_MININT INT_MIN -#define G_MAXINT INT_MAX -#define G_MAXUINT UINT_MAX -#define G_MINLONG LONG_MIN -#define G_MAXLONG LONG_MAX -#define G_MAXULONG ULONG_MAX - -typedef signed char gint8; -typedef unsigned char guint8; -typedef signed short gint16; -typedef unsigned short guint16; -#define G_GINT16_MODIFIER "h" -#define G_GINT16_FORMAT "hi" -#define G_GUINT16_FORMAT "hu" -typedef signed int gint32; -typedef unsigned int guint32; -#define G_GINT32_MODIFIER "" -#define G_GINT32_FORMAT "i" -#define G_GUINT32_FORMAT "u" -#define G_HAVE_GINT64 1 /* deprecated, always true */ - -#ifdef __LP64__ -typedef signed long gint64; -typedef unsigned long guint64; - -#define G_GINT64_CONSTANT(val) (val##L) -#define G_GUINT64_CONSTANT(val) (val##UL) -#else -typedef signed long long gint64; -typedef unsigned long long guint64; - -#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL)) -#define G_GUINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##ULL)) -#endif -#ifdef __LP64__ -#define G_GINT64_MODIFIER "l" -#define G_GINT64_FORMAT "li" -#define G_GUINT64_FORMAT "lu" -#else -#define G_GINT64_MODIFIER "ll" -#define G_GINT64_FORMAT "lli" -#define G_GUINT64_FORMAT "llu" -#endif - -#ifdef __LP64__ -#define GLIB_SIZEOF_VOID_P 8 -#define GLIB_SIZEOF_LONG 8 -#define GLIB_SIZEOF_SIZE_T 8 -#define GLIB_SIZEOF_SSIZE_T 8 -#else -#define GLIB_SIZEOF_VOID_P 4 -#define GLIB_SIZEOF_LONG 4 -#define GLIB_SIZEOF_SIZE_T 4 -#define GLIB_SIZEOF_SSIZE_T 4 -#endif - -typedef signed long gssize; -typedef unsigned long gsize; -#define G_GSIZE_MODIFIER "l" -#define G_GSSIZE_MODIFIER "l" -#define G_GSIZE_FORMAT "lu" -#define G_GSSIZE_FORMAT "li" - -#define G_MAXSIZE G_MAXULONG -#define G_MINSSIZE G_MINLONG -#define G_MAXSSIZE G_MAXLONG - -typedef gint64 goffset; -#define G_MINOFFSET G_MININT64 -#define G_MAXOFFSET G_MAXINT64 - -#define G_GOFFSET_MODIFIER G_GINT64_MODIFIER -#define G_GOFFSET_FORMAT G_GINT64_FORMAT -#define G_GOFFSET_CONSTANT(val) G_GINT64_CONSTANT(val) - - -#ifdef __LP64__ -#define GPOINTER_TO_INT(p) ((gint) (glong) (p)) -#define GPOINTER_TO_UINT(p) ((guint) (gulong) (p)) - -#define GINT_TO_POINTER(i) ((gpointer) (glong) (i)) -#define GUINT_TO_POINTER(u) ((gpointer) (gulong) (u)) - -typedef signed long gintptr; -typedef unsigned long guintptr; - -#define G_GINTPTR_MODIFIER "l" -#define G_GINTPTR_FORMAT "li" -#define G_GUINTPTR_FORMAT "lu" -#else -#define GPOINTER_TO_INT(p) ((gint) (p)) -#define GPOINTER_TO_UINT(p) ((guint) (p)) - -#define GINT_TO_POINTER(i) ((gpointer) (i)) -#define GUINT_TO_POINTER(u) ((gpointer) (u)) - -typedef signed int gintptr; -typedef unsigned int guintptr; - -#define G_GINTPTR_MODIFIER "" -#define G_GINTPTR_FORMAT "i" -#define G_GUINTPTR_FORMAT "u" -#endif - -#ifdef NeXT /* @#%@! NeXTStep */ -# define g_ATEXIT(proc) (!atexit (proc)) -#else -# define g_ATEXIT(proc) (atexit (proc)) -#endif - -#define g_memmove(dest,src,len) G_STMT_START { memmove ((dest), (src), (len)); } G_STMT_END - -#define GLIB_MAJOR_VERSION 2 -#define GLIB_MINOR_VERSION 38 -#define GLIB_MICRO_VERSION 2 - -#define G_OS_UNIX - - -#define G_VA_COPY va_copy -#ifdef __LP64__ -#define G_VA_COPY_AS_ARRAY 1 -#endif - -#ifdef __cplusplus -#define G_HAVE_INLINE 1 -#else /* !__cplusplus */ -#define G_HAVE_INLINE 1 -#define G_HAVE___INLINE 1 -#define G_HAVE___INLINE__ 1 -#endif /* !__cplusplus */ - -#ifdef __cplusplus -#define G_CAN_INLINE 1 -#else /* !__cplusplus */ -#define G_CAN_INLINE 1 -#endif - -#ifndef __cplusplus -# define G_HAVE_ISO_VARARGS 1 -#endif -#ifdef __cplusplus -# define G_HAVE_ISO_VARARGS 1 -#endif - -/* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi - * is passed ISO vararg support is turned off, and there is no work - * around to turn it on, so we unconditionally turn it off. - */ -#if __GNUC__ == 2 && __GNUC_MINOR__ == 95 -# undef G_HAVE_ISO_VARARGS -#endif - -#define G_HAVE_GNUC_VARARGS 1 -#define G_HAVE_GROWING_STACK 1 - -#if defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590) -#define G_GNUC_INTERNAL __attribute__((visibility("hidden"))) -#elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550) -#define G_GNUC_INTERNAL __hidden -#elif defined (__GNUC__) && defined (G_HAVE_GNUC_VISIBILITY) -#define G_GNUC_INTERNAL __attribute__((visibility("hidden"))) -#else -#define G_GNUC_INTERNAL -#endif - -#define G_THREADS_ENABLED -#define G_THREADS_IMPL_POSIX - -#define G_ATOMIC_LOCK_FREE - -#ifdef __BIG_ENDIAN__ -#define GINT16_TO_BE(val) ((gint16) (val)) -#define GUINT16_TO_BE(val) ((guint16) (val)) -#define GINT16_TO_LE(val) ((gint16) GUINT16_SWAP_LE_BE (val)) -#define GUINT16_TO_LE(val) (GUINT16_SWAP_LE_BE (val)) -#else -#define GINT16_TO_LE(val) ((gint16) (val)) -#define GUINT16_TO_LE(val) ((guint16) (val)) -#define GINT16_TO_BE(val) ((gint16) GUINT16_SWAP_LE_BE (val)) -#define GUINT16_TO_BE(val) (GUINT16_SWAP_LE_BE (val)) -#endif -#ifdef __BIG_ENDIAN__ -#define GINT32_TO_BE(val) ((gint32) (val)) -#define GUINT32_TO_BE(val) ((guint32) (val)) -#define GINT32_TO_LE(val) ((gint32) GUINT32_SWAP_LE_BE (val)) -#define GUINT32_TO_LE(val) (GUINT32_SWAP_LE_BE (val)) -#else -#define GINT32_TO_LE(val) ((gint32) (val)) -#define GUINT32_TO_LE(val) ((guint32) (val)) -#define GINT32_TO_BE(val) ((gint32) GUINT32_SWAP_LE_BE (val)) -#define GUINT32_TO_BE(val) (GUINT32_SWAP_LE_BE (val)) -#endif -#ifdef __BIG_ENDIAN__ -#define GINT64_TO_BE(val) ((gint64) (val)) -#define GUINT64_TO_BE(val) ((guint64) (val)) -#define GINT64_TO_LE(val) ((gint64) GUINT64_SWAP_LE_BE (val)) -#define GUINT64_TO_LE(val) (GUINT64_SWAP_LE_BE (val)) -#else -#define GINT64_TO_LE(val) ((gint64) (val)) -#define GUINT64_TO_LE(val) ((guint64) (val)) -#define GINT64_TO_BE(val) ((gint64) GUINT64_SWAP_LE_BE (val)) -#define GUINT64_TO_BE(val) (GUINT64_SWAP_LE_BE (val)) -#endif -#ifdef __LP64__ -#define GLONG_TO_LE(val) ((glong) GINT64_TO_LE (val)) -#define GULONG_TO_LE(val) ((gulong) GUINT64_TO_LE (val)) -#define GLONG_TO_BE(val) ((glong) GINT64_TO_BE (val)) -#define GULONG_TO_BE(val) ((gulong) GUINT64_TO_BE (val)) -#else -#define GLONG_TO_LE(val) ((glong) GINT32_TO_LE (val)) -#define GULONG_TO_LE(val) ((gulong) GUINT32_TO_LE (val)) -#define GLONG_TO_BE(val) ((glong) GINT32_TO_BE (val)) -#define GULONG_TO_BE(val) ((gulong) GUINT32_TO_BE (val)) -#endif -#define GINT_TO_LE(val) ((gint) GINT32_TO_LE (val)) -#define GUINT_TO_LE(val) ((guint) GUINT32_TO_LE (val)) -#define GINT_TO_BE(val) ((gint) GINT32_TO_BE (val)) -#define GUINT_TO_BE(val) ((guint) GUINT32_TO_BE (val)) -#ifdef __LP64__ -#define GSIZE_TO_LE(val) ((gsize) GUINT64_TO_LE (val)) -#define GSSIZE_TO_LE(val) ((gssize) GINT64_TO_LE (val)) -#define GSIZE_TO_BE(val) ((gsize) GUINT64_TO_BE (val)) -#define GSSIZE_TO_BE(val) ((gssize) GINT64_TO_BE (val)) -#else -#define GSIZE_TO_LE(val) ((gsize) GUINT32_TO_LE (val)) -#define GSSIZE_TO_LE(val) ((gssize) GINT32_TO_LE (val)) -#define GSIZE_TO_BE(val) ((gsize) GUINT32_TO_BE (val)) -#define GSSIZE_TO_BE(val) ((gssize) GINT32_TO_BE (val)) -#endif -#ifdef __BIG_ENDIAN__ -#define G_BYTE_ORDER G_BIG_ENDIAN -#else -#define G_BYTE_ORDER G_LITTLE_ENDIAN -#endif - -#define GLIB_SYSDEF_POLLIN =1 -#define GLIB_SYSDEF_POLLOUT =4 -#define GLIB_SYSDEF_POLLPRI =2 -#define GLIB_SYSDEF_POLLHUP =16 -#define GLIB_SYSDEF_POLLERR =8 -#define GLIB_SYSDEF_POLLNVAL =32 - -#define G_MODULE_SUFFIX "so" - -typedef int GPid; - -#define GLIB_SYSDEF_AF_UNIX 1 -#define GLIB_SYSDEF_AF_INET 2 -#define GLIB_SYSDEF_AF_INET6 30 - -#define GLIB_SYSDEF_MSG_OOB 1 -#define GLIB_SYSDEF_MSG_PEEK 2 -#define GLIB_SYSDEF_MSG_DONTROUTE 4 - -G_END_DECLS - -#endif /* __GLIBCONFIG_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gmodule.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gmodule.h deleted file mode 100644 index cb9b119..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gmodule.h +++ /dev/null @@ -1,117 +0,0 @@ -/* GMODULE - GLIB wrapper code for dynamic module loading - * Copyright (C) 1998 Tim Janik - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* - * Modified by the GLib Team and others 1997-2000. See the AUTHORS - * file for a list of people on the GLib Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __GMODULE_H__ -#define __GMODULE_H__ - -#include - -G_BEGIN_DECLS - -/* exporting and importing functions, this is special cased - * to feature Windows dll stubs. - */ -#define G_MODULE_IMPORT extern -#ifdef G_PLATFORM_WIN32 -# define G_MODULE_EXPORT __declspec(dllexport) -#else /* !G_PLATFORM_WIN32 */ -# define G_MODULE_EXPORT -#endif /* !G_PLATFORM_WIN32 */ - -typedef enum -{ - G_MODULE_BIND_LAZY = 1 << 0, - G_MODULE_BIND_LOCAL = 1 << 1, - G_MODULE_BIND_MASK = 0x03 -} GModuleFlags; - -typedef struct _GModule GModule; -typedef const gchar* (*GModuleCheckInit) (GModule *module); -typedef void (*GModuleUnload) (GModule *module); - -/* return TRUE if dynamic module loading is supported */ -GLIB_AVAILABLE_IN_ALL -gboolean g_module_supported (void) G_GNUC_CONST; - -/* open a module 'file_name' and return handle, which is NULL on error */ -GLIB_AVAILABLE_IN_ALL -GModule* g_module_open (const gchar *file_name, - GModuleFlags flags); - -/* close a previously opened module, returns TRUE on success */ -GLIB_AVAILABLE_IN_ALL -gboolean g_module_close (GModule *module); - -/* make a module resident so g_module_close on it will be ignored */ -GLIB_AVAILABLE_IN_ALL -void g_module_make_resident (GModule *module); - -/* query the last module error as a string */ -GLIB_AVAILABLE_IN_ALL -const gchar * g_module_error (void); - -/* retrieve a symbol pointer from 'module', returns TRUE on success */ -GLIB_AVAILABLE_IN_ALL -gboolean g_module_symbol (GModule *module, - const gchar *symbol_name, - gpointer *symbol); - -/* retrieve the file name from an existing module */ -GLIB_AVAILABLE_IN_ALL -const gchar * g_module_name (GModule *module); - -/* Build the actual file name containing a module. 'directory' is the - * directory where the module file is supposed to be, or NULL or empty - * in which case it should either be in the current directory or, on - * some operating systems, in some standard place, for instance on the - * PATH. Hence, to be absoultely sure to get the correct module, - * always pass in a directory. The file name consists of the directory, - * if supplied, and 'module_name' suitably decorated according to - * the operating system's conventions (for instance lib*.so or *.dll). - * - * No checks are made that the file exists, or is of correct type. - */ -GLIB_AVAILABLE_IN_ALL -gchar* g_module_build_path (const gchar *directory, - const gchar *module_name); - - -#ifndef __GTK_DOC_IGNORE__ -#ifdef G_OS_WIN32 -#define g_module_open g_module_open_utf8 -#define g_module_name g_module_name_utf8 - -GLIB_AVAILABLE_IN_ALL -GModule * g_module_open_utf8 (const gchar *file_name, - GModuleFlags flags); -GLIB_AVAILABLE_IN_ALL -const gchar *g_module_name_utf8 (GModule *module); -#endif -#endif - -G_END_DECLS - -#endif /* __GMODULE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gbinding.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gbinding.h deleted file mode 100644 index 82677ca..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gbinding.h +++ /dev/null @@ -1,151 +0,0 @@ -/* gbinding.h: Binding for object properties - * - * Copyright (C) 2010 Intel Corp. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * Author: Emmanuele Bassi - */ - -#ifndef __G_BINDING_H__ -#define __G_BINDING_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -#define G_TYPE_BINDING_FLAGS (g_binding_flags_get_type ()) - -#define G_TYPE_BINDING (g_binding_get_type ()) -#define G_BINDING(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_BINDING, GBinding)) -#define G_IS_BINDING(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_BINDING)) - -/** - * GBinding: - * - * GBinding is an opaque structure whose members - * cannot be accessed directly. - * - * Since: 2.26 - */ -typedef struct _GBinding GBinding; - -/** - * GBindingTransformFunc: - * @binding: a #GBinding - * @from_value: the #GValue containing the value to transform - * @to_value: the #GValue in which to store the transformed value - * @user_data: data passed to the transform function - * - * A function to be called to transform @from_value to @to_value. If - * this is the @transform_to function of a binding, then @from_value - * is the @source_property on the @source object, and @to_value is the - * @target_property on the @target object. If this is the - * @transform_from function of a %G_BINDING_BIDIRECTIONAL binding, - * then those roles are reversed. - * - * Return value: %TRUE if the transformation was successful, and %FALSE - * otherwise - * - * Since: 2.26 - */ -typedef gboolean (* GBindingTransformFunc) (GBinding *binding, - const GValue *from_value, - GValue *to_value, - gpointer user_data); - -/** - * GBindingFlags: - * @G_BINDING_DEFAULT: The default binding; if the source property - * changes, the target property is updated with its value. - * @G_BINDING_BIDIRECTIONAL: Bidirectional binding; if either the - * property of the source or the property of the target changes, - * the other is updated. - * @G_BINDING_SYNC_CREATE: Synchronize the values of the source and - * target properties when creating the binding; the direction of - * the synchronization is always from the source to the target. - * @G_BINDING_INVERT_BOOLEAN: If the two properties being bound are - * booleans, setting one to %TRUE will result in the other being - * set to %FALSE and vice versa. This flag will only work for - * boolean properties, and cannot be used when passing custom - * transformation functions to g_object_bind_property_full(). - * - * Flags to be passed to g_object_bind_property() or - * g_object_bind_property_full(). - * - * This enumeration can be extended at later date. - * - * Since: 2.26 - */ -typedef enum { /*< prefix=G_BINDING >*/ - G_BINDING_DEFAULT = 0, - - G_BINDING_BIDIRECTIONAL = 1 << 0, - G_BINDING_SYNC_CREATE = 1 << 1, - G_BINDING_INVERT_BOOLEAN = 1 << 2 -} GBindingFlags; - -GLIB_AVAILABLE_IN_ALL -GType g_binding_flags_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_binding_get_type (void) G_GNUC_CONST; - -GLIB_AVAILABLE_IN_ALL -GBindingFlags g_binding_get_flags (GBinding *binding); -GLIB_AVAILABLE_IN_ALL -GObject * g_binding_get_source (GBinding *binding); -GLIB_AVAILABLE_IN_ALL -GObject * g_binding_get_target (GBinding *binding); -GLIB_AVAILABLE_IN_ALL -const gchar * g_binding_get_source_property (GBinding *binding); -GLIB_AVAILABLE_IN_ALL -const gchar * g_binding_get_target_property (GBinding *binding); -GLIB_AVAILABLE_IN_2_38 -void g_binding_unbind (GBinding *binding); - -GLIB_AVAILABLE_IN_ALL -GBinding *g_object_bind_property (gpointer source, - const gchar *source_property, - gpointer target, - const gchar *target_property, - GBindingFlags flags); -GLIB_AVAILABLE_IN_ALL -GBinding *g_object_bind_property_full (gpointer source, - const gchar *source_property, - gpointer target, - const gchar *target_property, - GBindingFlags flags, - GBindingTransformFunc transform_to, - GBindingTransformFunc transform_from, - gpointer user_data, - GDestroyNotify notify); -GLIB_AVAILABLE_IN_ALL -GBinding *g_object_bind_property_with_closures (gpointer source, - const gchar *source_property, - gpointer target, - const gchar *target_property, - GBindingFlags flags, - GClosure *transform_to, - GClosure *transform_from); - -G_END_DECLS - -#endif /* __G_BINDING_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gboxed.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gboxed.h deleted file mode 100644 index 5f6b915..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gboxed.h +++ /dev/null @@ -1,124 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000-2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_BOXED_H__ -#define __G_BOXED_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -#ifndef __GI_SCANNER__ -#include -#endif - -G_BEGIN_DECLS - -/* --- type macros --- */ -#define G_TYPE_IS_BOXED(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_BOXED) -/** - * G_VALUE_HOLDS_BOXED: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values derived - * from type %G_TYPE_BOXED. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_BOXED(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOXED)) - - -/* --- typedefs --- */ -/** - * GBoxedCopyFunc: - * @boxed: The boxed structure to be copied. - * - * This function is provided by the user and should produce a copy - * of the passed in boxed structure. - * - * Returns: The newly created copy of the boxed structure. - */ -typedef gpointer (*GBoxedCopyFunc) (gpointer boxed); - -/** - * GBoxedFreeFunc: - * @boxed: The boxed structure to be freed. - * - * This function is provided by the user and should free the boxed - * structure passed. - */ -typedef void (*GBoxedFreeFunc) (gpointer boxed); - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -gpointer g_boxed_copy (GType boxed_type, - gconstpointer src_boxed); -GLIB_AVAILABLE_IN_ALL -void g_boxed_free (GType boxed_type, - gpointer boxed); -GLIB_AVAILABLE_IN_ALL -void g_value_set_boxed (GValue *value, - gconstpointer v_boxed); -GLIB_AVAILABLE_IN_ALL -void g_value_set_static_boxed (GValue *value, - gconstpointer v_boxed); -GLIB_AVAILABLE_IN_ALL -void g_value_take_boxed (GValue *value, - gconstpointer v_boxed); -GLIB_DEPRECATED_FOR(g_value_take_boxed) -void g_value_set_boxed_take_ownership (GValue *value, - gconstpointer v_boxed); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_get_boxed (const GValue *value); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_dup_boxed (const GValue *value); - - -/* --- convenience --- */ -GLIB_AVAILABLE_IN_ALL -GType g_boxed_type_register_static (const gchar *name, - GBoxedCopyFunc boxed_copy, - GBoxedFreeFunc boxed_free); - -/* --- GObject boxed types --- */ -/** - * G_TYPE_CLOSURE: - * - * The #GType for #GClosure. - */ -#define G_TYPE_CLOSURE (g_closure_get_type ()) - -/** - * G_TYPE_VALUE: - * - * The type ID of the "GValue" type which is a boxed type, - * used to pass around pointers to GValues. - */ -#define G_TYPE_VALUE (g_value_get_type ()) - -GLIB_AVAILABLE_IN_ALL -GType g_closure_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_value_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif /* __G_BOXED_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gclosure.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gclosure.h deleted file mode 100644 index f59aab5..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gclosure.h +++ /dev/null @@ -1,299 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000-2001 Red Hat, Inc. - * Copyright (C) 2005 Imendio AB - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_CLOSURE_H__ -#define __G_CLOSURE_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- defines --- */ -/** - * G_CLOSURE_NEEDS_MARSHAL: - * @closure: a #GClosure - * - * Check if the closure still needs a marshaller. See g_closure_set_marshal(). - * - * Returns: %TRUE if a #GClosureMarshal marshaller has not yet been set on - * @closure. - */ -#define G_CLOSURE_NEEDS_MARSHAL(closure) (((GClosure*) (closure))->marshal == NULL) -/** - * G_CLOSURE_N_NOTIFIERS: - * @cl: a #GClosure - * - * Get the total number of notifiers connected with the closure @cl. - * The count includes the meta marshaller, the finalize and invalidate notifiers - * and the marshal guards. Note that each guard counts as two notifiers. - * See g_closure_set_meta_marshal(), g_closure_add_finalize_notifier(), - * g_closure_add_invalidate_notifier() and g_closure_add_marshal_guards(). - * - * Returns: number of notifiers - */ -#define G_CLOSURE_N_NOTIFIERS(cl) (((cl)->n_guards << 1L) + \ - (cl)->n_fnotifiers + (cl)->n_inotifiers) -/** - * G_CCLOSURE_SWAP_DATA: - * @cclosure: a #GCClosure - * - * Checks whether the user data of the #GCClosure should be passed as the - * first parameter to the callback. See g_cclosure_new_swap(). - * - * Returns: %TRUE if data has to be swapped. - */ -#define G_CCLOSURE_SWAP_DATA(cclosure) (((GClosure*) (cclosure))->derivative_flag) -/** - * G_CALLBACK: - * @f: a function pointer. - * - * Cast a function pointer to a #GCallback. - */ -#define G_CALLBACK(f) ((GCallback) (f)) - - -/* -- typedefs --- */ -typedef struct _GClosure GClosure; -typedef struct _GClosureNotifyData GClosureNotifyData; - -/** - * GCallback: - * - * The type used for callback functions in structure definitions and function - * signatures. This doesn't mean that all callback functions must take no - * parameters and return void. The required signature of a callback function - * is determined by the context in which is used (e.g. the signal to which it - * is connected). Use G_CALLBACK() to cast the callback function to a #GCallback. - */ -typedef void (*GCallback) (void); -/** - * GClosureNotify: - * @data: data specified when registering the notification callback - * @closure: the #GClosure on which the notification is emitted - * - * The type used for the various notification callbacks which can be registered - * on closures. - */ -typedef void (*GClosureNotify) (gpointer data, - GClosure *closure); -/** - * GClosureMarshal: - * @closure: the #GClosure to which the marshaller belongs - * @return_value: (allow-none): a #GValue to store the return - * value. May be %NULL if the callback of @closure doesn't return a - * value. - * @n_param_values: the length of the @param_values array - * @param_values: (array length=n_param_values): an array of - * #GValues holding the arguments on which to invoke the - * callback of @closure - * @invocation_hint: (allow-none): the invocation hint given as the - * last argument to g_closure_invoke() - * @marshal_data: (allow-none): additional data specified when - * registering the marshaller, see g_closure_set_marshal() and - * g_closure_set_meta_marshal() - * - * The type used for marshaller functions. - */ -typedef void (*GClosureMarshal) (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -typedef void (* GVaClosureMarshal) (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/** - * GCClosure: - * @closure: the #GClosure - * @callback: the callback function - * - * A #GCClosure is a specialization of #GClosure for C function callbacks. - */ -typedef struct _GCClosure GCClosure; - - -/* --- structures --- */ -struct _GClosureNotifyData -{ - gpointer data; - GClosureNotify notify; -}; -/** - * GClosure: - * @in_marshal: Indicates whether the closure is currently being invoked with - * g_closure_invoke() - * @is_invalid: Indicates whether the closure has been invalidated by - * g_closure_invalidate() - * - * A #GClosure represents a callback supplied by the programmer. - */ -struct _GClosure -{ - /*< private >*/ - volatile guint ref_count : 15; - /* meta_marshal is not used anymore but must be zero for historical reasons - as it was exposed in the G_CLOSURE_N_NOTIFIERS macro */ - volatile guint meta_marshal_nouse : 1; - volatile guint n_guards : 1; - volatile guint n_fnotifiers : 2; /* finalization notifiers */ - volatile guint n_inotifiers : 8; /* invalidation notifiers */ - volatile guint in_inotify : 1; - volatile guint floating : 1; - /*< protected >*/ - volatile guint derivative_flag : 1; - /*< public >*/ - volatile guint in_marshal : 1; - volatile guint is_invalid : 1; - - /*< private >*/ void (*marshal) (GClosure *closure, - GValue /*out*/ *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - /*< protected >*/ gpointer data; - - /*< private >*/ GClosureNotifyData *notifiers; - - /* invariants/constrains: - * - ->marshal and ->data are _invalid_ as soon as ->is_invalid==TRUE - * - invocation of all inotifiers occours prior to fnotifiers - * - order of inotifiers is random - * inotifiers may _not_ free/invalidate parameter values (e.g. ->data) - * - order of fnotifiers is random - * - each notifier may only be removed before or during its invocation - * - reference counting may only happen prior to fnotify invocation - * (in that sense, fnotifiers are really finalization handlers) - */ -}; -/* closure for C function calls, callback() is the user function - */ -struct _GCClosure -{ - GClosure closure; - gpointer callback; -}; - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GClosure* g_cclosure_new (GCallback callback_func, - gpointer user_data, - GClosureNotify destroy_data); -GLIB_AVAILABLE_IN_ALL -GClosure* g_cclosure_new_swap (GCallback callback_func, - gpointer user_data, - GClosureNotify destroy_data); -GLIB_AVAILABLE_IN_ALL -GClosure* g_signal_type_cclosure_new (GType itype, - guint struct_offset); - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GClosure* g_closure_ref (GClosure *closure); -GLIB_AVAILABLE_IN_ALL -void g_closure_sink (GClosure *closure); -GLIB_AVAILABLE_IN_ALL -void g_closure_unref (GClosure *closure); -/* intimidating */ -GLIB_AVAILABLE_IN_ALL -GClosure* g_closure_new_simple (guint sizeof_closure, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_closure_add_finalize_notifier (GClosure *closure, - gpointer notify_data, - GClosureNotify notify_func); -GLIB_AVAILABLE_IN_ALL -void g_closure_remove_finalize_notifier (GClosure *closure, - gpointer notify_data, - GClosureNotify notify_func); -GLIB_AVAILABLE_IN_ALL -void g_closure_add_invalidate_notifier (GClosure *closure, - gpointer notify_data, - GClosureNotify notify_func); -GLIB_AVAILABLE_IN_ALL -void g_closure_remove_invalidate_notifier (GClosure *closure, - gpointer notify_data, - GClosureNotify notify_func); -GLIB_AVAILABLE_IN_ALL -void g_closure_add_marshal_guards (GClosure *closure, - gpointer pre_marshal_data, - GClosureNotify pre_marshal_notify, - gpointer post_marshal_data, - GClosureNotify post_marshal_notify); -GLIB_AVAILABLE_IN_ALL -void g_closure_set_marshal (GClosure *closure, - GClosureMarshal marshal); -GLIB_AVAILABLE_IN_ALL -void g_closure_set_meta_marshal (GClosure *closure, - gpointer marshal_data, - GClosureMarshal meta_marshal); -GLIB_AVAILABLE_IN_ALL -void g_closure_invalidate (GClosure *closure); -GLIB_AVAILABLE_IN_ALL -void g_closure_invoke (GClosure *closure, - GValue /*out*/ *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint); - -/* FIXME: - OK: data_object::destroy -> closure_invalidate(); - MIS: closure_invalidate() -> disconnect(closure); - MIS: disconnect(closure) -> (unlink) closure_unref(); - OK: closure_finalize() -> g_free (data_string); - - random remarks: - - need marshaller repo with decent aliasing to base types - - provide marshaller collection, virtually covering anything out there -*/ - -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_generic (GClosure *closure, - GValue *return_gvalue, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_generic_va (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args_list, - gpointer marshal_data, - int n_params, - GType *param_types); - - -G_END_DECLS - -#endif /* __G_CLOSURE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/genums.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/genums.h deleted file mode 100644 index 8aa7b89..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/genums.h +++ /dev/null @@ -1,275 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_ENUMS_H__ -#define __G_ENUMS_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -/** - * G_TYPE_IS_ENUM: - * @type: a #GType ID. - * - * Checks whether @type "is a" %G_TYPE_ENUM. - * - * Returns: %TRUE if @type "is a" %G_TYPE_ENUM. - */ -#define G_TYPE_IS_ENUM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_ENUM) -/** - * G_ENUM_CLASS: - * @class: a valid #GEnumClass - * - * Casts a derived #GEnumClass structure into a #GEnumClass structure. - */ -#define G_ENUM_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_ENUM, GEnumClass)) -/** - * G_IS_ENUM_CLASS: - * @class: a #GEnumClass - * - * Checks whether @class "is a" valid #GEnumClass structure of type %G_TYPE_ENUM - * or derived. - */ -#define G_IS_ENUM_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_ENUM)) -/** - * G_ENUM_CLASS_TYPE: - * @class: a #GEnumClass - * - * Get the type identifier from a given #GEnumClass structure. - * - * Returns: the #GType - */ -#define G_ENUM_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class)) -/** - * G_ENUM_CLASS_TYPE_NAME: - * @class: a #GEnumClass - * - * Get the static type name from a given #GEnumClass structure. - * - * Returns: the type name. - */ -#define G_ENUM_CLASS_TYPE_NAME(class) (g_type_name (G_ENUM_CLASS_TYPE (class))) - - -/** - * G_TYPE_IS_FLAGS: - * @type: a #GType ID. - * - * Checks whether @type "is a" %G_TYPE_FLAGS. - * - * Returns: %TRUE if @type "is a" %G_TYPE_FLAGS. - */ -#define G_TYPE_IS_FLAGS(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_FLAGS) -/** - * G_FLAGS_CLASS: - * @class: a valid #GFlagsClass - * - * Casts a derived #GFlagsClass structure into a #GFlagsClass structure. - */ -#define G_FLAGS_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_FLAGS, GFlagsClass)) -/** - * G_IS_FLAGS_CLASS: - * @class: a #GFlagsClass - * - * Checks whether @class "is a" valid #GFlagsClass structure of type %G_TYPE_FLAGS - * or derived. - */ -#define G_IS_FLAGS_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_FLAGS)) -/** - * G_FLAGS_CLASS_TYPE: - * @class: a #GFlagsClass - * - * Get the type identifier from a given #GFlagsClass structure. - * - * Returns: the #GType - */ -#define G_FLAGS_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class)) -/** - * G_FLAGS_CLASS_TYPE_NAME: - * @class: a #GFlagsClass - * - * Get the static type name from a given #GFlagsClass structure. - * - * Returns: the type name. - */ -#define G_FLAGS_CLASS_TYPE_NAME(class) (g_type_name (G_FLAGS_CLASS_TYPE (class))) - - -/** - * G_VALUE_HOLDS_ENUM: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values derived from type %G_TYPE_ENUM. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_ENUM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ENUM)) -/** - * G_VALUE_HOLDS_FLAGS: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values derived from type %G_TYPE_FLAGS. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_FLAGS(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLAGS)) - - -/* --- enum/flag values & classes --- */ -typedef struct _GEnumClass GEnumClass; -typedef struct _GFlagsClass GFlagsClass; -typedef struct _GEnumValue GEnumValue; -typedef struct _GFlagsValue GFlagsValue; - -/** - * GEnumClass: - * @g_type_class: the parent class - * @minimum: the smallest possible value. - * @maximum: the largest possible value. - * @n_values: the number of possible values. - * @values: an array of #GEnumValue structs describing the - * individual values. - * - * The class of an enumeration type holds information about its - * possible values. - */ -struct _GEnumClass -{ - GTypeClass g_type_class; - - /*< public >*/ - gint minimum; - gint maximum; - guint n_values; - GEnumValue *values; -}; -/** - * GFlagsClass: - * @g_type_class: the parent class - * @mask: a mask covering all possible values. - * @n_values: the number of possible values. - * @values: an array of #GFlagsValue structs describing the - * individual values. - * - * The class of a flags type holds information about its - * possible values. - */ -struct _GFlagsClass -{ - GTypeClass g_type_class; - - /*< public >*/ - guint mask; - guint n_values; - GFlagsValue *values; -}; -/** - * GEnumValue: - * @value: the enum value - * @value_name: the name of the value - * @value_nick: the nickname of the value - * - * A structure which contains a single enum value, its name, and its - * nickname. - */ -struct _GEnumValue -{ - gint value; - const gchar *value_name; - const gchar *value_nick; -}; -/** - * GFlagsValue: - * @value: the flags value - * @value_name: the name of the value - * @value_nick: the nickname of the value - * - * A structure which contains a single flags value, its name, and its - * nickname. - */ -struct _GFlagsValue -{ - guint value; - const gchar *value_name; - const gchar *value_nick; -}; - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GEnumValue* g_enum_get_value (GEnumClass *enum_class, - gint value); -GLIB_AVAILABLE_IN_ALL -GEnumValue* g_enum_get_value_by_name (GEnumClass *enum_class, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GEnumValue* g_enum_get_value_by_nick (GEnumClass *enum_class, - const gchar *nick); -GLIB_AVAILABLE_IN_ALL -GFlagsValue* g_flags_get_first_value (GFlagsClass *flags_class, - guint value); -GLIB_AVAILABLE_IN_ALL -GFlagsValue* g_flags_get_value_by_name (GFlagsClass *flags_class, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GFlagsValue* g_flags_get_value_by_nick (GFlagsClass *flags_class, - const gchar *nick); -GLIB_AVAILABLE_IN_ALL -void g_value_set_enum (GValue *value, - gint v_enum); -GLIB_AVAILABLE_IN_ALL -gint g_value_get_enum (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_flags (GValue *value, - guint v_flags); -GLIB_AVAILABLE_IN_ALL -guint g_value_get_flags (const GValue *value); - - - -/* --- registration functions --- */ -/* const_static_values is a NULL terminated array of enum/flags - * values that is taken over! - */ -GLIB_AVAILABLE_IN_ALL -GType g_enum_register_static (const gchar *name, - const GEnumValue *const_static_values); -GLIB_AVAILABLE_IN_ALL -GType g_flags_register_static (const gchar *name, - const GFlagsValue *const_static_values); -/* functions to complete the type information - * for enums/flags implemented by plugins - */ -GLIB_AVAILABLE_IN_ALL -void g_enum_complete_type_info (GType g_enum_type, - GTypeInfo *info, - const GEnumValue *const_values); -GLIB_AVAILABLE_IN_ALL -void g_flags_complete_type_info (GType g_flags_type, - GTypeInfo *info, - const GFlagsValue *const_values); - -G_END_DECLS - -#endif /* __G_ENUMS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/glib-types.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/glib-types.h deleted file mode 100644 index 663d790..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/glib-types.h +++ /dev/null @@ -1,338 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000-2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __GLIB_TYPES_H__ -#define __GLIB_TYPES_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) && !defined(GLIB_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* A hack necesssary to preprocess this file with g-ir-scanner */ -#ifdef __GI_SCANNER__ -typedef gsize GType; -#endif - -/* --- GLib boxed types --- */ -/** - * G_TYPE_DATE: - * - * The #GType for #GDate. - */ -#define G_TYPE_DATE (g_date_get_type ()) - -/** - * G_TYPE_STRV: - * - * The #GType for a boxed type holding a %NULL-terminated array of strings. - * - * The code fragments in the following example show the use of a property of - * type #G_TYPE_STRV with g_object_class_install_property(), g_object_set() - * and g_object_get(). - * - * |[ - * g_object_class_install_property (object_class, - * PROP_AUTHORS, - * g_param_spec_boxed ("authors", - * _("Authors"), - * _("List of authors"), - * G_TYPE_STRV, - * G_PARAM_READWRITE)); - * - * gchar *authors[] = { "Owen", "Tim", NULL }; - * g_object_set (obj, "authors", authors, NULL); - * - * gchar *writers[]; - * g_object_get (obj, "authors", &writers, NULL); - * /* do something with writers */ - * g_strfreev (writers); - * ]| - * - * Since: 2.4 - */ -#define G_TYPE_STRV (g_strv_get_type ()) - -/** - * G_TYPE_GSTRING: - * - * The #GType for #GString. - */ -#define G_TYPE_GSTRING (g_gstring_get_type ()) - -/** - * G_TYPE_HASH_TABLE: - * - * The #GType for a boxed type holding a #GHashTable reference. - * - * Since: 2.10 - */ -#define G_TYPE_HASH_TABLE (g_hash_table_get_type ()) - -/** - * G_TYPE_REGEX: - * - * The #GType for a boxed type holding a #GRegex reference. - * - * Since: 2.14 - */ -#define G_TYPE_REGEX (g_regex_get_type ()) - -/** - * G_TYPE_MATCH_INFO: - * - * The #GType for a boxed type holding a #GMatchInfo reference. - * - * Since: 2.30 - */ -#define G_TYPE_MATCH_INFO (g_match_info_get_type ()) - -/** - * G_TYPE_ARRAY: - * - * The #GType for a boxed type holding a #GArray reference. - * - * Since: 2.22 - */ -#define G_TYPE_ARRAY (g_array_get_type ()) - -/** - * G_TYPE_BYTE_ARRAY: - * - * The #GType for a boxed type holding a #GByteArray reference. - * - * Since: 2.22 - */ -#define G_TYPE_BYTE_ARRAY (g_byte_array_get_type ()) - -/** - * G_TYPE_PTR_ARRAY: - * - * The #GType for a boxed type holding a #GPtrArray reference. - * - * Since: 2.22 - */ -#define G_TYPE_PTR_ARRAY (g_ptr_array_get_type ()) - -/** - * G_TYPE_BYTES: - * - * The #GType for #GBytes. - * - * Since: 2.32 - */ -#define G_TYPE_BYTES (g_bytes_get_type ()) - -/** - * G_TYPE_VARIANT_TYPE: - * - * The #GType for a boxed type holding a #GVariantType. - * - * Since: 2.24 - */ -#define G_TYPE_VARIANT_TYPE (g_variant_type_get_gtype ()) - -/** - * G_TYPE_ERROR: - * - * The #GType for a boxed type holding a #GError. - * - * Since: 2.26 - */ -#define G_TYPE_ERROR (g_error_get_type ()) - -/** - * G_TYPE_DATE_TIME: - * - * The #GType for a boxed type holding a #GDateTime. - * - * Since: 2.26 - */ -#define G_TYPE_DATE_TIME (g_date_time_get_type ()) - -/** - * G_TYPE_TIME_ZONE: - * - * The #GType for a boxed type holding a #GTimeZone. - * - * Since: 2.34 - */ -#define G_TYPE_TIME_ZONE (g_time_zone_get_type ()) - -/** - * G_TYPE_IO_CHANNEL: - * - * The #GType for #GIOChannel. - */ -#define G_TYPE_IO_CHANNEL (g_io_channel_get_type ()) - -/** - * G_TYPE_IO_CONDITION: - * - * The #GType for #GIOCondition. - */ -#define G_TYPE_IO_CONDITION (g_io_condition_get_type ()) - -/** - * G_TYPE_VARIANT_BUILDER: - * - * The #GType for a boxed type holding a #GVariantBuilder. - * - * Since: 2.30 - */ -#define G_TYPE_VARIANT_BUILDER (g_variant_builder_get_type ()) - -/** - * G_TYPE_MAIN_LOOP: - * - * The #GType for a boxed type holding a #GMainLoop. - * - * Since: 2.30 - */ -#define G_TYPE_MAIN_LOOP (g_main_loop_get_type ()) - -/** - * G_TYPE_MAIN_CONTEXT: - * - * The #GType for a boxed type holding a #GMainContext. - * - * Since: 2.30 - */ -#define G_TYPE_MAIN_CONTEXT (g_main_context_get_type ()) - -/** - * G_TYPE_SOURCE: - * - * The #GType for a boxed type holding a #GSource. - * - * Since: 2.30 - */ -#define G_TYPE_SOURCE (g_source_get_type ()) - -/** - * G_TYPE_POLLFD: - * - * The #GType for a boxed type holding a #GPollFD. - * - * Since: 2.36 - */ -#define G_TYPE_POLLFD (g_pollfd_get_type ()) - -/** - * G_TYPE_MARKUP_PARSE_CONTEXT: - * - * The #GType for a boxed type holding a #GMarkupParseContext. - * - * Since: 2.36 - */ -#define G_TYPE_MARKUP_PARSE_CONTEXT (g_markup_parse_context_get_type ()) - -/** - * G_TYPE_KEY_FILE: - * - * The #GType for a boxed type holding a #GKeyFile. - * - * Since: 2.32 - */ -#define G_TYPE_KEY_FILE (g_key_file_get_type ()) - -/** - * G_TYPE_THREAD: - * - * The #GType for a boxed type holding a #GThread. - * - * Since: 2.36 - */ -#define G_TYPE_THREAD (g_thread_get_type ()) - -/** - * G_TYPE_CHECKSUM: - * - * The #GType for a boxed type holding a #GChecksum. - * - * Since: 2.36 - */ -#define G_TYPE_CHECKSUM (g_checksum_get_type ()) - -GLIB_AVAILABLE_IN_ALL -GType g_date_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_strv_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_gstring_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_hash_table_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_array_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_byte_array_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_ptr_array_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_bytes_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_variant_type_get_gtype (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_regex_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_30 -GType g_match_info_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_error_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_date_time_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_time_zone_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_io_channel_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_io_condition_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_variant_builder_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -GType g_key_file_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_30 -GType g_main_loop_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_30 -GType g_main_context_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_30 -GType g_source_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_36 -GType g_pollfd_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_36 -GType g_thread_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_36 -GType g_checksum_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_2_36 -GType g_markup_parse_context_get_type (void) G_GNUC_CONST; - -GLIB_DEPRECATED_FOR('G_TYPE_VARIANT') -GType g_variant_get_gtype (void) G_GNUC_CONST; - -/** - * GStrv: - * - * A C representable type name for #G_TYPE_STRV. - */ -typedef gchar** GStrv; - -G_END_DECLS - -#endif /* __GLIB_TYPES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gmarshal.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gmarshal.h deleted file mode 100644 index d4fd76a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gmarshal.h +++ /dev/null @@ -1,385 +0,0 @@ -/* Note: This file is no longer generated. See the comment in gmarshal.list */ -#ifndef __G_MARSHAL_H__ -#define __G_MARSHAL_H__ - -G_BEGIN_DECLS - -/* VOID:VOID (./gmarshal.list:6) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__VOID (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__VOIDv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:BOOLEAN (./gmarshal.list:7) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__BOOLEAN (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__BOOLEANv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:CHAR (./gmarshal.list:8) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__CHAR (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__CHARv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:UCHAR (./gmarshal.list:9) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UCHAR (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UCHARv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:INT (./gmarshal.list:10) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__INT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__INTv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:UINT (./gmarshal.list:11) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UINT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UINTv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:LONG (./gmarshal.list:12) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__LONG (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__LONGv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:ULONG (./gmarshal.list:13) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__ULONG (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__ULONGv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:ENUM (./gmarshal.list:14) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__ENUM (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__ENUMv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:FLAGS (./gmarshal.list:15) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__FLAGS (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__FLAGSv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:FLOAT (./gmarshal.list:16) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__FLOAT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__FLOATv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:DOUBLE (./gmarshal.list:17) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__DOUBLE (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__DOUBLEv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:STRING (./gmarshal.list:18) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__STRING (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__STRINGv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:PARAM (./gmarshal.list:19) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__PARAM (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__PARAMv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:BOXED (./gmarshal.list:20) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__BOXED (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__BOXEDv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:POINTER (./gmarshal.list:21) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__POINTER (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__POINTERv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:OBJECT (./gmarshal.list:22) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__OBJECT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__OBJECTv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:VARIANT (./gmarshal.list:23) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__VARIANT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__VARIANTv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* VOID:UINT,POINTER (./gmarshal.list:26) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UINT_POINTER (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_VOID__UINT_POINTERv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* BOOL:FLAGS (./gmarshal.list:27) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_BOOLEAN__FLAGS (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_BOOLEAN__FLAGSv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); -#define g_cclosure_marshal_BOOL__FLAGS g_cclosure_marshal_BOOLEAN__FLAGS - -/* STRING:OBJECT,POINTER (./gmarshal.list:28) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_STRING__OBJECT_POINTER (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_STRING__OBJECT_POINTERv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); - -/* BOOL:BOXED,BOXED (./gmarshal.list:29) */ -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_BOOLEAN__BOXED_BOXED (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); -GLIB_AVAILABLE_IN_ALL -void g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv (GClosure *closure, - GValue *return_value, - gpointer instance, - va_list args, - gpointer marshal_data, - int n_params, - GType *param_types); -#define g_cclosure_marshal_BOOL__BOXED_BOXED g_cclosure_marshal_BOOLEAN__BOXED_BOXED - -G_END_DECLS - -#endif /* __G_MARSHAL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobject.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobject.h deleted file mode 100644 index 03a9629..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobject.h +++ /dev/null @@ -1,670 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_OBJECT_H__ -#define __G_OBJECT_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include -#include -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -/** - * G_TYPE_IS_OBJECT: - * @type: Type id to check - * - * Check if the passed in type id is a %G_TYPE_OBJECT or derived from it. - * - * Returns: %FALSE or %TRUE, indicating whether @type is a %G_TYPE_OBJECT. - */ -#define G_TYPE_IS_OBJECT(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_OBJECT) -/** - * G_OBJECT: - * @object: Object which is subject to casting. - * - * Casts a #GObject or derived pointer into a (GObject*) pointer. - * Depending on the current debugging level, this function may invoke - * certain runtime checks to identify invalid casts. - */ -#define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject)) -/** - * G_OBJECT_CLASS: - * @class: a valid #GObjectClass - * - * Casts a derived #GObjectClass structure into a #GObjectClass structure. - */ -#define G_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_OBJECT, GObjectClass)) -/** - * G_IS_OBJECT: - * @object: Instance to check for being a %G_TYPE_OBJECT. - * - * Checks whether a valid #GTypeInstance pointer is of type %G_TYPE_OBJECT. - */ -#define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT)) -/** - * G_IS_OBJECT_CLASS: - * @class: a #GObjectClass - * - * Checks whether @class "is a" valid #GObjectClass structure of type - * %G_TYPE_OBJECT or derived. - */ -#define G_IS_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_OBJECT)) -/** - * G_OBJECT_GET_CLASS: - * @object: a #GObject instance. - * - * Get the class structure associated to a #GObject instance. - * - * Returns: pointer to object class structure. - */ -#define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectClass)) -/** - * G_OBJECT_TYPE: - * @object: Object to return the type id for. - * - * Get the type id of an object. - * - * Returns: Type id of @object. - */ -#define G_OBJECT_TYPE(object) (G_TYPE_FROM_INSTANCE (object)) -/** - * G_OBJECT_TYPE_NAME: - * @object: Object to return the type name for. - * - * Get the name of an object's type. - * - * Returns: Type name of @object. The string is owned by the type system and - * should not be freed. - */ -#define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object))) -/** - * G_OBJECT_CLASS_TYPE: - * @class: a valid #GObjectClass - * - * Get the type id of a class structure. - * - * Returns: Type id of @class. - */ -#define G_OBJECT_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class)) -/** - * G_OBJECT_CLASS_NAME: - * @class: a valid #GObjectClass - * - * Return the name of a class structure's type. - * - * Returns: Type name of @class. The string is owned by the type system and - * should not be freed. - */ -#define G_OBJECT_CLASS_NAME(class) (g_type_name (G_OBJECT_CLASS_TYPE (class))) -/** - * G_VALUE_HOLDS_OBJECT: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values derived from type %G_TYPE_OBJECT. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_OBJECT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_OBJECT)) - -/* --- type macros --- */ -/** - * G_TYPE_INITIALLY_UNOWNED: - * - * The type for #GInitiallyUnowned. - */ -#define G_TYPE_INITIALLY_UNOWNED (g_initially_unowned_get_type()) -/** - * G_INITIALLY_UNOWNED: - * @object: Object which is subject to casting. - * - * Casts a #GInitiallyUnowned or derived pointer into a (GInitiallyUnowned*) - * pointer. Depending on the current debugging level, this function may invoke - * certain runtime checks to identify invalid casts. - */ -#define G_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnowned)) -/** - * G_INITIALLY_UNOWNED_CLASS: - * @class: a valid #GInitiallyUnownedClass - * - * Casts a derived #GInitiallyUnownedClass structure into a - * #GInitiallyUnownedClass structure. - */ -#define G_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass)) -/** - * G_IS_INITIALLY_UNOWNED: - * @object: Instance to check for being a %G_TYPE_INITIALLY_UNOWNED. - * - * Checks whether a valid #GTypeInstance pointer is of type %G_TYPE_INITIALLY_UNOWNED. - */ -#define G_IS_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_INITIALLY_UNOWNED)) -/** - * G_IS_INITIALLY_UNOWNED_CLASS: - * @class: a #GInitiallyUnownedClass - * - * Checks whether @class "is a" valid #GInitiallyUnownedClass structure of type - * %G_TYPE_INITIALLY_UNOWNED or derived. - */ -#define G_IS_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_INITIALLY_UNOWNED)) -/** - * G_INITIALLY_UNOWNED_GET_CLASS: - * @object: a #GInitiallyUnowned instance. - * - * Get the class structure associated to a #GInitiallyUnowned instance. - * - * Returns: pointer to object class structure. - */ -#define G_INITIALLY_UNOWNED_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass)) -/* GInitiallyUnowned ia a GObject with initially floating reference count */ - - -/* --- typedefs & structures --- */ -typedef struct _GObject GObject; -typedef struct _GObjectClass GObjectClass; -typedef struct _GObject GInitiallyUnowned; -typedef struct _GObjectClass GInitiallyUnownedClass; -typedef struct _GObjectConstructParam GObjectConstructParam; -/** - * GObjectGetPropertyFunc: - * @object: a #GObject - * @property_id: the numeric id under which the property was registered with - * g_object_class_install_property(). - * @value: a #GValue to return the property value in - * @pspec: the #GParamSpec describing the property - * - * The type of the @get_property function of #GObjectClass. - */ -typedef void (*GObjectGetPropertyFunc) (GObject *object, - guint property_id, - GValue *value, - GParamSpec *pspec); -/** - * GObjectSetPropertyFunc: - * @object: a #GObject - * @property_id: the numeric id under which the property was registered with - * g_object_class_install_property(). - * @value: the new value for the property - * @pspec: the #GParamSpec describing the property - * - * The type of the @set_property function of #GObjectClass. - */ -typedef void (*GObjectSetPropertyFunc) (GObject *object, - guint property_id, - const GValue *value, - GParamSpec *pspec); -/** - * GObjectFinalizeFunc: - * @object: the #GObject being finalized - * - * The type of the @finalize function of #GObjectClass. - */ -typedef void (*GObjectFinalizeFunc) (GObject *object); -/** - * GWeakNotify: - * @data: data that was provided when the weak reference was established - * @where_the_object_was: the object being finalized - * - * A #GWeakNotify function can be added to an object as a callback that gets - * triggered when the object is finalized. Since the object is already being - * finalized when the #GWeakNotify is called, there's not much you could do - * with the object, apart from e.g. using its address as hash-index or the like. - */ -typedef void (*GWeakNotify) (gpointer data, - GObject *where_the_object_was); -/** - * GObject: - * - * All the fields in the GObject structure are private - * to the #GObject implementation and should never be accessed directly. - */ -struct _GObject -{ - GTypeInstance g_type_instance; - - /*< private >*/ - volatile guint ref_count; - GData *qdata; -}; -/** - * GObjectClass: - * @g_type_class: the parent class - * @constructor: the @constructor function is called by g_object_new () to - * complete the object initialization after all the construction properties are - * set. The first thing a @constructor implementation must do is chain up to the - * @constructor of the parent class. Overriding @constructor should be rarely - * needed, e.g. to handle construct properties, or to implement singletons. - * @set_property: the generic setter for all properties of this type. Should be - * overridden for every type with properties. If implementations of - * @set_property don't emit property change notification explicitly, this will - * be done implicitly by the type system. However, if the notify signal is - * emitted explicitly, the type system will not emit it a second time. - * @get_property: the generic getter for all properties of this type. Should be - * overridden for every type with properties. - * @dispose: the @dispose function is supposed to drop all references to other - * objects, but keep the instance otherwise intact, so that client method - * invocations still work. It may be run multiple times (due to reference - * loops). Before returning, @dispose should chain up to the @dispose method - * of the parent class. - * @finalize: instance finalization function, should finish the finalization of - * the instance begun in @dispose and chain up to the @finalize method of the - * parent class. - * @dispatch_properties_changed: emits property change notification for a bunch - * of properties. Overriding @dispatch_properties_changed should be rarely - * needed. - * @notify: the class closure for the notify signal - * @constructed: the @constructed function is called by g_object_new() as the - * final step of the object creation process. At the point of the call, all - * construction properties have been set on the object. The purpose of this - * call is to allow for object initialisation steps that can only be performed - * after construction properties have been set. @constructed implementors - * should chain up to the @constructed call of their parent class to allow it - * to complete its initialisation. - * - * The class structure for the GObject type. - * - * - * Implementing singletons using a constructor - * - * static MySingleton *the_singleton = NULL; - * - * static GObject* - * my_singleton_constructor (GType type, - * guint n_construct_params, - * GObjectConstructParam *construct_params) - * { - * GObject *object; - * - * if (!the_singleton) - * { - * object = G_OBJECT_CLASS (parent_class)->constructor (type, - * n_construct_params, - * construct_params); - * the_singleton = MY_SINGLETON (object); - * } - * else - * object = g_object_ref (G_OBJECT (the_singleton)); - * - * return object; - * } - * - */ -struct _GObjectClass -{ - GTypeClass g_type_class; - - /*< private >*/ - GSList *construct_properties; - - /*< public >*/ - /* seldom overidden */ - GObject* (*constructor) (GType type, - guint n_construct_properties, - GObjectConstructParam *construct_properties); - /* overridable methods */ - void (*set_property) (GObject *object, - guint property_id, - const GValue *value, - GParamSpec *pspec); - void (*get_property) (GObject *object, - guint property_id, - GValue *value, - GParamSpec *pspec); - void (*dispose) (GObject *object); - void (*finalize) (GObject *object); - /* seldom overidden */ - void (*dispatch_properties_changed) (GObject *object, - guint n_pspecs, - GParamSpec **pspecs); - /* signals */ - void (*notify) (GObject *object, - GParamSpec *pspec); - - /* called when done constructing */ - void (*constructed) (GObject *object); - - /*< private >*/ - gsize flags; - - /* padding */ - gpointer pdummy[6]; -}; -/** - * GObjectConstructParam: - * @pspec: the #GParamSpec of the construct parameter - * @value: the value to set the parameter to - * - * The GObjectConstructParam struct is an auxiliary - * structure used to hand #GParamSpec/#GValue pairs to the @constructor of - * a #GObjectClass. - */ -struct _GObjectConstructParam -{ - GParamSpec *pspec; - GValue *value; -}; - -/** - * GInitiallyUnowned: - * - * All the fields in the GInitiallyUnowned structure - * are private to the #GInitiallyUnowned implementation and should never be - * accessed directly. - */ -/** - * GInitiallyUnownedClass: - * - * The class structure for the GInitiallyUnowned type. - */ - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GType g_initially_unowned_get_type (void); -GLIB_AVAILABLE_IN_ALL -void g_object_class_install_property (GObjectClass *oclass, - guint property_id, - GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_object_class_find_property (GObjectClass *oclass, - const gchar *property_name); -GLIB_AVAILABLE_IN_ALL -GParamSpec**g_object_class_list_properties (GObjectClass *oclass, - guint *n_properties); -GLIB_AVAILABLE_IN_ALL -void g_object_class_override_property (GObjectClass *oclass, - guint property_id, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -void g_object_class_install_properties (GObjectClass *oclass, - guint n_pspecs, - GParamSpec **pspecs); - -GLIB_AVAILABLE_IN_ALL -void g_object_interface_install_property (gpointer g_iface, - GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_object_interface_find_property (gpointer g_iface, - const gchar *property_name); -GLIB_AVAILABLE_IN_ALL -GParamSpec**g_object_interface_list_properties (gpointer g_iface, - guint *n_properties_p); - -GLIB_AVAILABLE_IN_ALL -GType g_object_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gpointer g_object_new (GType object_type, - const gchar *first_property_name, - ...); -GLIB_AVAILABLE_IN_ALL -gpointer g_object_newv (GType object_type, - guint n_parameters, - GParameter *parameters); -GLIB_AVAILABLE_IN_ALL -GObject* g_object_new_valist (GType object_type, - const gchar *first_property_name, - va_list var_args); -GLIB_AVAILABLE_IN_ALL -void g_object_set (gpointer object, - const gchar *first_property_name, - ...) G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -void g_object_get (gpointer object, - const gchar *first_property_name, - ...) G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -gpointer g_object_connect (gpointer object, - const gchar *signal_spec, - ...) G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -void g_object_disconnect (gpointer object, - const gchar *signal_spec, - ...) G_GNUC_NULL_TERMINATED; -GLIB_AVAILABLE_IN_ALL -void g_object_set_valist (GObject *object, - const gchar *first_property_name, - va_list var_args); -GLIB_AVAILABLE_IN_ALL -void g_object_get_valist (GObject *object, - const gchar *first_property_name, - va_list var_args); -GLIB_AVAILABLE_IN_ALL -void g_object_set_property (GObject *object, - const gchar *property_name, - const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_object_get_property (GObject *object, - const gchar *property_name, - GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_object_freeze_notify (GObject *object); -GLIB_AVAILABLE_IN_ALL -void g_object_notify (GObject *object, - const gchar *property_name); -GLIB_AVAILABLE_IN_ALL -void g_object_notify_by_pspec (GObject *object, - GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -void g_object_thaw_notify (GObject *object); -GLIB_AVAILABLE_IN_ALL -gboolean g_object_is_floating (gpointer object); -GLIB_AVAILABLE_IN_ALL -gpointer g_object_ref_sink (gpointer object); -GLIB_AVAILABLE_IN_ALL -gpointer g_object_ref (gpointer object); -GLIB_AVAILABLE_IN_ALL -void g_object_unref (gpointer object); -GLIB_AVAILABLE_IN_ALL -void g_object_weak_ref (GObject *object, - GWeakNotify notify, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_object_weak_unref (GObject *object, - GWeakNotify notify, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_object_add_weak_pointer (GObject *object, - gpointer *weak_pointer_location); -GLIB_AVAILABLE_IN_ALL -void g_object_remove_weak_pointer (GObject *object, - gpointer *weak_pointer_location); - -/** - * GToggleNotify: - * @data: Callback data passed to g_object_add_toggle_ref() - * @object: The object on which g_object_add_toggle_ref() was called. - * @is_last_ref: %TRUE if the toggle reference is now the - * last reference to the object. %FALSE if the toggle - * reference was the last reference and there are now other - * references. - * - * A callback function used for notification when the state - * of a toggle reference changes. See g_object_add_toggle_ref(). - */ -typedef void (*GToggleNotify) (gpointer data, - GObject *object, - gboolean is_last_ref); - -GLIB_AVAILABLE_IN_ALL -void g_object_add_toggle_ref (GObject *object, - GToggleNotify notify, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_object_remove_toggle_ref (GObject *object, - GToggleNotify notify, - gpointer data); - -GLIB_AVAILABLE_IN_ALL -gpointer g_object_get_qdata (GObject *object, - GQuark quark); -GLIB_AVAILABLE_IN_ALL -void g_object_set_qdata (GObject *object, - GQuark quark, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_object_set_qdata_full (GObject *object, - GQuark quark, - gpointer data, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_ALL -gpointer g_object_steal_qdata (GObject *object, - GQuark quark); - -GLIB_AVAILABLE_IN_2_34 -gpointer g_object_dup_qdata (GObject *object, - GQuark quark, - GDuplicateFunc dup_func, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -gboolean g_object_replace_qdata (GObject *object, - GQuark quark, - gpointer oldval, - gpointer newval, - GDestroyNotify destroy, - GDestroyNotify *old_destroy); - -GLIB_AVAILABLE_IN_ALL -gpointer g_object_get_data (GObject *object, - const gchar *key); -GLIB_AVAILABLE_IN_ALL -void g_object_set_data (GObject *object, - const gchar *key, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_object_set_data_full (GObject *object, - const gchar *key, - gpointer data, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_ALL -gpointer g_object_steal_data (GObject *object, - const gchar *key); - -GLIB_AVAILABLE_IN_2_34 -gpointer g_object_dup_data (GObject *object, - const gchar *key, - GDuplicateFunc dup_func, - gpointer user_data); -GLIB_AVAILABLE_IN_2_34 -gboolean g_object_replace_data (GObject *object, - const gchar *key, - gpointer oldval, - gpointer newval, - GDestroyNotify destroy, - GDestroyNotify *old_destroy); - - -GLIB_AVAILABLE_IN_ALL -void g_object_watch_closure (GObject *object, - GClosure *closure); -GLIB_AVAILABLE_IN_ALL -GClosure* g_cclosure_new_object (GCallback callback_func, - GObject *object); -GLIB_AVAILABLE_IN_ALL -GClosure* g_cclosure_new_object_swap (GCallback callback_func, - GObject *object); -GLIB_AVAILABLE_IN_ALL -GClosure* g_closure_new_object (guint sizeof_closure, - GObject *object); -GLIB_AVAILABLE_IN_ALL -void g_value_set_object (GValue *value, - gpointer v_object); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_get_object (const GValue *value); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_dup_object (const GValue *value); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_connect_object (gpointer instance, - const gchar *detailed_signal, - GCallback c_handler, - gpointer gobject, - GConnectFlags connect_flags); - -/*< protected >*/ -GLIB_AVAILABLE_IN_ALL -void g_object_force_floating (GObject *object); -GLIB_AVAILABLE_IN_ALL -void g_object_run_dispose (GObject *object); - - -GLIB_AVAILABLE_IN_ALL -void g_value_take_object (GValue *value, - gpointer v_object); -GLIB_DEPRECATED_FOR(g_value_take_object) -void g_value_set_object_take_ownership (GValue *value, - gpointer v_object); - -GLIB_DEPRECATED -gsize g_object_compat_control (gsize what, - gpointer data); - -/* --- implementation macros --- */ -#define G_OBJECT_WARN_INVALID_PSPEC(object, pname, property_id, pspec) \ -G_STMT_START { \ - GObject *_glib__object = (GObject*) (object); \ - GParamSpec *_glib__pspec = (GParamSpec*) (pspec); \ - guint _glib__property_id = (property_id); \ - g_warning ("%s: invalid %s id %u for \"%s\" of type '%s' in '%s'", \ - G_STRLOC, \ - (pname), \ - _glib__property_id, \ - _glib__pspec->name, \ - g_type_name (G_PARAM_SPEC_TYPE (_glib__pspec)), \ - G_OBJECT_TYPE_NAME (_glib__object)); \ -} G_STMT_END -/** - * G_OBJECT_WARN_INVALID_PROPERTY_ID: - * @object: the #GObject on which set_property() or get_property() was called - * @property_id: the numeric id of the property - * @pspec: the #GParamSpec of the property - * - * This macro should be used to emit a standard warning about unexpected - * properties in set_property() and get_property() implementations. - */ -#define G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec) \ - G_OBJECT_WARN_INVALID_PSPEC ((object), "property", (property_id), (pspec)) - -GLIB_AVAILABLE_IN_ALL -void g_clear_object (volatile GObject **object_ptr); -#define g_clear_object(object_ptr) g_clear_pointer ((object_ptr), g_object_unref) - -typedef struct { - /**/ - union { gpointer p; } priv; -} GWeakRef; - -GLIB_AVAILABLE_IN_ALL -void g_weak_ref_init (GWeakRef *weak_ref, - gpointer object); -GLIB_AVAILABLE_IN_ALL -void g_weak_ref_clear (GWeakRef *weak_ref); -GLIB_AVAILABLE_IN_ALL -gpointer g_weak_ref_get (GWeakRef *weak_ref); -GLIB_AVAILABLE_IN_ALL -void g_weak_ref_set (GWeakRef *weak_ref, - gpointer object); - -G_END_DECLS - -#endif /* __G_OBJECT_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobjectnotifyqueue.c b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobjectnotifyqueue.c deleted file mode 100644 index cfe01ba..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gobjectnotifyqueue.c +++ /dev/null @@ -1,199 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ - -/* WARNING: - * - * This file is INSTALLED and other projects (outside of glib) - * #include its contents. - */ - -#ifndef __G_OBJECT_NOTIFY_QUEUE_H__ -#define __G_OBJECT_NOTIFY_QUEUE_H__ - -#include /* memset */ - -#include - -G_BEGIN_DECLS - - -/* --- typedefs --- */ -typedef struct _GObjectNotifyContext GObjectNotifyContext; -typedef struct _GObjectNotifyQueue GObjectNotifyQueue; -typedef void (*GObjectNotifyQueueDispatcher) (GObject *object, - guint n_pspecs, - GParamSpec **pspecs); - - -/* --- structures --- */ -struct _GObjectNotifyContext -{ - GQuark quark_notify_queue; - GObjectNotifyQueueDispatcher dispatcher; - GTrashStack *_nqueue_trash; /* unused */ -}; -struct _GObjectNotifyQueue -{ - GObjectNotifyContext *context; - GSList *pspecs; - guint16 n_pspecs; - guint16 freeze_count; -}; - -G_LOCK_DEFINE_STATIC(notify_lock); - -/* --- functions --- */ -static void -g_object_notify_queue_free (gpointer data) -{ - GObjectNotifyQueue *nqueue = data; - - g_slist_free (nqueue->pspecs); - g_slice_free (GObjectNotifyQueue, nqueue); -} - -static inline GObjectNotifyQueue* -g_object_notify_queue_freeze (GObject *object, - GObjectNotifyContext *context) -{ - GObjectNotifyQueue *nqueue; - - G_LOCK(notify_lock); - nqueue = g_datalist_id_get_data (&object->qdata, context->quark_notify_queue); - if (!nqueue) - { - nqueue = g_slice_new0 (GObjectNotifyQueue); - nqueue->context = context; - g_datalist_id_set_data_full (&object->qdata, context->quark_notify_queue, - nqueue, g_object_notify_queue_free); - } - - if (nqueue->freeze_count >= 65535) - g_critical("Free queue for %s (%p) is larger than 65535," - " called g_object_freeze_notify() too often." - " Forgot to call g_object_thaw_notify() or infinite loop", - G_OBJECT_TYPE_NAME (object), object); - else - nqueue->freeze_count++; - G_UNLOCK(notify_lock); - - return nqueue; -} - -static inline void -g_object_notify_queue_thaw (GObject *object, - GObjectNotifyQueue *nqueue) -{ - GObjectNotifyContext *context = nqueue->context; - GParamSpec *pspecs_mem[16], **pspecs, **free_me = NULL; - GSList *slist; - guint n_pspecs = 0; - - g_return_if_fail (nqueue->freeze_count > 0); - g_return_if_fail (g_atomic_int_get(&object->ref_count) > 0); - - G_LOCK(notify_lock); - - /* Just make sure we never get into some nasty race condition */ - if (G_UNLIKELY(nqueue->freeze_count == 0)) { - G_UNLOCK(notify_lock); - g_warning ("%s: property-changed notification for %s(%p) is not frozen", - G_STRFUNC, G_OBJECT_TYPE_NAME (object), object); - return; - } - - nqueue->freeze_count--; - if (nqueue->freeze_count) { - G_UNLOCK(notify_lock); - return; - } - - pspecs = nqueue->n_pspecs > 16 ? free_me = g_new (GParamSpec*, nqueue->n_pspecs) : pspecs_mem; - - for (slist = nqueue->pspecs; slist; slist = slist->next) - { - pspecs[n_pspecs++] = slist->data; - } - g_datalist_id_set_data (&object->qdata, context->quark_notify_queue, NULL); - - G_UNLOCK(notify_lock); - - if (n_pspecs) - context->dispatcher (object, n_pspecs, pspecs); - g_free (free_me); -} - -static inline void -g_object_notify_queue_clear (GObject *object, - GObjectNotifyQueue *nqueue) -{ - g_return_if_fail (nqueue->freeze_count > 0); - - G_LOCK(notify_lock); - - g_slist_free (nqueue->pspecs); - nqueue->pspecs = NULL; - nqueue->n_pspecs = 0; - - G_UNLOCK(notify_lock); -} - -static inline void -g_object_notify_queue_add (GObject *object, - GObjectNotifyQueue *nqueue, - GParamSpec *pspec) -{ - if (pspec->flags & G_PARAM_READABLE) - { - GParamSpec *redirect; - - G_LOCK(notify_lock); - - g_return_if_fail (nqueue->n_pspecs < 65535); - - redirect = g_param_spec_get_redirect_target (pspec); - if (redirect) - pspec = redirect; - - /* we do the deduping in _thaw */ - if (g_slist_find (nqueue->pspecs, pspec) == NULL) - { - nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec); - nqueue->n_pspecs++; - } - - G_UNLOCK(notify_lock); - } -} - -/* NB: This function is not threadsafe, do not ever use it if - * you need a threadsafe notify queue. - * Use g_object_notify_queue_freeze() to acquire the queue and - * g_object_notify_queue_thaw() after you are done instead. - */ -static inline GObjectNotifyQueue* -g_object_notify_queue_from_object (GObject *object, - GObjectNotifyContext *context) -{ - return g_datalist_id_get_data (&object->qdata, context->quark_notify_queue); -} - -G_END_DECLS - -#endif /* __G_OBJECT_NOTIFY_QUEUE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparam.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparam.h deleted file mode 100644 index 7e734e3..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparam.h +++ /dev/null @@ -1,444 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gparam.h: GParamSpec base class implementation - */ -#ifndef __G_PARAM_H__ -#define __G_PARAM_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- standard type macros --- */ -/** - * G_TYPE_IS_PARAM: - * @type: a #GType ID - * - * Checks whether @type "is a" %G_TYPE_PARAM. - */ -#define G_TYPE_IS_PARAM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM) -/** - * G_PARAM_SPEC: - * @pspec: a valid #GParamSpec - * - * Casts a derived #GParamSpec object (e.g. of type #GParamSpecInt) into - * a #GParamSpec object. - */ -#define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec)) -/** - * G_IS_PARAM_SPEC: - * @pspec: a #GParamSpec - * - * Checks whether @pspec "is a" valid #GParamSpec structure of type %G_TYPE_PARAM - * or derived. - */ -#define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM)) -/** - * G_PARAM_SPEC_CLASS: - * @pclass: a valid #GParamSpecClass - * - * Casts a derived #GParamSpecClass structure into a #GParamSpecClass structure. - */ -#define G_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_CAST ((pclass), G_TYPE_PARAM, GParamSpecClass)) -/** - * G_IS_PARAM_SPEC_CLASS: - * @pclass: a #GParamSpecClass - * - * Checks whether @pclass "is a" valid #GParamSpecClass structure of type - * %G_TYPE_PARAM or derived. - */ -#define G_IS_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_TYPE ((pclass), G_TYPE_PARAM)) -/** - * G_PARAM_SPEC_GET_CLASS: - * @pspec: a valid #GParamSpec - * - * Retrieves the #GParamSpecClass of a #GParamSpec. - */ -#define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass)) - - -/* --- convenience macros --- */ -/** - * G_PARAM_SPEC_TYPE: - * @pspec: a valid #GParamSpec - * - * Retrieves the #GType of this @pspec. - */ -#define G_PARAM_SPEC_TYPE(pspec) (G_TYPE_FROM_INSTANCE (pspec)) -/** - * G_PARAM_SPEC_TYPE_NAME: - * @pspec: a valid #GParamSpec - * - * Retrieves the #GType name of this @pspec. - */ -#define G_PARAM_SPEC_TYPE_NAME(pspec) (g_type_name (G_PARAM_SPEC_TYPE (pspec))) -/** - * G_PARAM_SPEC_VALUE_TYPE: - * @pspec: a valid #GParamSpec - * - * Retrieves the #GType to initialize a #GValue for this parameter. - */ -#define G_PARAM_SPEC_VALUE_TYPE(pspec) (G_PARAM_SPEC (pspec)->value_type) -/** - * G_VALUE_HOLDS_PARAM: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values derived from type %G_TYPE_PARAM. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_PARAM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_PARAM)) - - -/* --- flags --- */ -/** - * GParamFlags: - * @G_PARAM_READABLE: the parameter is readable - * @G_PARAM_WRITABLE: the parameter is writable - * @G_PARAM_CONSTRUCT: the parameter will be set upon object construction - * @G_PARAM_CONSTRUCT_ONLY: the parameter will only be set upon object construction - * @G_PARAM_LAX_VALIDATION: upon parameter conversion (see g_param_value_convert()) - * strict validation is not required - * @G_PARAM_STATIC_NAME: the string used as name when constructing the - * parameter is guaranteed to remain valid and - * unmodified for the lifetime of the parameter. - * Since 2.8 - * @G_PARAM_STATIC_NICK: the string used as nick when constructing the - * parameter is guaranteed to remain valid and - * unmmodified for the lifetime of the parameter. - * Since 2.8 - * @G_PARAM_STATIC_BLURB: the string used as blurb when constructing the - * parameter is guaranteed to remain valid and - * unmodified for the lifetime of the parameter. - * Since 2.8 - * @G_PARAM_PRIVATE: internal - * @G_PARAM_DEPRECATED: the parameter is deprecated and will be removed - * in a future version. A warning will be generated if it is used - * while running with G_ENABLE_DIAGNOSTIC=1. - * Since 2.26 - * - * Through the #GParamFlags flag values, certain aspects of parameters - * can be configured. See also #G_PARAM_READWRITE and #G_PARAM_STATIC_STRINGS. - */ -typedef enum -{ - G_PARAM_READABLE = 1 << 0, - G_PARAM_WRITABLE = 1 << 1, - G_PARAM_CONSTRUCT = 1 << 2, - G_PARAM_CONSTRUCT_ONLY = 1 << 3, - G_PARAM_LAX_VALIDATION = 1 << 4, - G_PARAM_STATIC_NAME = 1 << 5, -#ifndef G_DISABLE_DEPRECATED - G_PARAM_PRIVATE = G_PARAM_STATIC_NAME, -#endif - G_PARAM_STATIC_NICK = 1 << 6, - G_PARAM_STATIC_BLURB = 1 << 7, - /* User defined flags go up to 30 */ - G_PARAM_DEPRECATED = 1 << 31 -} GParamFlags; -/** - * G_PARAM_READWRITE: - * - * #GParamFlags value alias for %G_PARAM_READABLE | %G_PARAM_WRITABLE. - */ -#define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE) -/** - * G_PARAM_STATIC_STRINGS: - * - * #GParamFlags value alias for %G_PARAM_STATIC_NAME | %G_PARAM_STATIC_NICK | %G_PARAM_STATIC_BLURB. - * - * Since 2.13.0 - */ -#define G_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB) -/* bits in the range 0xffffff00 are reserved for 3rd party usage */ -/** - * G_PARAM_MASK: - * - * Mask containing the bits of #GParamSpec.flags which are reserved for GLib. - */ -#define G_PARAM_MASK (0x000000ff) -/** - * G_PARAM_USER_SHIFT: - * - * Minimum shift count to be used for user defined flags, to be stored in - * #GParamSpec.flags. The maximum allowed is 30 + G_PARAM_USER_SHIFT. - */ -#define G_PARAM_USER_SHIFT (8) - -/* --- typedefs & structures --- */ -typedef struct _GParamSpec GParamSpec; -typedef struct _GParamSpecClass GParamSpecClass; -typedef struct _GParameter GParameter; -typedef struct _GParamSpecPool GParamSpecPool; -/** - * GParamSpec: - * @g_type_instance: private #GTypeInstance portion - * @name: name of this parameter: always an interned string - * @flags: #GParamFlags flags for this parameter - * @value_type: the #GValue type for this parameter - * @owner_type: #GType type that uses (introduces) this parameter - * - * All other fields of the GParamSpec struct are private and - * should not be used directly. - */ -struct _GParamSpec -{ - GTypeInstance g_type_instance; - - const gchar *name; /* interned string */ - GParamFlags flags; - GType value_type; - GType owner_type; /* class or interface using this property */ - - /*< private >*/ - gchar *_nick; - gchar *_blurb; - GData *qdata; - guint ref_count; - guint param_id; /* sort-criteria */ -}; -/** - * GParamSpecClass: - * @g_type_class: the parent class - * @value_type: the #GValue type for this parameter - * @finalize: The instance finalization function (optional), should chain - * up to the finalize method of the parent class. - * @value_set_default: Resets a @value to the default value for this type - * (recommended, the default is g_value_reset()), see - * g_param_value_set_default(). - * @value_validate: Ensures that the contents of @value comply with the - * specifications set out by this type (optional), see - * g_param_value_validate(). - * @values_cmp: Compares @value1 with @value2 according to this type - * (recommended, the default is memcmp()), see g_param_values_cmp(). - * - * The class structure for the GParamSpec type. - * Normally, GParamSpec classes are filled by - * g_param_type_register_static(). - */ -struct _GParamSpecClass -{ - GTypeClass g_type_class; - - GType value_type; - - void (*finalize) (GParamSpec *pspec); - - /* GParam methods */ - void (*value_set_default) (GParamSpec *pspec, - GValue *value); - gboolean (*value_validate) (GParamSpec *pspec, - GValue *value); - gint (*values_cmp) (GParamSpec *pspec, - const GValue *value1, - const GValue *value2); - /*< private >*/ - gpointer dummy[4]; -}; -/** - * GParameter: - * @name: the parameter name - * @value: the parameter value - * - * The GParameter struct is an auxiliary structure used - * to hand parameter name/value pairs to g_object_newv(). - */ -struct _GParameter /* auxiliary structure for _setv() variants */ -{ - const gchar *name; - GValue value; -}; - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_ref (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_unref (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_sink (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_ref_sink (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -gpointer g_param_spec_get_qdata (GParamSpec *pspec, - GQuark quark); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_set_qdata (GParamSpec *pspec, - GQuark quark, - gpointer data); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_set_qdata_full (GParamSpec *pspec, - GQuark quark, - gpointer data, - GDestroyNotify destroy); -GLIB_AVAILABLE_IN_ALL -gpointer g_param_spec_steal_qdata (GParamSpec *pspec, - GQuark quark); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_get_redirect_target (GParamSpec *pspec); - -GLIB_AVAILABLE_IN_ALL -void g_param_value_set_default (GParamSpec *pspec, - GValue *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_param_value_defaults (GParamSpec *pspec, - GValue *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_param_value_validate (GParamSpec *pspec, - GValue *value); -GLIB_AVAILABLE_IN_ALL -gboolean g_param_value_convert (GParamSpec *pspec, - const GValue *src_value, - GValue *dest_value, - gboolean strict_validation); -GLIB_AVAILABLE_IN_ALL -gint g_param_values_cmp (GParamSpec *pspec, - const GValue *value1, - const GValue *value2); -GLIB_AVAILABLE_IN_ALL -const gchar * g_param_spec_get_name (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -const gchar * g_param_spec_get_nick (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -const gchar * g_param_spec_get_blurb (GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -void g_value_set_param (GValue *value, - GParamSpec *param); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_value_get_param (const GValue *value); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_value_dup_param (const GValue *value); - - -GLIB_AVAILABLE_IN_ALL -void g_value_take_param (GValue *value, - GParamSpec *param); -GLIB_DEPRECATED_FOR(g_value_take_param) -void g_value_set_param_take_ownership (GValue *value, - GParamSpec *param); -GLIB_AVAILABLE_IN_2_36 -const GValue * g_param_spec_get_default_value (GParamSpec *param); - -/* --- convenience functions --- */ -typedef struct _GParamSpecTypeInfo GParamSpecTypeInfo; -/** - * GParamSpecTypeInfo: - * @instance_size: Size of the instance (object) structure. - * @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the slice allocator now. - * @instance_init: Location of the instance initialization function (optional). - * @value_type: The #GType of values conforming to this #GParamSpec - * @finalize: The instance finalization function (optional). - * @value_set_default: Resets a @value to the default value for @pspec - * (recommended, the default is g_value_reset()), see - * g_param_value_set_default(). - * @value_validate: Ensures that the contents of @value comply with the - * specifications set out by @pspec (optional), see - * g_param_value_validate(). - * @values_cmp: Compares @value1 with @value2 according to @pspec - * (recommended, the default is memcmp()), see g_param_values_cmp(). - * - * This structure is used to provide the type system with the information - * required to initialize and destruct (finalize) a parameter's class and - * instances thereof. - * The initialized structure is passed to the g_param_type_register_static() - * The type system will perform a deep copy of this structure, so its memory - * does not need to be persistent across invocation of - * g_param_type_register_static(). - */ -struct _GParamSpecTypeInfo -{ - /* type system portion */ - guint16 instance_size; /* obligatory */ - guint16 n_preallocs; /* optional */ - void (*instance_init) (GParamSpec *pspec); /* optional */ - - /* class portion */ - GType value_type; /* obligatory */ - void (*finalize) (GParamSpec *pspec); /* optional */ - void (*value_set_default) (GParamSpec *pspec, /* recommended */ - GValue *value); - gboolean (*value_validate) (GParamSpec *pspec, /* optional */ - GValue *value); - gint (*values_cmp) (GParamSpec *pspec, /* recommended */ - const GValue *value1, - const GValue *value2); -}; -GLIB_AVAILABLE_IN_ALL -GType g_param_type_register_static (const gchar *name, - const GParamSpecTypeInfo *pspec_info); - -/* For registering builting types */ -GType _g_param_type_register_static_constant (const gchar *name, - const GParamSpecTypeInfo *pspec_info, - GType opt_type); - - -/* --- protected --- */ -GLIB_AVAILABLE_IN_ALL -gpointer g_param_spec_internal (GType param_type, - const gchar *name, - const gchar *nick, - const gchar *blurb, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpecPool* g_param_spec_pool_new (gboolean type_prefixing); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_pool_insert (GParamSpecPool *pool, - GParamSpec *pspec, - GType owner_type); -GLIB_AVAILABLE_IN_ALL -void g_param_spec_pool_remove (GParamSpecPool *pool, - GParamSpec *pspec); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_pool_lookup (GParamSpecPool *pool, - const gchar *param_name, - GType owner_type, - gboolean walk_ancestors); -GLIB_AVAILABLE_IN_ALL -GList* g_param_spec_pool_list_owned (GParamSpecPool *pool, - GType owner_type); -GLIB_AVAILABLE_IN_ALL -GParamSpec** g_param_spec_pool_list (GParamSpecPool *pool, - GType owner_type, - guint *n_pspecs_p); - - -/* contracts: - * - * gboolean value_validate (GParamSpec *pspec, - * GValue *value): - * modify value contents in the least destructive way, so - * that it complies with pspec's requirements (i.e. - * according to minimum/maximum ranges etc...). return - * whether modification was necessary. - * - * gint values_cmp (GParamSpec *pspec, - * const GValue *value1, - * const GValue *value2): - * return value1 - value2, i.e. (-1) if value1 < value2, - * (+1) if value1 > value2, and (0) otherwise (equality) - */ - -G_END_DECLS - -#endif /* __G_PARAM_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparamspecs.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparamspecs.h deleted file mode 100644 index b3245a8..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gparamspecs.h +++ /dev/null @@ -1,1166 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gparamspecs.h: GLib default param specs - */ -#ifndef __G_PARAMSPECS_H__ -#define __G_PARAMSPECS_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -/** - * G_TYPE_PARAM_CHAR: - * - * The #GType of #GParamSpecChar. - */ -#define G_TYPE_PARAM_CHAR (g_param_spec_types[0]) -/** - * G_IS_PARAM_SPEC_CHAR: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_CHAR. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CHAR)) -/** - * G_PARAM_SPEC_CHAR: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecChar. - */ -#define G_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CHAR, GParamSpecChar)) - -/** - * G_TYPE_PARAM_UCHAR: - * - * The #GType of #GParamSpecUChar. - */ -#define G_TYPE_PARAM_UCHAR (g_param_spec_types[1]) -/** - * G_IS_PARAM_SPEC_UCHAR: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UCHAR. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UCHAR)) -/** - * G_PARAM_SPEC_UCHAR: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecUChar. - */ -#define G_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UCHAR, GParamSpecUChar)) - -/** - * G_TYPE_PARAM_BOOLEAN: - * - * The #GType of #GParamSpecBoolean. - */ -#define G_TYPE_PARAM_BOOLEAN (g_param_spec_types[2]) -/** - * G_IS_PARAM_SPEC_BOOLEAN: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOOLEAN. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOOLEAN)) -/** - * G_PARAM_SPEC_BOOLEAN: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecBoolean. - */ -#define G_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOOLEAN, GParamSpecBoolean)) - -/** - * G_TYPE_PARAM_INT: - * - * The #GType of #GParamSpecInt. - */ -#define G_TYPE_PARAM_INT (g_param_spec_types[3]) -/** - * G_IS_PARAM_SPEC_INT: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT)) -/** - * G_PARAM_SPEC_INT: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecInt. - */ -#define G_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT, GParamSpecInt)) - -/** - * G_TYPE_PARAM_UINT: - * - * The #GType of #GParamSpecUInt. - */ -#define G_TYPE_PARAM_UINT (g_param_spec_types[4]) -/** - * G_IS_PARAM_SPEC_UINT: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT)) -/** - * G_PARAM_SPEC_UINT: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecUInt. - */ -#define G_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT, GParamSpecUInt)) - -/** - * G_TYPE_PARAM_LONG: - * - * The #GType of #GParamSpecLong. - */ -#define G_TYPE_PARAM_LONG (g_param_spec_types[5]) -/** - * G_IS_PARAM_SPEC_LONG: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_LONG. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_LONG)) -/** - * G_PARAM_SPEC_LONG: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecLong. - */ -#define G_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_LONG, GParamSpecLong)) - -/** - * G_TYPE_PARAM_ULONG: - * - * The #GType of #GParamSpecULong. - */ -#define G_TYPE_PARAM_ULONG (g_param_spec_types[6]) -/** - * G_IS_PARAM_SPEC_ULONG: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ULONG. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ULONG)) -/** - * G_PARAM_SPEC_ULONG: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecULong. - */ -#define G_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ULONG, GParamSpecULong)) - -/** - * G_TYPE_PARAM_INT64: - * - * The #GType of #GParamSpecInt64. - */ -#define G_TYPE_PARAM_INT64 (g_param_spec_types[7]) -/** - * G_IS_PARAM_SPEC_INT64: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT64. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT64)) -/** - * G_PARAM_SPEC_INT64: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecInt64. - */ -#define G_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT64, GParamSpecInt64)) - -/** - * G_TYPE_PARAM_UINT64: - * - * The #GType of #GParamSpecUInt64. - */ -#define G_TYPE_PARAM_UINT64 (g_param_spec_types[8]) -/** - * G_IS_PARAM_SPEC_UINT64: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT64. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT64)) -/** - * G_PARAM_SPEC_UINT64: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecUInt64. - */ -#define G_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT64, GParamSpecUInt64)) - -/** - * G_TYPE_PARAM_UNICHAR: - * - * The #GType of #GParamSpecUnichar. - */ -#define G_TYPE_PARAM_UNICHAR (g_param_spec_types[9]) -/** - * G_PARAM_SPEC_UNICHAR: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecUnichar. - */ -#define G_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UNICHAR, GParamSpecUnichar)) -/** - * G_IS_PARAM_SPEC_UNICHAR: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UNICHAR. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UNICHAR)) - -/** - * G_TYPE_PARAM_ENUM: - * - * The #GType of #GParamSpecEnum. - */ -#define G_TYPE_PARAM_ENUM (g_param_spec_types[10]) -/** - * G_IS_PARAM_SPEC_ENUM: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ENUM. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ENUM)) -/** - * G_PARAM_SPEC_ENUM: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecEnum. - */ -#define G_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ENUM, GParamSpecEnum)) - -/** - * G_TYPE_PARAM_FLAGS: - * - * The #GType of #GParamSpecFlags. - */ -#define G_TYPE_PARAM_FLAGS (g_param_spec_types[11]) -/** - * G_IS_PARAM_SPEC_FLAGS: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLAGS. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLAGS)) -/** - * G_PARAM_SPEC_FLAGS: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecFlags. - */ -#define G_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLAGS, GParamSpecFlags)) - -/** - * G_TYPE_PARAM_FLOAT: - * - * The #GType of #GParamSpecFloat. - */ -#define G_TYPE_PARAM_FLOAT (g_param_spec_types[12]) -/** - * G_IS_PARAM_SPEC_FLOAT: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLOAT. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLOAT)) -/** - * G_PARAM_SPEC_FLOAT: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecFloat. - */ -#define G_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLOAT, GParamSpecFloat)) - -/** - * G_TYPE_PARAM_DOUBLE: - * - * The #GType of #GParamSpecDouble. - */ -#define G_TYPE_PARAM_DOUBLE (g_param_spec_types[13]) -/** - * G_IS_PARAM_SPEC_DOUBLE: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_DOUBLE. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_DOUBLE)) -/** - * G_PARAM_SPEC_DOUBLE: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecDouble. - */ -#define G_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_DOUBLE, GParamSpecDouble)) - -/** - * G_TYPE_PARAM_STRING: - * - * The #GType of #GParamSpecString. - */ -#define G_TYPE_PARAM_STRING (g_param_spec_types[14]) -/** - * G_IS_PARAM_SPEC_STRING: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_STRING. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_STRING)) -/** - * G_PARAM_SPEC_STRING: - * @pspec: a valid #GParamSpec instance - * - * Casts a #GParamSpec instance into a #GParamSpecString. - */ -#define G_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_STRING, GParamSpecString)) - -/** - * G_TYPE_PARAM_PARAM: - * - * The #GType of #GParamSpecParam. - */ -#define G_TYPE_PARAM_PARAM (g_param_spec_types[15]) -/** - * G_IS_PARAM_SPEC_PARAM: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_PARAM. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_PARAM)) -/** - * G_PARAM_SPEC_PARAM: - * @pspec: a valid #GParamSpec instance - * - * Casts a #GParamSpec instance into a #GParamSpecParam. - */ -#define G_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_PARAM, GParamSpecParam)) - -/** - * G_TYPE_PARAM_BOXED: - * - * The #GType of #GParamSpecBoxed. - */ -#define G_TYPE_PARAM_BOXED (g_param_spec_types[16]) -/** - * G_IS_PARAM_SPEC_BOXED: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOXED. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOXED)) -/** - * G_PARAM_SPEC_BOXED: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecBoxed. - */ -#define G_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOXED, GParamSpecBoxed)) - -/** - * G_TYPE_PARAM_POINTER: - * - * The #GType of #GParamSpecPointer. - */ -#define G_TYPE_PARAM_POINTER (g_param_spec_types[17]) -/** - * G_IS_PARAM_SPEC_POINTER: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_POINTER. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_POINTER)) -/** - * G_PARAM_SPEC_POINTER: - * @pspec: a valid #GParamSpec instance - * - * Casts a #GParamSpec instance into a #GParamSpecPointer. - */ -#define G_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_POINTER, GParamSpecPointer)) - -/** - * G_TYPE_PARAM_VALUE_ARRAY: - * - * The #GType of #GParamSpecValueArray. - * - * Deprecated: 2.32: Use #GArray instead of #GValueArray - */ -#define G_TYPE_PARAM_VALUE_ARRAY (g_param_spec_types[18]) -/** - * G_IS_PARAM_SPEC_VALUE_ARRAY: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_VALUE_ARRAY. - * - * Returns: %TRUE on success. - * - * Deprecated: 2.32: Use #GArray instead of #GValueArray - */ -#define G_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VALUE_ARRAY)) -/** - * G_PARAM_SPEC_VALUE_ARRAY: - * @pspec: a valid #GParamSpec instance - * - * Cast a #GParamSpec instance into a #GParamSpecValueArray. - * - * Deprecated: 2.32: Use #GArray instead of #GValueArray - */ -#define G_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VALUE_ARRAY, GParamSpecValueArray)) - -/** - * G_TYPE_PARAM_OBJECT: - * - * The #GType of #GParamSpecObject. - */ -#define G_TYPE_PARAM_OBJECT (g_param_spec_types[19]) -/** - * G_IS_PARAM_SPEC_OBJECT: - * @pspec: a valid #GParamSpec instance - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OBJECT. - * - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OBJECT)) -/** - * G_PARAM_SPEC_OBJECT: - * @pspec: a valid #GParamSpec instance - * - * Casts a #GParamSpec instance into a #GParamSpecObject. - */ -#define G_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OBJECT, GParamSpecObject)) - -/** - * G_TYPE_PARAM_OVERRIDE: - * - * The #GType of #GParamSpecOverride. - * - * Since: 2.4 - */ -#define G_TYPE_PARAM_OVERRIDE (g_param_spec_types[20]) -/** - * G_IS_PARAM_SPEC_OVERRIDE: - * @pspec: a #GParamSpec - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OVERRIDE. - * - * Since: 2.4 - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OVERRIDE)) -/** - * G_PARAM_SPEC_OVERRIDE: - * @pspec: a #GParamSpec - * - * Casts a #GParamSpec into a #GParamSpecOverride. - * - * Since: 2.4 - */ -#define G_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OVERRIDE, GParamSpecOverride)) - -/** - * G_TYPE_PARAM_GTYPE: - * - * The #GType of #GParamSpecGType. - * - * Since: 2.10 - */ -#define G_TYPE_PARAM_GTYPE (g_param_spec_types[21]) -/** - * G_IS_PARAM_SPEC_GTYPE: - * @pspec: a #GParamSpec - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_GTYPE. - * - * Since: 2.10 - * Returns: %TRUE on success. - */ -#define G_IS_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_GTYPE)) -/** - * G_PARAM_SPEC_GTYPE: - * @pspec: a #GParamSpec - * - * Casts a #GParamSpec into a #GParamSpecGType. - * - * Since: 2.10 - */ -#define G_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_GTYPE, GParamSpecGType)) - -/** - * G_TYPE_PARAM_VARIANT: - * - * The #GType of #GParamSpecVariant. - * - * Since: 2.26 - */ -#define G_TYPE_PARAM_VARIANT (g_param_spec_types[22]) -/** - * G_IS_PARAM_SPEC_VARIANT: - * @pspec: a #GParamSpec - * - * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_VARIANT. - * - * Returns: %TRUE on success - * - * Since: 2.26 - */ -#define G_IS_PARAM_SPEC_VARIANT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VARIANT)) -/** - * G_PARAM_SPEC_VARIANT: - * @pspec: a #GParamSpec - * - * Casts a #GParamSpec into a #GParamSpecVariant. - * - * Since: 2.26 - */ -#define G_PARAM_SPEC_VARIANT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VARIANT, GParamSpecVariant)) - -/* --- typedefs & structures --- */ -typedef struct _GParamSpecChar GParamSpecChar; -typedef struct _GParamSpecUChar GParamSpecUChar; -typedef struct _GParamSpecBoolean GParamSpecBoolean; -typedef struct _GParamSpecInt GParamSpecInt; -typedef struct _GParamSpecUInt GParamSpecUInt; -typedef struct _GParamSpecLong GParamSpecLong; -typedef struct _GParamSpecULong GParamSpecULong; -typedef struct _GParamSpecInt64 GParamSpecInt64; -typedef struct _GParamSpecUInt64 GParamSpecUInt64; -typedef struct _GParamSpecUnichar GParamSpecUnichar; -typedef struct _GParamSpecEnum GParamSpecEnum; -typedef struct _GParamSpecFlags GParamSpecFlags; -typedef struct _GParamSpecFloat GParamSpecFloat; -typedef struct _GParamSpecDouble GParamSpecDouble; -typedef struct _GParamSpecString GParamSpecString; -typedef struct _GParamSpecParam GParamSpecParam; -typedef struct _GParamSpecBoxed GParamSpecBoxed; -typedef struct _GParamSpecPointer GParamSpecPointer; -typedef struct _GParamSpecValueArray GParamSpecValueArray; -typedef struct _GParamSpecObject GParamSpecObject; -typedef struct _GParamSpecOverride GParamSpecOverride; -typedef struct _GParamSpecGType GParamSpecGType; -typedef struct _GParamSpecVariant GParamSpecVariant; - -/** - * GParamSpecChar: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for character properties. - */ -struct _GParamSpecChar -{ - GParamSpec parent_instance; - - gint8 minimum; - gint8 maximum; - gint8 default_value; -}; -/** - * GParamSpecUChar: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for unsigned character properties. - */ -struct _GParamSpecUChar -{ - GParamSpec parent_instance; - - guint8 minimum; - guint8 maximum; - guint8 default_value; -}; -/** - * GParamSpecBoolean: - * @parent_instance: private #GParamSpec portion - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for boolean properties. - */ -struct _GParamSpecBoolean -{ - GParamSpec parent_instance; - - gboolean default_value; -}; -/** - * GParamSpecInt: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for integer properties. - */ -struct _GParamSpecInt -{ - GParamSpec parent_instance; - - gint minimum; - gint maximum; - gint default_value; -}; -/** - * GParamSpecUInt: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for unsigned integer properties. - */ -struct _GParamSpecUInt -{ - GParamSpec parent_instance; - - guint minimum; - guint maximum; - guint default_value; -}; -/** - * GParamSpecLong: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for long integer properties. - */ -struct _GParamSpecLong -{ - GParamSpec parent_instance; - - glong minimum; - glong maximum; - glong default_value; -}; -/** - * GParamSpecULong: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for unsigned long integer properties. - */ -struct _GParamSpecULong -{ - GParamSpec parent_instance; - - gulong minimum; - gulong maximum; - gulong default_value; -}; -/** - * GParamSpecInt64: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for 64bit integer properties. - */ -struct _GParamSpecInt64 -{ - GParamSpec parent_instance; - - gint64 minimum; - gint64 maximum; - gint64 default_value; -}; -/** - * GParamSpecUInt64: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for unsigned 64bit integer properties. - */ -struct _GParamSpecUInt64 -{ - GParamSpec parent_instance; - - guint64 minimum; - guint64 maximum; - guint64 default_value; -}; -/** - * GParamSpecUnichar: - * @parent_instance: private #GParamSpec portion - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for unichar (unsigned integer) properties. - */ -struct _GParamSpecUnichar -{ - GParamSpec parent_instance; - - gunichar default_value; -}; -/** - * GParamSpecEnum: - * @parent_instance: private #GParamSpec portion - * @enum_class: the #GEnumClass for the enum - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for enum - * properties. - */ -struct _GParamSpecEnum -{ - GParamSpec parent_instance; - - GEnumClass *enum_class; - gint default_value; -}; -/** - * GParamSpecFlags: - * @parent_instance: private #GParamSpec portion - * @flags_class: the #GFlagsClass for the flags - * @default_value: default value for the property specified - * - * A #GParamSpec derived structure that contains the meta data for flags - * properties. - */ -struct _GParamSpecFlags -{ - GParamSpec parent_instance; - - GFlagsClass *flags_class; - guint default_value; -}; -/** - * GParamSpecFloat: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * @epsilon: values closer than @epsilon will be considered identical - * by g_param_values_cmp(); the default value is 1e-30. - * - * A #GParamSpec derived structure that contains the meta data for float properties. - */ -struct _GParamSpecFloat -{ - GParamSpec parent_instance; - - gfloat minimum; - gfloat maximum; - gfloat default_value; - gfloat epsilon; -}; -/** - * GParamSpecDouble: - * @parent_instance: private #GParamSpec portion - * @minimum: minimum value for the property specified - * @maximum: maximum value for the property specified - * @default_value: default value for the property specified - * @epsilon: values closer than @epsilon will be considered identical - * by g_param_values_cmp(); the default value is 1e-90. - * - * A #GParamSpec derived structure that contains the meta data for double properties. - */ -struct _GParamSpecDouble -{ - GParamSpec parent_instance; - - gdouble minimum; - gdouble maximum; - gdouble default_value; - gdouble epsilon; -}; -/** - * GParamSpecString: - * @parent_instance: private #GParamSpec portion - * @default_value: default value for the property specified - * @cset_first: a string containing the allowed values for the first byte - * @cset_nth: a string containing the allowed values for the subsequent bytes - * @substitutor: the replacement byte for bytes which don't match @cset_first or @cset_nth. - * @null_fold_if_empty: replace empty string by %NULL - * @ensure_non_null: replace %NULL strings by an empty string - * - * A #GParamSpec derived structure that contains the meta data for string - * properties. - */ -struct _GParamSpecString -{ - GParamSpec parent_instance; - - gchar *default_value; - gchar *cset_first; - gchar *cset_nth; - gchar substitutor; - guint null_fold_if_empty : 1; - guint ensure_non_null : 1; -}; -/** - * GParamSpecParam: - * @parent_instance: private #GParamSpec portion - * - * A #GParamSpec derived structure that contains the meta data for %G_TYPE_PARAM - * properties. - */ -struct _GParamSpecParam -{ - GParamSpec parent_instance; -}; -/** - * GParamSpecBoxed: - * @parent_instance: private #GParamSpec portion - * - * A #GParamSpec derived structure that contains the meta data for boxed properties. - */ -struct _GParamSpecBoxed -{ - GParamSpec parent_instance; -}; -/** - * GParamSpecPointer: - * @parent_instance: private #GParamSpec portion - * - * A #GParamSpec derived structure that contains the meta data for pointer properties. - */ -struct _GParamSpecPointer -{ - GParamSpec parent_instance; -}; -/** - * GParamSpecValueArray: - * @parent_instance: private #GParamSpec portion - * @element_spec: a #GParamSpec describing the elements contained in arrays of this property, may be %NULL - * @fixed_n_elements: if greater than 0, arrays of this property will always have this many elements - * - * A #GParamSpec derived structure that contains the meta data for #GValueArray properties. - */ -struct _GParamSpecValueArray -{ - GParamSpec parent_instance; - GParamSpec *element_spec; - guint fixed_n_elements; -}; -/** - * GParamSpecObject: - * @parent_instance: private #GParamSpec portion - * - * A #GParamSpec derived structure that contains the meta data for object properties. - */ -struct _GParamSpecObject -{ - GParamSpec parent_instance; -}; -/** - * GParamSpecOverride: - * - * This is a type of #GParamSpec type that simply redirects operations to - * another paramspec. All operations other than getting or - * setting the value are redirected, including accessing the nick and - * blurb, validating a value, and so forth. See - * g_param_spec_get_redirect_target() for retrieving the overidden - * property. #GParamSpecOverride is used in implementing - * g_object_class_override_property(), and will not be directly useful - * unless you are implementing a new base type similar to GObject. - * - * Since: 2.4 - */ -struct _GParamSpecOverride -{ - /*< private >*/ - GParamSpec parent_instance; - GParamSpec *overridden; -}; -/** - * GParamSpecGType: - * @parent_instance: private #GParamSpec portion - * @is_a_type: a #GType whose subtypes can occur as values - * - * A #GParamSpec derived structure that contains the meta data for #GType properties. - * - * Since: 2.10 - */ -struct _GParamSpecGType -{ - GParamSpec parent_instance; - GType is_a_type; -}; -/** - * GParamSpecVariant: - * @parent_instance: private #GParamSpec portion - * @type: a #GVariantType, or %NULL - * @default_value: a #GVariant, or %NULL - * - * A #GParamSpec derived structure that contains the meta data for #GVariant properties. - * - * Since: 2.26 - */ -struct _GParamSpecVariant -{ - GParamSpec parent_instance; - GVariantType *type; - GVariant *default_value; - - /*< private >*/ - gpointer padding[4]; -}; - -/* --- GParamSpec prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_char (const gchar *name, - const gchar *nick, - const gchar *blurb, - gint8 minimum, - gint8 maximum, - gint8 default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_uchar (const gchar *name, - const gchar *nick, - const gchar *blurb, - guint8 minimum, - guint8 maximum, - guint8 default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_boolean (const gchar *name, - const gchar *nick, - const gchar *blurb, - gboolean default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_int (const gchar *name, - const gchar *nick, - const gchar *blurb, - gint minimum, - gint maximum, - gint default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_uint (const gchar *name, - const gchar *nick, - const gchar *blurb, - guint minimum, - guint maximum, - guint default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_long (const gchar *name, - const gchar *nick, - const gchar *blurb, - glong minimum, - glong maximum, - glong default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_ulong (const gchar *name, - const gchar *nick, - const gchar *blurb, - gulong minimum, - gulong maximum, - gulong default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_int64 (const gchar *name, - const gchar *nick, - const gchar *blurb, - gint64 minimum, - gint64 maximum, - gint64 default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_uint64 (const gchar *name, - const gchar *nick, - const gchar *blurb, - guint64 minimum, - guint64 maximum, - guint64 default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_unichar (const gchar *name, - const gchar *nick, - const gchar *blurb, - gunichar default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_enum (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType enum_type, - gint default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_flags (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType flags_type, - guint default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_float (const gchar *name, - const gchar *nick, - const gchar *blurb, - gfloat minimum, - gfloat maximum, - gfloat default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_double (const gchar *name, - const gchar *nick, - const gchar *blurb, - gdouble minimum, - gdouble maximum, - gdouble default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_string (const gchar *name, - const gchar *nick, - const gchar *blurb, - const gchar *default_value, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_param (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType param_type, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_boxed (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType boxed_type, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_pointer (const gchar *name, - const gchar *nick, - const gchar *blurb, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_value_array (const gchar *name, - const gchar *nick, - const gchar *blurb, - GParamSpec *element_spec, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_object (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType object_type, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_override (const gchar *name, - GParamSpec *overridden); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_gtype (const gchar *name, - const gchar *nick, - const gchar *blurb, - GType is_a_type, - GParamFlags flags); -GLIB_AVAILABLE_IN_ALL -GParamSpec* g_param_spec_variant (const gchar *name, - const gchar *nick, - const gchar *blurb, - const GVariantType *type, - GVariant *default_value, - GParamFlags flags); - -/* --- internal --- */ -/* We prefix variable declarations so they can - * properly get exported in windows dlls. - */ -#ifndef GOBJECT_VAR -# ifdef G_PLATFORM_WIN32 -# ifdef GOBJECT_STATIC_COMPILATION -# define GOBJECT_VAR extern -# else /* !GOBJECT_STATIC_COMPILATION */ -# ifdef GOBJECT_COMPILATION -# ifdef DLL_EXPORT -# define GOBJECT_VAR __declspec(dllexport) -# else /* !DLL_EXPORT */ -# define GOBJECT_VAR extern -# endif /* !DLL_EXPORT */ -# else /* !GOBJECT_COMPILATION */ -# define GOBJECT_VAR extern __declspec(dllimport) -# endif /* !GOBJECT_COMPILATION */ -# endif /* !GOBJECT_STATIC_COMPILATION */ -# else /* !G_PLATFORM_WIN32 */ -# define GOBJECT_VAR _GLIB_EXTERN -# endif /* !G_PLATFORM_WIN32 */ -#endif /* GOBJECT_VAR */ - -GOBJECT_VAR GType *g_param_spec_types; - -G_END_DECLS - -#endif /* __G_PARAMSPECS_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsignal.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsignal.h deleted file mode 100644 index 46721ca..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsignal.h +++ /dev/null @@ -1,585 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000-2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_SIGNAL_H__ -#define __G_SIGNAL_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include -#include -#include - -G_BEGIN_DECLS - -/* --- typedefs --- */ -typedef struct _GSignalQuery GSignalQuery; -typedef struct _GSignalInvocationHint GSignalInvocationHint; -/** - * GSignalCMarshaller: - * - * This is the signature of marshaller functions, required to marshall - * arrays of parameter values to signal emissions into C language callback - * invocations. It is merely an alias to #GClosureMarshal since the #GClosure - * mechanism takes over responsibility of actual function invocation for the - * signal system. - */ -typedef GClosureMarshal GSignalCMarshaller; -/** - * GSignalCVaMarshaller: - * - * This is the signature of va_list marshaller functions, an optional - * marshaller that can be used in some situations to avoid - * marshalling the signal argument into GValues. - */ -typedef GVaClosureMarshal GSignalCVaMarshaller; -/** - * GSignalEmissionHook: - * @ihint: Signal invocation hint, see #GSignalInvocationHint. - * @n_param_values: the number of parameters to the function, including - * the instance on which the signal was emitted. - * @param_values: (array length=n_param_values): the instance on which - * the signal was emitted, followed by the parameters of the emission. - * @data: user data associated with the hook. - * - * A simple function pointer to get invoked when the signal is emitted. This - * allows you to tie a hook to the signal type, so that it will trap all - * emissions of that signal, from any object. - * - * You may not attach these to signals created with the #G_SIGNAL_NO_HOOKS flag. - * - * Returns: whether it wants to stay connected. If it returns %FALSE, the signal - * hook is disconnected (and destroyed). - */ -typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint, - guint n_param_values, - const GValue *param_values, - gpointer data); -/** - * GSignalAccumulator: - * @ihint: Signal invocation hint, see #GSignalInvocationHint. - * @return_accu: Accumulator to collect callback return values in, this - * is the return value of the current signal emission. - * @handler_return: A #GValue holding the return value of the signal handler. - * @data: Callback data that was specified when creating the signal. - * - * The signal accumulator is a special callback function that can be used - * to collect return values of the various callbacks that are called - * during a signal emission. The signal accumulator is specified at signal - * creation time, if it is left %NULL, no accumulation of callback return - * values is performed. The return value of signal emissions is then the - * value returned by the last callback. - * - * Returns: The accumulator function returns whether the signal emission - * should be aborted. Returning %FALSE means to abort the - * current emission and %TRUE is returned for continuation. - */ -typedef gboolean (*GSignalAccumulator) (GSignalInvocationHint *ihint, - GValue *return_accu, - const GValue *handler_return, - gpointer data); - - -/* --- run, match and connect types --- */ -/** - * GSignalFlags: - * @G_SIGNAL_RUN_FIRST: Invoke the object method handler in the first emission stage. - * @G_SIGNAL_RUN_LAST: Invoke the object method handler in the third emission stage. - * @G_SIGNAL_RUN_CLEANUP: Invoke the object method handler in the last emission stage. - * @G_SIGNAL_NO_RECURSE: Signals being emitted for an object while currently being in - * emission for this very object will not be emitted recursively, - * but instead cause the first emission to be restarted. - * @G_SIGNAL_DETAILED: This signal supports "::detail" appendices to the signal name - * upon handler connections and emissions. - * @G_SIGNAL_ACTION: Action signals are signals that may freely be emitted on alive - * objects from user code via g_signal_emit() and friends, without - * the need of being embedded into extra code that performs pre or - * post emission adjustments on the object. They can also be thought - * of as object methods which can be called generically by - * third-party code. - * @G_SIGNAL_NO_HOOKS: No emissions hooks are supported for this signal. - * @G_SIGNAL_MUST_COLLECT: Varargs signal emission will always collect the - * arguments, even if there are no signal handlers connected. Since 2.30. - * @G_SIGNAL_DEPRECATED: The signal is deprecated and will be removed - * in a future version. A warning will be generated if it is connected while - * running with G_ENABLE_DIAGNOSTIC=1. Since 2.32. - * - * The signal flags are used to specify a signal's behaviour, the overall - * signal description outlines how especially the RUN flags control the - * stages of a signal emission. - */ -typedef enum -{ - G_SIGNAL_RUN_FIRST = 1 << 0, - G_SIGNAL_RUN_LAST = 1 << 1, - G_SIGNAL_RUN_CLEANUP = 1 << 2, - G_SIGNAL_NO_RECURSE = 1 << 3, - G_SIGNAL_DETAILED = 1 << 4, - G_SIGNAL_ACTION = 1 << 5, - G_SIGNAL_NO_HOOKS = 1 << 6, - G_SIGNAL_MUST_COLLECT = 1 << 7, - G_SIGNAL_DEPRECATED = 1 << 8 -} GSignalFlags; -/** - * G_SIGNAL_FLAGS_MASK: - * - * A mask for all #GSignalFlags bits. - */ -#define G_SIGNAL_FLAGS_MASK 0x1ff -/** - * GConnectFlags: - * @G_CONNECT_AFTER: whether the handler should be called before or after the - * default handler of the signal. - * @G_CONNECT_SWAPPED: whether the instance and data should be swapped when - * calling the handler. - * - * The connection flags are used to specify the behaviour of a signal's - * connection. - */ -typedef enum -{ - G_CONNECT_AFTER = 1 << 0, - G_CONNECT_SWAPPED = 1 << 1 -} GConnectFlags; -/** - * GSignalMatchType: - * @G_SIGNAL_MATCH_ID: The signal id must be equal. - * @G_SIGNAL_MATCH_DETAIL: The signal detail be equal. - * @G_SIGNAL_MATCH_CLOSURE: The closure must be the same. - * @G_SIGNAL_MATCH_FUNC: The C closure callback must be the same. - * @G_SIGNAL_MATCH_DATA: The closure data must be the same. - * @G_SIGNAL_MATCH_UNBLOCKED: Only unblocked signals may matched. - * - * The match types specify what g_signal_handlers_block_matched(), - * g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched() - * match signals by. - */ -typedef enum -{ - G_SIGNAL_MATCH_ID = 1 << 0, - G_SIGNAL_MATCH_DETAIL = 1 << 1, - G_SIGNAL_MATCH_CLOSURE = 1 << 2, - G_SIGNAL_MATCH_FUNC = 1 << 3, - G_SIGNAL_MATCH_DATA = 1 << 4, - G_SIGNAL_MATCH_UNBLOCKED = 1 << 5 -} GSignalMatchType; -/** - * G_SIGNAL_MATCH_MASK: - * - * A mask for all #GSignalMatchType bits. - */ -#define G_SIGNAL_MATCH_MASK 0x3f -/** - * G_SIGNAL_TYPE_STATIC_SCOPE: - * - * This macro flags signal argument types for which the signal system may - * assume that instances thereof remain persistent across all signal emissions - * they are used in. This is only useful for non ref-counted, value-copy types. - * - * To flag a signal argument in this way, add - * | G_SIGNAL_TYPE_STATIC_SCOPE to the corresponding argument - * of g_signal_new(). - * |[ - * g_signal_new ("size_request", - * G_TYPE_FROM_CLASS (gobject_class), - * G_SIGNAL_RUN_FIRST, - * G_STRUCT_OFFSET (GtkWidgetClass, size_request), - * NULL, NULL, - * _gtk_marshal_VOID__BOXED, - * G_TYPE_NONE, 1, - * GTK_TYPE_REQUISITION | G_SIGNAL_TYPE_STATIC_SCOPE); - * ]| - */ -#define G_SIGNAL_TYPE_STATIC_SCOPE (G_TYPE_FLAG_RESERVED_ID_BIT) - - -/* --- signal information --- */ -/** - * GSignalInvocationHint: - * @signal_id: The signal id of the signal invoking the callback - * @detail: The detail passed on for this emission - * @run_type: The stage the signal emission is currently in, this - * field will contain one of %G_SIGNAL_RUN_FIRST, - * %G_SIGNAL_RUN_LAST or %G_SIGNAL_RUN_CLEANUP. - * - * The #GSignalInvocationHint structure is used to pass on additional information - * to callbacks during a signal emission. - */ -struct _GSignalInvocationHint -{ - guint signal_id; - GQuark detail; - GSignalFlags run_type; -}; -/** - * GSignalQuery: - * @signal_id: The signal id of the signal being queried, or 0 if the - * signal to be queried was unknown. - * @signal_name: The signal name. - * @itype: The interface/instance type that this signal can be emitted for. - * @signal_flags: The signal flags as passed in to g_signal_new(). - * @return_type: The return type for user callbacks. - * @n_params: The number of parameters that user callbacks take. - * @param_types: (array length=n_params): The individual parameter types for - * user callbacks, note that the effective callback signature is: - * - * @return_type callback (#gpointer data1, - * [param_types param_names,] - * gpointer data2); - * - * - * A structure holding in-depth information for a specific signal. It is - * filled in by the g_signal_query() function. - */ -struct _GSignalQuery -{ - guint signal_id; - const gchar *signal_name; - GType itype; - GSignalFlags signal_flags; - GType return_type; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */ - guint n_params; - const GType *param_types; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */ -}; - - -/* --- signals --- */ -GLIB_AVAILABLE_IN_ALL -guint g_signal_newv (const gchar *signal_name, - GType itype, - GSignalFlags signal_flags, - GClosure *class_closure, - GSignalAccumulator accumulator, - gpointer accu_data, - GSignalCMarshaller c_marshaller, - GType return_type, - guint n_params, - GType *param_types); -GLIB_AVAILABLE_IN_ALL -guint g_signal_new_valist (const gchar *signal_name, - GType itype, - GSignalFlags signal_flags, - GClosure *class_closure, - GSignalAccumulator accumulator, - gpointer accu_data, - GSignalCMarshaller c_marshaller, - GType return_type, - guint n_params, - va_list args); -GLIB_AVAILABLE_IN_ALL -guint g_signal_new (const gchar *signal_name, - GType itype, - GSignalFlags signal_flags, - guint class_offset, - GSignalAccumulator accumulator, - gpointer accu_data, - GSignalCMarshaller c_marshaller, - GType return_type, - guint n_params, - ...); -GLIB_AVAILABLE_IN_ALL -guint g_signal_new_class_handler (const gchar *signal_name, - GType itype, - GSignalFlags signal_flags, - GCallback class_handler, - GSignalAccumulator accumulator, - gpointer accu_data, - GSignalCMarshaller c_marshaller, - GType return_type, - guint n_params, - ...); -GLIB_AVAILABLE_IN_ALL -void g_signal_set_va_marshaller (guint signal_id, - GType instance_type, - GSignalCVaMarshaller va_marshaller); - -GLIB_AVAILABLE_IN_ALL -void g_signal_emitv (const GValue *instance_and_params, - guint signal_id, - GQuark detail, - GValue *return_value); -GLIB_AVAILABLE_IN_ALL -void g_signal_emit_valist (gpointer instance, - guint signal_id, - GQuark detail, - va_list var_args); -GLIB_AVAILABLE_IN_ALL -void g_signal_emit (gpointer instance, - guint signal_id, - GQuark detail, - ...); -GLIB_AVAILABLE_IN_ALL -void g_signal_emit_by_name (gpointer instance, - const gchar *detailed_signal, - ...); -GLIB_AVAILABLE_IN_ALL -guint g_signal_lookup (const gchar *name, - GType itype); -GLIB_AVAILABLE_IN_ALL -const gchar * g_signal_name (guint signal_id); -GLIB_AVAILABLE_IN_ALL -void g_signal_query (guint signal_id, - GSignalQuery *query); -GLIB_AVAILABLE_IN_ALL -guint* g_signal_list_ids (GType itype, - guint *n_ids); -GLIB_AVAILABLE_IN_ALL -gboolean g_signal_parse_name (const gchar *detailed_signal, - GType itype, - guint *signal_id_p, - GQuark *detail_p, - gboolean force_detail_quark); -GLIB_AVAILABLE_IN_ALL -GSignalInvocationHint* g_signal_get_invocation_hint (gpointer instance); - - -/* --- signal emissions --- */ -GLIB_AVAILABLE_IN_ALL -void g_signal_stop_emission (gpointer instance, - guint signal_id, - GQuark detail); -GLIB_AVAILABLE_IN_ALL -void g_signal_stop_emission_by_name (gpointer instance, - const gchar *detailed_signal); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_add_emission_hook (guint signal_id, - GQuark detail, - GSignalEmissionHook hook_func, - gpointer hook_data, - GDestroyNotify data_destroy); -GLIB_AVAILABLE_IN_ALL -void g_signal_remove_emission_hook (guint signal_id, - gulong hook_id); - - -/* --- signal handlers --- */ -GLIB_AVAILABLE_IN_ALL -gboolean g_signal_has_handler_pending (gpointer instance, - guint signal_id, - GQuark detail, - gboolean may_be_blocked); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_connect_closure_by_id (gpointer instance, - guint signal_id, - GQuark detail, - GClosure *closure, - gboolean after); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_connect_closure (gpointer instance, - const gchar *detailed_signal, - GClosure *closure, - gboolean after); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_connect_data (gpointer instance, - const gchar *detailed_signal, - GCallback c_handler, - gpointer data, - GClosureNotify destroy_data, - GConnectFlags connect_flags); -GLIB_AVAILABLE_IN_ALL -void g_signal_handler_block (gpointer instance, - gulong handler_id); -GLIB_AVAILABLE_IN_ALL -void g_signal_handler_unblock (gpointer instance, - gulong handler_id); -GLIB_AVAILABLE_IN_ALL -void g_signal_handler_disconnect (gpointer instance, - gulong handler_id); -GLIB_AVAILABLE_IN_ALL -gboolean g_signal_handler_is_connected (gpointer instance, - gulong handler_id); -GLIB_AVAILABLE_IN_ALL -gulong g_signal_handler_find (gpointer instance, - GSignalMatchType mask, - guint signal_id, - GQuark detail, - GClosure *closure, - gpointer func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_signal_handlers_block_matched (gpointer instance, - GSignalMatchType mask, - guint signal_id, - GQuark detail, - GClosure *closure, - gpointer func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_signal_handlers_unblock_matched (gpointer instance, - GSignalMatchType mask, - guint signal_id, - GQuark detail, - GClosure *closure, - gpointer func, - gpointer data); -GLIB_AVAILABLE_IN_ALL -guint g_signal_handlers_disconnect_matched (gpointer instance, - GSignalMatchType mask, - guint signal_id, - GQuark detail, - GClosure *closure, - gpointer func, - gpointer data); - - -/* --- overriding and chaining --- */ -GLIB_AVAILABLE_IN_ALL -void g_signal_override_class_closure (guint signal_id, - GType instance_type, - GClosure *class_closure); -GLIB_AVAILABLE_IN_ALL -void g_signal_override_class_handler (const gchar *signal_name, - GType instance_type, - GCallback class_handler); -GLIB_AVAILABLE_IN_ALL -void g_signal_chain_from_overridden (const GValue *instance_and_params, - GValue *return_value); -GLIB_AVAILABLE_IN_ALL -void g_signal_chain_from_overridden_handler (gpointer instance, - ...); - - -/* --- convenience --- */ -/** - * g_signal_connect: - * @instance: the instance to connect to. - * @detailed_signal: a string of the form "signal-name::detail". - * @c_handler: the #GCallback to connect. - * @data: data to pass to @c_handler calls. - * - * Connects a #GCallback function to a signal for a particular object. - * - * The handler will be called before the default handler of the signal. - * - * Returns: the handler id - */ -#define g_signal_connect(instance, detailed_signal, c_handler, data) \ - g_signal_connect_data ((instance), (detailed_signal), (c_handler), (data), NULL, (GConnectFlags) 0) -/** - * g_signal_connect_after: - * @instance: the instance to connect to. - * @detailed_signal: a string of the form "signal-name::detail". - * @c_handler: the #GCallback to connect. - * @data: data to pass to @c_handler calls. - * - * Connects a #GCallback function to a signal for a particular object. - * - * The handler will be called after the default handler of the signal. - * - * Returns: the handler id - */ -#define g_signal_connect_after(instance, detailed_signal, c_handler, data) \ - g_signal_connect_data ((instance), (detailed_signal), (c_handler), (data), NULL, G_CONNECT_AFTER) -/** - * g_signal_connect_swapped: - * @instance: the instance to connect to. - * @detailed_signal: a string of the form "signal-name::detail". - * @c_handler: the #GCallback to connect. - * @data: data to pass to @c_handler calls. - * - * Connects a #GCallback function to a signal for a particular object. - * - * The instance on which the signal is emitted and @data will be swapped when - * calling the handler. - * - * Returns: the handler id - */ -#define g_signal_connect_swapped(instance, detailed_signal, c_handler, data) \ - g_signal_connect_data ((instance), (detailed_signal), (c_handler), (data), NULL, G_CONNECT_SWAPPED) -/** - * g_signal_handlers_disconnect_by_func: - * @instance: The instance to remove handlers from. - * @func: The C closure callback of the handlers (useless for non-C closures). - * @data: The closure data of the handlers' closures. - * - * Disconnects all handlers on an instance that match @func and @data. - * - * Returns: The number of handlers that matched. - */ -#define g_signal_handlers_disconnect_by_func(instance, func, data) \ - g_signal_handlers_disconnect_matched ((instance), \ - (GSignalMatchType) (G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA), \ - 0, 0, NULL, (func), (data)) - -/** - * g_signal_handlers_disconnect_by_data: - * @instance: The instance to remove handlers from - * @data: the closure data of the handlers' closures - * - * Disconnects all handlers on an instance that match @data. - * - * Returns: The number of handlers that matched. - * - * Since: 2.32 - */ -#define g_signal_handlers_disconnect_by_data(instance, data) \ - g_signal_handlers_disconnect_matched ((instance), G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, (data)) - -/** - * g_signal_handlers_block_by_func: - * @instance: The instance to block handlers from. - * @func: The C closure callback of the handlers (useless for non-C closures). - * @data: The closure data of the handlers' closures. - * - * Blocks all handlers on an instance that match @func and @data. - * - * Returns: The number of handlers that matched. - */ -#define g_signal_handlers_block_by_func(instance, func, data) \ - g_signal_handlers_block_matched ((instance), \ - (GSignalMatchType) (G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA), \ - 0, 0, NULL, (func), (data)) -/** - * g_signal_handlers_unblock_by_func: - * @instance: The instance to unblock handlers from. - * @func: The C closure callback of the handlers (useless for non-C closures). - * @data: The closure data of the handlers' closures. - * - * Unblocks all handlers on an instance that match @func and @data. - * - * Returns: The number of handlers that matched. - */ -#define g_signal_handlers_unblock_by_func(instance, func, data) \ - g_signal_handlers_unblock_matched ((instance), \ - (GSignalMatchType) (G_SIGNAL_MATCH_FUNC | G_SIGNAL_MATCH_DATA), \ - 0, 0, NULL, (func), (data)) - - -GLIB_AVAILABLE_IN_ALL -gboolean g_signal_accumulator_true_handled (GSignalInvocationHint *ihint, - GValue *return_accu, - const GValue *handler_return, - gpointer dummy); - -GLIB_AVAILABLE_IN_ALL -gboolean g_signal_accumulator_first_wins (GSignalInvocationHint *ihint, - GValue *return_accu, - const GValue *handler_return, - gpointer dummy); - -/*< private >*/ -GLIB_AVAILABLE_IN_ALL -void g_signal_handlers_destroy (gpointer instance); -void _g_signals_destroy (GType itype); - -G_END_DECLS - -#endif /* __G_SIGNAL_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsourceclosure.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsourceclosure.h deleted file mode 100644 index 6f07786..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gsourceclosure.h +++ /dev/null @@ -1,40 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_SOURCECLOSURE_H__ -#define __G_SOURCECLOSURE_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -GLIB_AVAILABLE_IN_ALL -void g_source_set_closure (GSource *source, - GClosure *closure); - -GLIB_AVAILABLE_IN_ALL -void g_source_set_dummy_callback (GSource *source); - -G_END_DECLS - -#endif /* __G_SOURCECLOSURE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtype.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtype.h deleted file mode 100644 index ff57af7..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtype.h +++ /dev/null @@ -1,1977 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_TYPE_H__ -#define __G_TYPE_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* Basic Type Macros - */ -/** - * G_TYPE_FUNDAMENTAL: - * @type: A #GType value. - * - * The fundamental type which is the ancestor of @type. - * Fundamental types are types that serve as ultimate bases for the derived types, - * thus they are the roots of distinct inheritance hierarchies. - */ -#define G_TYPE_FUNDAMENTAL(type) (g_type_fundamental (type)) -/** - * G_TYPE_FUNDAMENTAL_MAX: - * - * An integer constant that represents the number of identifiers reserved - * for types that are assigned at compile-time. - */ -#define G_TYPE_FUNDAMENTAL_MAX (255 << G_TYPE_FUNDAMENTAL_SHIFT) - -/* Constant fundamental types, - */ -/** - * G_TYPE_INVALID: - * - * An invalid #GType used as error return value in some functions which return - * a #GType. - */ -#define G_TYPE_INVALID G_TYPE_MAKE_FUNDAMENTAL (0) -/** - * G_TYPE_NONE: - * - * A fundamental type which is used as a replacement for the C - * void return type. - */ -#define G_TYPE_NONE G_TYPE_MAKE_FUNDAMENTAL (1) -/** - * G_TYPE_INTERFACE: - * - * The fundamental type from which all interfaces are derived. - */ -#define G_TYPE_INTERFACE G_TYPE_MAKE_FUNDAMENTAL (2) -/** - * G_TYPE_CHAR: - * - * The fundamental type corresponding to #gchar. - * The type designated by G_TYPE_CHAR is unconditionally an 8-bit signed integer. - * This may or may not be the same type a the C type "gchar". - */ -#define G_TYPE_CHAR G_TYPE_MAKE_FUNDAMENTAL (3) -/** - * G_TYPE_UCHAR: - * - * The fundamental type corresponding to #guchar. - */ -#define G_TYPE_UCHAR G_TYPE_MAKE_FUNDAMENTAL (4) -/** - * G_TYPE_BOOLEAN: - * - * The fundamental type corresponding to #gboolean. - */ -#define G_TYPE_BOOLEAN G_TYPE_MAKE_FUNDAMENTAL (5) -/** - * G_TYPE_INT: - * - * The fundamental type corresponding to #gint. - */ -#define G_TYPE_INT G_TYPE_MAKE_FUNDAMENTAL (6) -/** - * G_TYPE_UINT: - * - * The fundamental type corresponding to #guint. - */ -#define G_TYPE_UINT G_TYPE_MAKE_FUNDAMENTAL (7) -/** - * G_TYPE_LONG: - * - * The fundamental type corresponding to #glong. - */ -#define G_TYPE_LONG G_TYPE_MAKE_FUNDAMENTAL (8) -/** - * G_TYPE_ULONG: - * - * The fundamental type corresponding to #gulong. - */ -#define G_TYPE_ULONG G_TYPE_MAKE_FUNDAMENTAL (9) -/** - * G_TYPE_INT64: - * - * The fundamental type corresponding to #gint64. - */ -#define G_TYPE_INT64 G_TYPE_MAKE_FUNDAMENTAL (10) -/** - * G_TYPE_UINT64: - * - * The fundamental type corresponding to #guint64. - */ -#define G_TYPE_UINT64 G_TYPE_MAKE_FUNDAMENTAL (11) -/** - * G_TYPE_ENUM: - * - * The fundamental type from which all enumeration types are derived. - */ -#define G_TYPE_ENUM G_TYPE_MAKE_FUNDAMENTAL (12) -/** - * G_TYPE_FLAGS: - * - * The fundamental type from which all flags types are derived. - */ -#define G_TYPE_FLAGS G_TYPE_MAKE_FUNDAMENTAL (13) -/** - * G_TYPE_FLOAT: - * - * The fundamental type corresponding to #gfloat. - */ -#define G_TYPE_FLOAT G_TYPE_MAKE_FUNDAMENTAL (14) -/** - * G_TYPE_DOUBLE: - * - * The fundamental type corresponding to #gdouble. - */ -#define G_TYPE_DOUBLE G_TYPE_MAKE_FUNDAMENTAL (15) -/** - * G_TYPE_STRING: - * - * The fundamental type corresponding to nul-terminated C strings. - */ -#define G_TYPE_STRING G_TYPE_MAKE_FUNDAMENTAL (16) -/** - * G_TYPE_POINTER: - * - * The fundamental type corresponding to #gpointer. - */ -#define G_TYPE_POINTER G_TYPE_MAKE_FUNDAMENTAL (17) -/** - * G_TYPE_BOXED: - * - * The fundamental type from which all boxed types are derived. - */ -#define G_TYPE_BOXED G_TYPE_MAKE_FUNDAMENTAL (18) -/** - * G_TYPE_PARAM: - * - * The fundamental type from which all #GParamSpec types are derived. - */ -#define G_TYPE_PARAM G_TYPE_MAKE_FUNDAMENTAL (19) -/** - * G_TYPE_OBJECT: - * - * The fundamental type for #GObject. - */ -#define G_TYPE_OBJECT G_TYPE_MAKE_FUNDAMENTAL (20) -/** - * G_TYPE_VARIANT: - * - * The fundamental type corresponding to #GVariant. - * - * All floating #GVariant instances passed through the #GType system are - * consumed. - * - * Note that callbacks in closures, and signal handlers - * for signals of return type %G_TYPE_VARIANT, must never return floating - * variants. - * - * Note: GLib 2.24 did include a boxed type with this name. It was replaced - * with this fundamental type in 2.26. - * - * Since: 2.26 - */ -#define G_TYPE_VARIANT G_TYPE_MAKE_FUNDAMENTAL (21) - - -/* Reserved fundamental type numbers to create new fundamental - * type IDs with G_TYPE_MAKE_FUNDAMENTAL(). - * Send email to gtk-devel-list@gnome.org for reservations. - */ -/** - * G_TYPE_FUNDAMENTAL_SHIFT: - * - * Shift value used in converting numbers to type IDs. - */ -#define G_TYPE_FUNDAMENTAL_SHIFT (2) -/** - * G_TYPE_MAKE_FUNDAMENTAL: - * @x: the fundamental type number. - * - * Get the type ID for the fundamental type number @x. - * Use g_type_fundamental_next() instead of this macro to create new fundamental - * types. - * - * Returns: the GType - */ -#define G_TYPE_MAKE_FUNDAMENTAL(x) ((GType) ((x) << G_TYPE_FUNDAMENTAL_SHIFT)) -/** - * G_TYPE_RESERVED_GLIB_FIRST: - * - * First fundamental type number to create a new fundamental type id with - * G_TYPE_MAKE_FUNDAMENTAL() reserved for GLib. - */ -#define G_TYPE_RESERVED_GLIB_FIRST (22) -/** - * G_TYPE_RESERVED_GLIB_LAST: - * - * Last fundamental type number reserved for GLib. - */ -#define G_TYPE_RESERVED_GLIB_LAST (31) -/** - * G_TYPE_RESERVED_BSE_FIRST: - * - * First fundamental type number to create a new fundamental type id with - * G_TYPE_MAKE_FUNDAMENTAL() reserved for BSE. - */ -#define G_TYPE_RESERVED_BSE_FIRST (32) -/** - * G_TYPE_RESERVED_BSE_LAST: - * - * Last fundamental type number reserved for BSE. - */ -#define G_TYPE_RESERVED_BSE_LAST (48) -/** - * G_TYPE_RESERVED_USER_FIRST: - * - * First available fundamental type number to create new fundamental - * type id with G_TYPE_MAKE_FUNDAMENTAL(). - */ -#define G_TYPE_RESERVED_USER_FIRST (49) - - -/* Type Checking Macros - */ -/** - * G_TYPE_IS_FUNDAMENTAL: - * @type: A #GType value. - * - * Checks if @type is a fundamental type. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_FUNDAMENTAL(type) ((type) <= G_TYPE_FUNDAMENTAL_MAX) -/** - * G_TYPE_IS_DERIVED: - * @type: A #GType value. - * - * Checks if @type is derived (or in object-oriented terminology: - * inherited) from another type (this holds true for all non-fundamental - * types). - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_DERIVED(type) ((type) > G_TYPE_FUNDAMENTAL_MAX) -/** - * G_TYPE_IS_INTERFACE: - * @type: A #GType value. - * - * Checks if @type is an interface type. - * An interface type provides a pure API, the implementation - * of which is provided by another type (which is then said to conform - * to the interface). GLib interfaces are somewhat analogous to Java - * interfaces and C++ classes containing only pure virtual functions, - * with the difference that GType interfaces are not derivable (but see - * g_type_interface_add_prerequisite() for an alternative). - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_INTERFACE(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_INTERFACE) -/** - * G_TYPE_IS_CLASSED: - * @type: A #GType value. - * - * Checks if @type is a classed type. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_CLASSED(type) (g_type_test_flags ((type), G_TYPE_FLAG_CLASSED)) -/** - * G_TYPE_IS_INSTANTIATABLE: - * @type: A #GType value. - * - * Checks if @type can be instantiated. Instantiation is the - * process of creating an instance (object) of this type. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_INSTANTIATABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_INSTANTIATABLE)) -/** - * G_TYPE_IS_DERIVABLE: - * @type: A #GType value. - * - * Checks if @type is a derivable type. A derivable type can - * be used as the base class of a flat (single-level) class hierarchy. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_DERIVABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_DERIVABLE)) -/** - * G_TYPE_IS_DEEP_DERIVABLE: - * @type: A #GType value. - * - * Checks if @type is a deep derivable type. A deep derivable type - * can be used as the base class of a deep (multi-level) class hierarchy. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_DEEP_DERIVABLE(type) (g_type_test_flags ((type), G_TYPE_FLAG_DEEP_DERIVABLE)) -/** - * G_TYPE_IS_ABSTRACT: - * @type: A #GType value. - * - * Checks if @type is an abstract type. An abstract type cannot be - * instantiated and is normally used as an abstract base class for - * derived classes. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_ABSTRACT(type) (g_type_test_flags ((type), G_TYPE_FLAG_ABSTRACT)) -/** - * G_TYPE_IS_VALUE_ABSTRACT: - * @type: A #GType value. - * - * Checks if @type is an abstract value type. An abstract value type introduces - * a value table, but can't be used for g_value_init() and is normally used as - * an abstract base type for derived value types. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_VALUE_ABSTRACT(type) (g_type_test_flags ((type), G_TYPE_FLAG_VALUE_ABSTRACT)) -/** - * G_TYPE_IS_VALUE_TYPE: - * @type: A #GType value. - * - * Checks if @type is a value type and can be used with g_value_init(). - * - * Returns: %TRUE on success. - */ -#define G_TYPE_IS_VALUE_TYPE(type) (g_type_check_is_value_type (type)) -/** - * G_TYPE_HAS_VALUE_TABLE: - * @type: A #GType value. - * - * Checks if @type has a #GTypeValueTable. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_HAS_VALUE_TABLE(type) (g_type_value_table_peek (type) != NULL) - - -/* Typedefs - */ -/** - * GType: - * - * A numerical value which represents the unique identifier of a registered - * type. - */ -#if GLIB_SIZEOF_SIZE_T != GLIB_SIZEOF_LONG || !defined __cplusplus -typedef gsize GType; -#else /* for historic reasons, C++ links against gulong GTypes */ -typedef gulong GType; -#endif -typedef struct _GValue GValue; -typedef union _GTypeCValue GTypeCValue; -typedef struct _GTypePlugin GTypePlugin; -typedef struct _GTypeClass GTypeClass; -typedef struct _GTypeInterface GTypeInterface; -typedef struct _GTypeInstance GTypeInstance; -typedef struct _GTypeInfo GTypeInfo; -typedef struct _GTypeFundamentalInfo GTypeFundamentalInfo; -typedef struct _GInterfaceInfo GInterfaceInfo; -typedef struct _GTypeValueTable GTypeValueTable; -typedef struct _GTypeQuery GTypeQuery; - - -/* Basic Type Structures - */ -/** - * GTypeClass: - * - * An opaque structure used as the base of all classes. - */ -struct _GTypeClass -{ - /*< private >*/ - GType g_type; -}; -/** - * GTypeInstance: - * - * An opaque structure used as the base of all type instances. - */ -struct _GTypeInstance -{ - /*< private >*/ - GTypeClass *g_class; -}; -/** - * GTypeInterface: - * - * An opaque structure used as the base of all interface types. - */ -struct _GTypeInterface -{ - /*< private >*/ - GType g_type; /* iface type */ - GType g_instance_type; -}; -/** - * GTypeQuery: - * @type: the #GType value of the type. - * @type_name: the name of the type. - * @class_size: the size of the class structure. - * @instance_size: the size of the instance structure. - * - * A structure holding information for a specific type. It is - * filled in by the g_type_query() function. - */ -struct _GTypeQuery -{ - GType type; - const gchar *type_name; - guint class_size; - guint instance_size; -}; - - -/* Casts, checks and accessors for structured types - * usage of these macros is reserved to type implementations only - */ -/*< protected >*/ -/** - * G_TYPE_CHECK_INSTANCE: - * @instance: Location of a #GTypeInstance structure. - * - * Checks if @instance is a valid #GTypeInstance structure, - * otherwise issues a warning and returns %FALSE. - * - * This macro should only be used in type implementations. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_CHECK_INSTANCE(instance) (_G_TYPE_CHI ((GTypeInstance*) (instance))) -/** - * G_TYPE_CHECK_INSTANCE_CAST: - * @instance: Location of a #GTypeInstance structure. - * @g_type: The type to be returned. - * @c_type: The corresponding C type of @g_type. - * - * Checks that @instance is an instance of the type identified by @g_type - * and issues a warning if this is not the case. Returns @instance casted - * to a pointer to @c_type. - * - * This macro should only be used in type implementations. - */ -#define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type) (_G_TYPE_CIC ((instance), (g_type), c_type)) -/** - * G_TYPE_CHECK_INSTANCE_TYPE: - * @instance: Location of a #GTypeInstance structure. - * @g_type: The type to be checked - * - * Checks if @instance is an instance of the type identified by @g_type. - * - * This macro should only be used in type implementations. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type) (_G_TYPE_CIT ((instance), (g_type))) -/** - * G_TYPE_INSTANCE_GET_CLASS: - * @instance: Location of the #GTypeInstance structure. - * @g_type: The #GType of the class to be returned. - * @c_type: The C type of the class structure. - * - * Get the class structure of a given @instance, casted - * to a specified ancestor type @g_type of the instance. - * - * Note that while calling a GInstanceInitFunc(), the class pointer gets - * modified, so it might not always return the expected pointer. - * - * This macro should only be used in type implementations. - * - * Returns: a pointer to the class structure - */ -#define G_TYPE_INSTANCE_GET_CLASS(instance, g_type, c_type) (_G_TYPE_IGC ((instance), (g_type), c_type)) -/** - * G_TYPE_INSTANCE_GET_INTERFACE: - * @instance: Location of the #GTypeInstance structure. - * @g_type: The #GType of the interface to be returned. - * @c_type: The C type of the interface structure. - * - * Get the interface structure for interface @g_type of a given @instance. - * - * This macro should only be used in type implementations. - * - * Returns: a pointer to the interface structure - */ -#define G_TYPE_INSTANCE_GET_INTERFACE(instance, g_type, c_type) (_G_TYPE_IGI ((instance), (g_type), c_type)) -/** - * G_TYPE_CHECK_CLASS_CAST: - * @g_class: Location of a #GTypeClass structure. - * @g_type: The type to be returned. - * @c_type: The corresponding C type of class structure of @g_type. - * - * Checks that @g_class is a class structure of the type identified by @g_type - * and issues a warning if this is not the case. Returns @g_class casted - * to a pointer to @c_type. - * - * This macro should only be used in type implementations. - */ -#define G_TYPE_CHECK_CLASS_CAST(g_class, g_type, c_type) (_G_TYPE_CCC ((g_class), (g_type), c_type)) -/** - * G_TYPE_CHECK_CLASS_TYPE: - * @g_class: Location of a #GTypeClass structure. - * @g_type: The type to be checked. - * - * Checks if @g_class is a class structure of the type identified by - * @g_type. - * - * This macro should only be used in type implementations. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_CHECK_CLASS_TYPE(g_class, g_type) (_G_TYPE_CCT ((g_class), (g_type))) -/** - * G_TYPE_CHECK_VALUE: - * @value: a #GValue - * - * Checks if @value has been initialized to hold values - * of a value type. - * - * This macro should only be used in type implementations. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_CHECK_VALUE(value) (_G_TYPE_CHV ((value))) -/** - * G_TYPE_CHECK_VALUE_TYPE: - * @value: a #GValue - * @g_type: The type to be checked. - * - * Checks if @value has been initialized to hold values - * of type @g_type. - * - * This macro should only be used in type implementations. - * - * Returns: %TRUE on success. - */ -#define G_TYPE_CHECK_VALUE_TYPE(value, g_type) (_G_TYPE_CVH ((value), (g_type))) -/** - * G_TYPE_FROM_INSTANCE: - * @instance: Location of a valid #GTypeInstance structure. - * - * Get the type identifier from a given @instance structure. - * - * This macro should only be used in type implementations. - * - * Returns: the #GType - */ -#define G_TYPE_FROM_INSTANCE(instance) (G_TYPE_FROM_CLASS (((GTypeInstance*) (instance))->g_class)) -/** - * G_TYPE_FROM_CLASS: - * @g_class: Location of a valid #GTypeClass structure. - * - * Get the type identifier from a given @class structure. - * - * This macro should only be used in type implementations. - * - * Returns: the #GType - */ -#define G_TYPE_FROM_CLASS(g_class) (((GTypeClass*) (g_class))->g_type) -/** - * G_TYPE_FROM_INTERFACE: - * @g_iface: Location of a valid #GTypeInterface structure. - * - * Get the type identifier from a given @interface structure. - * - * This macro should only be used in type implementations. - * - * Returns: the #GType - */ -#define G_TYPE_FROM_INTERFACE(g_iface) (((GTypeInterface*) (g_iface))->g_type) - -/** - * G_TYPE_INSTANCE_GET_PRIVATE: - * @instance: the instance of a type deriving from @private_type. - * @g_type: the type identifying which private data to retrieve. - * @c_type: The C type for the private structure. - * - * Gets the private structure for a particular type. - * The private structure must have been registered in the - * class_init function with g_type_class_add_private(). - * - * This macro should only be used in type implementations. - * - * Since: 2.4 - * Returns: a pointer to the private data structure. - */ -#define G_TYPE_INSTANCE_GET_PRIVATE(instance, g_type, c_type) ((c_type*) g_type_instance_get_private ((GTypeInstance*) (instance), (g_type))) - -/** - * G_TYPE_CLASS_GET_PRIVATE: - * @klass: the class of a type deriving from @private_type. - * @g_type: the type identifying which private data to retrieve. - * @c_type: The C type for the private structure. - * - * Gets the private class structure for a particular type. - * The private structure must have been registered in the - * get_type() function with g_type_add_class_private(). - * - * This macro should only be used in type implementations. - * - * Since: 2.24 - * Returns: a pointer to the private data structure. - */ -#define G_TYPE_CLASS_GET_PRIVATE(klass, g_type, c_type) ((c_type*) g_type_class_get_private ((GTypeClass*) (klass), (g_type))) - -/** - * GTypeDebugFlags: - * @G_TYPE_DEBUG_NONE: Print no messages. - * @G_TYPE_DEBUG_OBJECTS: Print messages about object bookkeeping. - * @G_TYPE_DEBUG_SIGNALS: Print messages about signal emissions. - * @G_TYPE_DEBUG_MASK: Mask covering all debug flags. - * - * These flags used to be passed to g_type_init_with_debug_flags() which - * is now deprecated. - * - * If you need to enable debugging features, use the GOBJECT_DEBUG - * environment variable. - * - * Deprecated: 2.36: g_type_init() is now done automatically - */ -typedef enum /*< skip >*/ -{ - G_TYPE_DEBUG_NONE = 0, - G_TYPE_DEBUG_OBJECTS = 1 << 0, - G_TYPE_DEBUG_SIGNALS = 1 << 1, - G_TYPE_DEBUG_MASK = 0x03 -} GTypeDebugFlags; - - -/* --- prototypes --- */ -GLIB_DEPRECATED_IN_2_36 -void g_type_init (void); -GLIB_DEPRECATED_IN_2_36 -void g_type_init_with_debug_flags (GTypeDebugFlags debug_flags); -GLIB_AVAILABLE_IN_ALL -const gchar * g_type_name (GType type); -GLIB_AVAILABLE_IN_ALL -GQuark g_type_qname (GType type); -GLIB_AVAILABLE_IN_ALL -GType g_type_from_name (const gchar *name); -GLIB_AVAILABLE_IN_ALL -GType g_type_parent (GType type); -GLIB_AVAILABLE_IN_ALL -guint g_type_depth (GType type); -GLIB_AVAILABLE_IN_ALL -GType g_type_next_base (GType leaf_type, - GType root_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_type_is_a (GType type, - GType is_a_type); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_class_ref (GType type); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_class_peek (GType type); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_class_peek_static (GType type); -GLIB_AVAILABLE_IN_ALL -void g_type_class_unref (gpointer g_class); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_class_peek_parent (gpointer g_class); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_interface_peek (gpointer instance_class, - GType iface_type); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_interface_peek_parent (gpointer g_iface); - -GLIB_AVAILABLE_IN_ALL -gpointer g_type_default_interface_ref (GType g_type); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_default_interface_peek (GType g_type); -GLIB_AVAILABLE_IN_ALL -void g_type_default_interface_unref (gpointer g_iface); - -/* g_free() the returned arrays */ -GLIB_AVAILABLE_IN_ALL -GType* g_type_children (GType type, - guint *n_children); -GLIB_AVAILABLE_IN_ALL -GType* g_type_interfaces (GType type, - guint *n_interfaces); - -/* per-type _static_ data */ -GLIB_AVAILABLE_IN_ALL -void g_type_set_qdata (GType type, - GQuark quark, - gpointer data); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_get_qdata (GType type, - GQuark quark); -GLIB_AVAILABLE_IN_ALL -void g_type_query (GType type, - GTypeQuery *query); - - -/* --- type registration --- */ -/** - * GBaseInitFunc: - * @g_class: The #GTypeClass structure to initialize. - * - * A callback function used by the type system to do base initialization - * of the class structures of derived types. It is called as part of the - * initialization process of all derived classes and should reallocate - * or reset all dynamic class members copied over from the parent class. - * For example, class members (such as strings) that are not sufficiently - * handled by a plain memory copy of the parent class into the derived class - * have to be altered. See GClassInitFunc() for a discussion of the class - * intialization process. - */ -typedef void (*GBaseInitFunc) (gpointer g_class); -/** - * GBaseFinalizeFunc: - * @g_class: The #GTypeClass structure to finalize. - * - * A callback function used by the type system to finalize those portions - * of a derived types class structure that were setup from the corresponding - * GBaseInitFunc() function. Class finalization basically works the inverse - * way in which class intialization is performed. - * See GClassInitFunc() for a discussion of the class intialization process. - */ -typedef void (*GBaseFinalizeFunc) (gpointer g_class); -/** - * GClassInitFunc: - * @g_class: The #GTypeClass structure to initialize. - * @class_data: The @class_data member supplied via the #GTypeInfo structure. - * - * A callback function used by the type system to initialize the class - * of a specific type. This function should initialize all static class - * members. - * The initialization process of a class involves: - * - * - * 1 - Copying common members from the parent class over to the - * derived class structure. - * - * - * 2 - Zero initialization of the remaining members not copied - * over from the parent class. - * - * - * 3 - Invocation of the GBaseInitFunc() initializers of all parent - * types and the class' type. - * - * - * 4 - Invocation of the class' GClassInitFunc() initializer. - * - * - * Since derived classes are partially initialized through a memory copy - * of the parent class, the general rule is that GBaseInitFunc() and - * GBaseFinalizeFunc() should take care of necessary reinitialization - * and release of those class members that were introduced by the type - * that specified these GBaseInitFunc()/GBaseFinalizeFunc(). - * GClassInitFunc() should only care about initializing static - * class members, while dynamic class members (such as allocated strings - * or reference counted resources) are better handled by a GBaseInitFunc() - * for this type, so proper initialization of the dynamic class members - * is performed for class initialization of derived types as well. - * An example may help to correspond the intend of the different class - * initializers: - * - * |[ - * typedef struct { - * GObjectClass parent_class; - * gint static_integer; - * gchar *dynamic_string; - * } TypeAClass; - * static void - * type_a_base_class_init (TypeAClass *class) - * { - * class->dynamic_string = g_strdup ("some string"); - * } - * static void - * type_a_base_class_finalize (TypeAClass *class) - * { - * g_free (class->dynamic_string); - * } - * static void - * type_a_class_init (TypeAClass *class) - * { - * class->static_integer = 42; - * } - * - * typedef struct { - * TypeAClass parent_class; - * gfloat static_float; - * GString *dynamic_gstring; - * } TypeBClass; - * static void - * type_b_base_class_init (TypeBClass *class) - * { - * class->dynamic_gstring = g_string_new ("some other string"); - * } - * static void - * type_b_base_class_finalize (TypeBClass *class) - * { - * g_string_free (class->dynamic_gstring); - * } - * static void - * type_b_class_init (TypeBClass *class) - * { - * class->static_float = 3.14159265358979323846; - * } - * ]| - * Initialization of TypeBClass will first cause initialization of - * TypeAClass (derived classes reference their parent classes, see - * g_type_class_ref() on this). - * Initialization of TypeAClass roughly involves zero-initializing its fields, - * then calling its GBaseInitFunc() type_a_base_class_init() to allocate - * its dynamic members (dynamic_string), and finally calling its GClassInitFunc() - * type_a_class_init() to initialize its static members (static_integer). - * The first step in the initialization process of TypeBClass is then - * a plain memory copy of the contents of TypeAClass into TypeBClass and - * zero-initialization of the remaining fields in TypeBClass. - * The dynamic members of TypeAClass within TypeBClass now need - * reinitialization which is performed by calling type_a_base_class_init() - * with an argument of TypeBClass. - * After that, the GBaseInitFunc() of TypeBClass, type_b_base_class_init() - * is called to allocate the dynamic members of TypeBClass (dynamic_gstring), - * and finally the GClassInitFunc() of TypeBClass, type_b_class_init(), - * is called to complete the initialization process with the static members - * (static_float). - * Corresponding finalization counter parts to the GBaseInitFunc() functions - * have to be provided to release allocated resources at class finalization - * time. - */ -typedef void (*GClassInitFunc) (gpointer g_class, - gpointer class_data); -/** - * GClassFinalizeFunc: - * @g_class: The #GTypeClass structure to finalize. - * @class_data: The @class_data member supplied via the #GTypeInfo structure. - * - * A callback function used by the type system to finalize a class. - * This function is rarely needed, as dynamically allocated class resources - * should be handled by GBaseInitFunc() and GBaseFinalizeFunc(). - * Also, specification of a GClassFinalizeFunc() in the #GTypeInfo - * structure of a static type is invalid, because classes of static types - * will never be finalized (they are artificially kept alive when their - * reference count drops to zero). - */ -typedef void (*GClassFinalizeFunc) (gpointer g_class, - gpointer class_data); -/** - * GInstanceInitFunc: - * @instance: The instance to initialize. - * @g_class: The class of the type the instance is created for. - * - * A callback function used by the type system to initialize a new - * instance of a type. This function initializes all instance members and - * allocates any resources required by it. - * Initialization of a derived instance involves calling all its parent - * types instance initializers, so the class member of the instance - * is altered during its initialization to always point to the class that - * belongs to the type the current initializer was introduced for. - */ -typedef void (*GInstanceInitFunc) (GTypeInstance *instance, - gpointer g_class); -/** - * GInterfaceInitFunc: - * @g_iface: The interface structure to initialize. - * @iface_data: The @interface_data supplied via the #GInterfaceInfo structure. - * - * A callback function used by the type system to initialize a new - * interface. This function should initialize all internal data and - * allocate any resources required by the interface. - */ -typedef void (*GInterfaceInitFunc) (gpointer g_iface, - gpointer iface_data); -/** - * GInterfaceFinalizeFunc: - * @g_iface: The interface structure to finalize. - * @iface_data: The @interface_data supplied via the #GInterfaceInfo structure. - * - * A callback function used by the type system to finalize an interface. - * This function should destroy any internal data and release any resources - * allocated by the corresponding GInterfaceInitFunc() function. - */ -typedef void (*GInterfaceFinalizeFunc) (gpointer g_iface, - gpointer iface_data); -/** - * GTypeClassCacheFunc: - * @cache_data: data that was given to the g_type_add_class_cache_func() call - * @g_class: The #GTypeClass structure which is unreferenced - * - * A callback function which is called when the reference count of a class - * drops to zero. It may use g_type_class_ref() to prevent the class from - * being freed. You should not call g_type_class_unref() from a - * #GTypeClassCacheFunc function to prevent infinite recursion, use - * g_type_class_unref_uncached() instead. - * - * The functions have to check the class id passed in to figure - * whether they actually want to cache the class of this type, since all - * classes are routed through the same #GTypeClassCacheFunc chain. - * - * Returns: %TRUE to stop further #GTypeClassCacheFuncs from being - * called, %FALSE to continue. - */ -typedef gboolean (*GTypeClassCacheFunc) (gpointer cache_data, - GTypeClass *g_class); -/** - * GTypeInterfaceCheckFunc: - * @check_data: data passed to g_type_add_interface_check(). - * @g_iface: the interface that has been initialized - * - * A callback called after an interface vtable is initialized. - * See g_type_add_interface_check(). - * - * Since: 2.4 - */ -typedef void (*GTypeInterfaceCheckFunc) (gpointer check_data, - gpointer g_iface); -/** - * GTypeFundamentalFlags: - * @G_TYPE_FLAG_CLASSED: Indicates a classed type. - * @G_TYPE_FLAG_INSTANTIATABLE: Indicates an instantiable type (implies classed). - * @G_TYPE_FLAG_DERIVABLE: Indicates a flat derivable type. - * @G_TYPE_FLAG_DEEP_DERIVABLE: Indicates a deep derivable type (implies derivable). - * - * Bit masks used to check or determine specific characteristics of a - * fundamental type. - */ -typedef enum /*< skip >*/ -{ - G_TYPE_FLAG_CLASSED = (1 << 0), - G_TYPE_FLAG_INSTANTIATABLE = (1 << 1), - G_TYPE_FLAG_DERIVABLE = (1 << 2), - G_TYPE_FLAG_DEEP_DERIVABLE = (1 << 3) -} GTypeFundamentalFlags; -/** - * GTypeFlags: - * @G_TYPE_FLAG_ABSTRACT: Indicates an abstract type. No instances can be - * created for an abstract type. - * @G_TYPE_FLAG_VALUE_ABSTRACT: Indicates an abstract value type, i.e. a type - * that introduces a value table, but can't be used for - * g_value_init(). - * - * Bit masks used to check or determine characteristics of a type. - */ -typedef enum /*< skip >*/ -{ - G_TYPE_FLAG_ABSTRACT = (1 << 4), - G_TYPE_FLAG_VALUE_ABSTRACT = (1 << 5) -} GTypeFlags; -/** - * GTypeInfo: - * @class_size: Size of the class structure (required for interface, classed and instantiatable types). - * @base_init: Location of the base initialization function (optional). - * @base_finalize: Location of the base finalization function (optional). - * @class_init: Location of the class initialization function for - * classed and instantiatable types. Location of the default vtable - * inititalization function for interface types. (optional) This function - * is used both to fill in virtual functions in the class or default vtable, - * and to do type-specific setup such as registering signals and object - * properties. - * @class_finalize: Location of the class finalization function for - * classed and instantiatable types. Location fo the default vtable - * finalization function for interface types. (optional) - * @class_data: User-supplied data passed to the class init/finalize functions. - * @instance_size: Size of the instance (object) structure (required for instantiatable types only). - * @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the slice allocator now. - * @instance_init: Location of the instance initialization function (optional, for instantiatable types only). - * @value_table: A #GTypeValueTable function table for generic handling of GValues of this type (usually only - * useful for fundamental types). - * - * This structure is used to provide the type system with the information - * required to initialize and destruct (finalize) a type's class and - * its instances. - * The initialized structure is passed to the g_type_register_static() function - * (or is copied into the provided #GTypeInfo structure in the - * g_type_plugin_complete_type_info()). The type system will perform a deep - * copy of this structure, so its memory does not need to be persistent - * across invocation of g_type_register_static(). - */ -struct _GTypeInfo -{ - /* interface types, classed types, instantiated types */ - guint16 class_size; - - GBaseInitFunc base_init; - GBaseFinalizeFunc base_finalize; - - /* interface types, classed types, instantiated types */ - GClassInitFunc class_init; - GClassFinalizeFunc class_finalize; - gconstpointer class_data; - - /* instantiated types */ - guint16 instance_size; - guint16 n_preallocs; - GInstanceInitFunc instance_init; - - /* value handling */ - const GTypeValueTable *value_table; -}; -/** - * GTypeFundamentalInfo: - * @type_flags: #GTypeFundamentalFlags describing the characteristics of the fundamental type - * - * A structure that provides information to the type system which is - * used specifically for managing fundamental types. - */ -struct _GTypeFundamentalInfo -{ - GTypeFundamentalFlags type_flags; -}; -/** - * GInterfaceInfo: - * @interface_init: location of the interface initialization function - * @interface_finalize: location of the interface finalization function - * @interface_data: user-supplied data passed to the interface init/finalize functions - * - * A structure that provides information to the type system which is - * used specifically for managing interface types. - */ -struct _GInterfaceInfo -{ - GInterfaceInitFunc interface_init; - GInterfaceFinalizeFunc interface_finalize; - gpointer interface_data; -}; -/** - * GTypeValueTable: - * @value_init: Default initialize @values contents by poking values - * directly into the value->data array. The data array of - * the #GValue passed into this function was zero-filled - * with memset(), so no care has to - * be taken to free any - * old contents. E.g. for the implementation of a string - * value that may never be %NULL, the implementation might - * look like: - * |[ - * value->data[0].v_pointer = g_strdup (""); - * ]| - * @value_free: Free any old contents that might be left in the - * data array of the passed in @value. No resources may - * remain allocated through the #GValue contents after - * this function returns. E.g. for our above string type: - * |[ - * // only free strings without a specific flag for static storage - * if (!(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS)) - * g_free (value->data[0].v_pointer); - * ]| - * @value_copy: @dest_value is a #GValue with zero-filled data section - * and @src_value is a properly setup #GValue of same or - * derived type. - * The purpose of this function is to copy the contents of - * @src_value into @dest_value in a way, that even after - * @src_value has been freed, the contents of @dest_value - * remain valid. String type example: - * |[ - * dest_value->data[0].v_pointer = g_strdup (src_value->data[0].v_pointer); - * ]| - * @value_peek_pointer: If the value contents fit into a pointer, such as objects - * or strings, return this pointer, so the caller can peek at - * the current contents. To extend on our above string example: - * |[ - * return value->data[0].v_pointer; - * ]| - * @collect_format: A string format describing how to collect the contents of - * this value bit-by-bit. Each character in the format represents - * an argument to be collected, and the characters themselves indicate - * the type of the argument. Currently supported arguments are: - * - * - * 'i' - Integers. passed as collect_values[].v_int. - * - * - * 'l' - Longs. passed as collect_values[].v_long. - * - * - * 'd' - Doubles. passed as collect_values[].v_double. - * - * - * 'p' - Pointers. passed as collect_values[].v_pointer. - * - * - * It should be noted that for variable argument list construction, - * ANSI C promotes every type smaller than an integer to an int, and - * floats to doubles. So for collection of short int or char, 'i' - * needs to be used, and for collection of floats 'd'. - * @collect_value: The collect_value() function is responsible for converting the - * values collected from a variable argument list into contents - * suitable for storage in a GValue. This function should setup - * @value similar to value_init(); e.g. for a string value that - * does not allow %NULL pointers, it needs to either spew an error, - * or do an implicit conversion by storing an empty string. - * The @value passed in to this function has a zero-filled data - * array, so just like for value_init() it is guaranteed to not - * contain any old contents that might need freeing. - * @n_collect_values is exactly the string length of @collect_format, - * and @collect_values is an array of unions #GTypeCValue with - * length @n_collect_values, containing the collected values - * according to @collect_format. - * @collect_flags is an argument provided as a hint by the caller. - * It may contain the flag %G_VALUE_NOCOPY_CONTENTS indicating, - * that the collected value contents may be considered "static" - * for the duration of the @value lifetime. - * Thus an extra copy of the contents stored in @collect_values is - * not required for assignment to @value. - * For our above string example, we continue with: - * |[ - * if (!collect_values[0].v_pointer) - * value->data[0].v_pointer = g_strdup (""); - * else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) - * { - * value->data[0].v_pointer = collect_values[0].v_pointer; - * // keep a flag for the value_free() implementation to not free this string - * value->data[1].v_uint = G_VALUE_NOCOPY_CONTENTS; - * } - * else - * value->data[0].v_pointer = g_strdup (collect_values[0].v_pointer); - * return NULL; - * ]| - * It should be noted, that it is generally a bad idea to follow the - * #G_VALUE_NOCOPY_CONTENTS hint for reference counted types. Due to - * reentrancy requirements and reference count assertions performed - * by the signal emission code, reference counts should always be - * incremented for reference counted contents stored in the value->data - * array. To deviate from our string example for a moment, and taking - * a look at an exemplary implementation for collect_value() of - * #GObject: - * |[ - * if (collect_values[0].v_pointer) - * { - * GObject *object = G_OBJECT (collect_values[0].v_pointer); - * // never honour G_VALUE_NOCOPY_CONTENTS for ref-counted types - * value->data[0].v_pointer = g_object_ref (object); - * return NULL; - * } - * else - * return g_strdup_printf ("Object passed as invalid NULL pointer"); - * } - * ]| - * The reference count for valid objects is always incremented, - * regardless of @collect_flags. For invalid objects, the example - * returns a newly allocated string without altering @value. - * Upon success, collect_value() needs to return %NULL. If, however, - * an error condition occurred, collect_value() may spew an - * error by returning a newly allocated non-%NULL string, giving - * a suitable description of the error condition. - * The calling code makes no assumptions about the @value - * contents being valid upon error returns, @value - * is simply thrown away without further freeing. As such, it is - * a good idea to not allocate #GValue contents, prior to returning - * an error, however, collect_values() is not obliged to return - * a correctly setup @value for error returns, simply because - * any non-%NULL return is considered a fatal condition so further - * program behaviour is undefined. - * @lcopy_format: Format description of the arguments to collect for @lcopy_value, - * analogous to @collect_format. Usually, @lcopy_format string consists - * only of 'p's to provide lcopy_value() with pointers to storage locations. - * @lcopy_value: This function is responsible for storing the @value contents into - * arguments passed through a variable argument list which got - * collected into @collect_values according to @lcopy_format. - * @n_collect_values equals the string length of @lcopy_format, - * and @collect_flags may contain %G_VALUE_NOCOPY_CONTENTS. - * In contrast to collect_value(), lcopy_value() is obliged to - * always properly support %G_VALUE_NOCOPY_CONTENTS. - * Similar to collect_value() the function may prematurely abort - * by returning a newly allocated string describing an error condition. - * To complete the string example: - * |[ - * gchar **string_p = collect_values[0].v_pointer; - * if (!string_p) - * return g_strdup_printf ("string location passed as NULL"); - * if (collect_flags & G_VALUE_NOCOPY_CONTENTS) - * *string_p = value->data[0].v_pointer; - * else - * *string_p = g_strdup (value->data[0].v_pointer); - * ]| - * And an illustrative version of lcopy_value() for - * reference-counted types: - * |[ - * GObject **object_p = collect_values[0].v_pointer; - * if (!object_p) - * return g_strdup_printf ("object location passed as NULL"); - * if (!value->data[0].v_pointer) - * *object_p = NULL; - * else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) /* always honour */ - * *object_p = value->data[0].v_pointer; - * else - * *object_p = g_object_ref (value->data[0].v_pointer); - * return NULL; - * ]| - * - * The #GTypeValueTable provides the functions required by the #GValue implementation, - * to serve as a container for values of a type. - */ - -struct _GTypeValueTable -{ - void (*value_init) (GValue *value); - void (*value_free) (GValue *value); - void (*value_copy) (const GValue *src_value, - GValue *dest_value); - /* varargs functionality (optional) */ - gpointer (*value_peek_pointer) (const GValue *value); - const gchar *collect_format; - gchar* (*collect_value) (GValue *value, - guint n_collect_values, - GTypeCValue *collect_values, - guint collect_flags); - const gchar *lcopy_format; - gchar* (*lcopy_value) (const GValue *value, - guint n_collect_values, - GTypeCValue *collect_values, - guint collect_flags); -}; -GLIB_AVAILABLE_IN_ALL -GType g_type_register_static (GType parent_type, - const gchar *type_name, - const GTypeInfo *info, - GTypeFlags flags); -GLIB_AVAILABLE_IN_ALL -GType g_type_register_static_simple (GType parent_type, - const gchar *type_name, - guint class_size, - GClassInitFunc class_init, - guint instance_size, - GInstanceInitFunc instance_init, - GTypeFlags flags); - -GLIB_AVAILABLE_IN_ALL -GType g_type_register_dynamic (GType parent_type, - const gchar *type_name, - GTypePlugin *plugin, - GTypeFlags flags); -GLIB_AVAILABLE_IN_ALL -GType g_type_register_fundamental (GType type_id, - const gchar *type_name, - const GTypeInfo *info, - const GTypeFundamentalInfo *finfo, - GTypeFlags flags); -GLIB_AVAILABLE_IN_ALL -void g_type_add_interface_static (GType instance_type, - GType interface_type, - const GInterfaceInfo *info); -GLIB_AVAILABLE_IN_ALL -void g_type_add_interface_dynamic (GType instance_type, - GType interface_type, - GTypePlugin *plugin); -GLIB_AVAILABLE_IN_ALL -void g_type_interface_add_prerequisite (GType interface_type, - GType prerequisite_type); -GLIB_AVAILABLE_IN_ALL -GType*g_type_interface_prerequisites (GType interface_type, - guint *n_prerequisites); -GLIB_AVAILABLE_IN_ALL -void g_type_class_add_private (gpointer g_class, - gsize private_size); -GLIB_AVAILABLE_IN_2_38 -gint g_type_add_instance_private (GType class_type, - gsize private_size); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_instance_get_private (GTypeInstance *instance, - GType private_type); -GLIB_AVAILABLE_IN_2_38 -void g_type_class_adjust_private_offset (gpointer g_class, - gint *private_size_or_offset); - -GLIB_AVAILABLE_IN_ALL -void g_type_add_class_private (GType class_type, - gsize private_size); -GLIB_AVAILABLE_IN_ALL -gpointer g_type_class_get_private (GTypeClass *klass, - GType private_type); -GLIB_AVAILABLE_IN_2_38 -gint g_type_class_get_instance_private_offset (gpointer g_class); - -GLIB_AVAILABLE_IN_2_34 -void g_type_ensure (GType type); -GLIB_AVAILABLE_IN_2_36 -guint g_type_get_type_registration_serial (void); - - -/* --- GType boilerplate --- */ -/** - * G_DEFINE_TYPE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * - * A convenience macro for type implementations, which declares a - * class initialization function, an instance initialization function (see #GTypeInfo for information about - * these) and a static variable named @t_n_parent_class pointing to the parent class. Furthermore, it defines - * a *_get_type() function. See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Since: 2.4 - */ -#define G_DEFINE_TYPE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, {}) -/** - * G_DEFINE_TYPE_WITH_CODE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type in lowercase, with words separated by '_'. - * @T_P: The #GType of the parent type. - * @_C_: Custom code that gets inserted in the *_get_type() function. - * - * A convenience macro for type implementations. - * Similar to G_DEFINE_TYPE(), but allows you to insert custom code into the - * *_get_type() function, e.g. interface implementations via G_IMPLEMENT_INTERFACE(). - * See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Since: 2.4 - */ -#define G_DEFINE_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, 0) {_C_;} _G_DEFINE_TYPE_EXTENDED_END() -/** - * G_DEFINE_TYPE_WITH_PRIVATE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * - * A convenience macro for type implementations, which declares a - * class initialization function, an instance initialization function (see #GTypeInfo for information about - * these), a static variable named @t_n_parent_class pointing to the parent class, and adds private - * instance data to the type. Furthermore, it defines a *_get_type() function. See G_DEFINE_TYPE_EXTENDED() - * for an example. - * - * Note that private structs added with this macros must have a struct - * name of the form @TNPrivate. - * - * Since: 2.38 - */ -#define G_DEFINE_TYPE_WITH_PRIVATE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, 0, G_ADD_PRIVATE (TN)) -/** - * G_DEFINE_ABSTRACT_TYPE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * - * A convenience macro for type implementations. - * Similar to G_DEFINE_TYPE(), but defines an abstract type. - * See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Since: 2.4 - */ -#define G_DEFINE_ABSTRACT_TYPE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, {}) -/** - * G_DEFINE_ABSTRACT_TYPE_WITH_CODE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * @_C_: Custom code that gets inserted in the @type_name_get_type() function. - * - * A convenience macro for type implementations. - * Similar to G_DEFINE_TYPE_WITH_CODE(), but defines an abstract type and allows you to - * insert custom code into the *_get_type() function, e.g. interface implementations - * via G_IMPLEMENT_INTERFACE(). See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Since: 2.4 - */ -#define G_DEFINE_ABSTRACT_TYPE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT) {_C_;} _G_DEFINE_TYPE_EXTENDED_END() -/** - * G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * - * Similar to G_DEFINE_TYPE_WITH_PRIVATE(), but defines an abstract type. - * See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Since: 2.38 - */ -#define G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(TN, t_n, T_P) G_DEFINE_TYPE_EXTENDED (TN, t_n, T_P, G_TYPE_FLAG_ABSTRACT, G_ADD_PRIVATE (TN)) -/** - * G_DEFINE_TYPE_EXTENDED: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * @_f_: #GTypeFlags to pass to g_type_register_static() - * @_C_: Custom code that gets inserted in the *_get_type() function. - * - * The most general convenience macro for type implementations, on which - * G_DEFINE_TYPE(), etc are based. - * - * |[ - * G_DEFINE_TYPE_EXTENDED (GtkGadget, - * gtk_gadget, - * GTK_TYPE_WIDGET, - * 0, - * G_IMPLEMENT_INTERFACE (TYPE_GIZMO, - * gtk_gadget_gizmo_init)); - * ]| - * expands to - * |[ - * static void gtk_gadget_init (GtkGadget *self); - * static void gtk_gadget_class_init (GtkGadgetClass *klass); - * static gpointer gtk_gadget_parent_class = NULL; - * static void gtk_gadget_class_intern_init (gpointer klass) - * { - * gtk_gadget_parent_class = g_type_class_peek_parent (klass); - * gtk_gadget_class_init ((GtkGadgetClass*) klass); - * } - * - * GType - * gtk_gadget_get_type (void) - * { - * static volatile gsize g_define_type_id__volatile = 0; - * if (g_once_init_enter (&g_define_type_id__volatile)) - * { - * GType g_define_type_id = - * g_type_register_static_simple (GTK_TYPE_WIDGET, - * g_intern_static_string ("GtkGadget"), - * sizeof (GtkGadgetClass), - * (GClassInitFunc) gtk_gadget_class_intern_init, - * sizeof (GtkGadget), - * (GInstanceInitFunc) gtk_gadget_init, - * 0); - * { - * const GInterfaceInfo g_implement_interface_info = { - * (GInterfaceInitFunc) gtk_gadget_gizmo_init - * }; - * g_type_add_interface_static (g_define_type_id, TYPE_GIZMO, &g_implement_interface_info); - * } - * g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); - * } - * return g_define_type_id__volatile; - * } - * ]| - * The only pieces which have to be manually provided are the definitions of - * the instance and class structure and the definitions of the instance and - * class init functions. - * - * Since: 2.4 - */ -#define G_DEFINE_TYPE_EXTENDED(TN, t_n, T_P, _f_, _C_) _G_DEFINE_TYPE_EXTENDED_BEGIN (TN, t_n, T_P, _f_) {_C_;} _G_DEFINE_TYPE_EXTENDED_END() - -/** - * G_DEFINE_INTERFACE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words separated by '_'. - * @T_P: The #GType of the prerequisite type for the interface, or 0 - * (%G_TYPE_INVALID) for no prerequisite type. - * - * A convenience macro for #GTypeInterface definitions, which declares - * a default vtable initialization function and defines a *_get_type() - * function. - * - * The macro expects the interface initialization function to have the - * name t_n ## _default_init, and the interface - * structure to have the name TN ## Interface. - * - * Since: 2.24 - */ -#define G_DEFINE_INTERFACE(TN, t_n, T_P) G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, ;) - -/** - * G_DEFINE_INTERFACE_WITH_CODE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words separated by '_'. - * @T_P: The #GType of the prerequisite type for the interface, or 0 - * (%G_TYPE_INVALID) for no prerequisite type. - * @_C_: Custom code that gets inserted in the *_get_type() function. - * - * A convenience macro for #GTypeInterface definitions. Similar to - * G_DEFINE_INTERFACE(), but allows you to insert custom code into the - * *_get_type() function, e.g. additional interface implementations - * via G_IMPLEMENT_INTERFACE(), or additional prerequisite types. See - * G_DEFINE_TYPE_EXTENDED() for a similar example using - * G_DEFINE_TYPE_WITH_CODE(). - * - * Since: 2.24 - */ -#define G_DEFINE_INTERFACE_WITH_CODE(TN, t_n, T_P, _C_) _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TN, t_n, T_P) {_C_;} _G_DEFINE_INTERFACE_EXTENDED_END() - -/** - * G_IMPLEMENT_INTERFACE: - * @TYPE_IFACE: The #GType of the interface to add - * @iface_init: The interface init function - * - * A convenience macro to ease interface addition in the @_C_ section - * of G_DEFINE_TYPE_WITH_CODE() or G_DEFINE_ABSTRACT_TYPE_WITH_CODE(). - * See G_DEFINE_TYPE_EXTENDED() for an example. - * - * Note that this macro can only be used together with the G_DEFINE_TYPE_* - * macros, since it depends on variable names from those macros. - * - * Since: 2.4 - */ -#define G_IMPLEMENT_INTERFACE(TYPE_IFACE, iface_init) { \ - const GInterfaceInfo g_implement_interface_info = { \ - (GInterfaceInitFunc) iface_init, NULL, NULL \ - }; \ - g_type_add_interface_static (g_define_type_id, TYPE_IFACE, &g_implement_interface_info); \ -} - -/** - * G_ADD_PRIVATE: - * @TypeName: the name of the type in CamelCase - * - * A convenience macro to ease adding private data to instances of a new type - * in the @_C_ section of G_DEFINE_TYPE_WITH_CODE() or - * G_DEFINE_ABSTRACT_TYPE_WITH_CODE(). - * - * For instance: - * - * |[ - * typedef struct _MyObject MyObject; - * typedef struct _MyObjectClass MyObjectClass; - * - * typedef struct { - * gint foo; - * gint bar; - * } MyObjectPrivate; - * - * G_DEFINE_TYPE_WITH_CODE (MyObject, my_object, G_TYPE_OBJECT, - * G_ADD_PRIVATE (MyObject)) - * ]| - * - * Will add MyObjectPrivate as the private data to any instance of the MyObject - * type. - * - * G_DEFINE_TYPE_* macros will automatically create a private function - * based on the arguments to this macro, which can be used to safely - * retrieve the private data from an instance of the type; for instance: - * - * |[ - * gint - * my_object_get_foo (MyObject *obj) - * { - * MyObjectPrivate *priv = my_object_get_instance_private (obj); - * - * return priv->foo; - * } - * - * void - * my_object_set_bar (MyObject *obj, - * gint bar) - * { - * MyObjectPrivate *priv = my_object_get_instance_private (obj); - * - * if (priv->bar != bar) - * priv->bar = bar; - * } - * ]| - * - * Note that this macro can only be used together with the G_DEFINE_TYPE_* - * macros, since it depends on variable names from those macros. - * - * Also note that private structs added with these macros must have a struct - * name of the form TypeNamePrivate. - * - * Since: 2.38 - */ -#define G_ADD_PRIVATE(TypeName) { \ - TypeName##_private_offset = \ - g_type_add_instance_private (g_define_type_id, sizeof (TypeName##Private)); \ -} - -/** - * G_PRIVATE_OFFSET: - * @TypeName: the name of the type in CamelCase - * @field: the name of the field in the private data structure - * - * Evaluates to the offset of the @field inside the instance private data - * structure for @TypeName. - * - * Note that this macro can only be used together with the G_DEFINE_TYPE_* - * and G_ADD_PRIVATE() macros, since it depends on variable names from - * those macros. - * - * Since: 2.38 - */ -#define G_PRIVATE_OFFSET(TypeName, field) \ - (TypeName##_private_offset + (G_STRUCT_OFFSET (TypeName##Private, field))) - -/** - * G_PRIVATE_FIELD_P: - * @TypeName: the name of the type in CamelCase - * @inst: the instance of @TypeName you wish to access - * @field_name: the name of the field in the private data structure - * - * Evaluates to a pointer to the @field_name inside the @inst private data - * structure for @TypeName. - * - * Note that this macro can only be used together with the G_DEFINE_TYPE_* - * and G_ADD_PRIVATE() macros, since it depends on variable names from - * those macros. - * - * Since: 2.38 - */ -#define G_PRIVATE_FIELD_P(TypeName, inst, field_name) \ - G_STRUCT_MEMBER_P (inst, G_PRIVATE_OFFSET (TypeName, field_name)) - -/** - * G_PRIVATE_FIELD: - * @TypeName: the name of the type in CamelCase - * @inst: the instance of @TypeName you wish to access - * @field_type: the type of the field in the private data structure - * @field_name: the name of the field in the private data structure - * - * Evaluates to the @field_name inside the @inst private data - * structure for @TypeName. - * - * Note that this macro can only be used together with the G_DEFINE_TYPE_* - * and G_ADD_PRIVATE() macros, since it depends on variable names from - * those macros. - * - * Since: 2.38 - */ -#define G_PRIVATE_FIELD(TypeName, inst, field_type, field_name) \ - G_STRUCT_MEMBER (field_type, inst, G_PRIVATE_OFFSET (TypeName, field_name)) - -/* we need to have this macro under conditional expansion, as it references - * a function that has been added in 2.38. see bug: - * https://bugzilla.gnome.org/show_bug.cgi?id=703191 - */ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -#define _G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \ -static void type_name##_class_intern_init (gpointer klass) \ -{ \ - type_name##_parent_class = g_type_class_peek_parent (klass); \ - if (TypeName##_private_offset != 0) \ - g_type_class_adjust_private_offset (klass, &TypeName##_private_offset); \ - type_name##_class_init ((TypeName##Class*) klass); \ -} - -#else -#define _G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \ -static void type_name##_class_intern_init (gpointer klass) \ -{ \ - type_name##_parent_class = g_type_class_peek_parent (klass); \ - type_name##_class_init ((TypeName##Class*) klass); \ -} -#endif /* GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 */ - -#define _G_DEFINE_TYPE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PARENT, flags) \ -\ -static void type_name##_init (TypeName *self); \ -static void type_name##_class_init (TypeName##Class *klass); \ -static gpointer type_name##_parent_class = NULL; \ -static gint TypeName##_private_offset; \ -\ -_G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \ -\ -static inline gpointer \ -type_name##_get_instance_private (TypeName *self) \ -{ \ - return (G_STRUCT_MEMBER_P (self, TypeName##_private_offset)); \ -} \ -\ -GType \ -type_name##_get_type (void) \ -{ \ - static volatile gsize g_define_type_id__volatile = 0; \ - if (g_once_init_enter (&g_define_type_id__volatile)) \ - { \ - GType g_define_type_id = \ - g_type_register_static_simple (TYPE_PARENT, \ - g_intern_static_string (#TypeName), \ - sizeof (TypeName##Class), \ - (GClassInitFunc) type_name##_class_intern_init, \ - sizeof (TypeName), \ - (GInstanceInitFunc) type_name##_init, \ - (GTypeFlags) flags); \ - { /* custom code follows */ -#define _G_DEFINE_TYPE_EXTENDED_END() \ - /* following custom code */ \ - } \ - g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \ - } \ - return g_define_type_id__volatile; \ -} /* closes type_name##_get_type() */ - -#define _G_DEFINE_INTERFACE_EXTENDED_BEGIN(TypeName, type_name, TYPE_PREREQ) \ -\ -static void type_name##_default_init (TypeName##Interface *klass); \ -\ -GType \ -type_name##_get_type (void) \ -{ \ - static volatile gsize g_define_type_id__volatile = 0; \ - if (g_once_init_enter (&g_define_type_id__volatile)) \ - { \ - GType g_define_type_id = \ - g_type_register_static_simple (G_TYPE_INTERFACE, \ - g_intern_static_string (#TypeName), \ - sizeof (TypeName##Interface), \ - (GClassInitFunc)type_name##_default_init, \ - 0, \ - (GInstanceInitFunc)NULL, \ - (GTypeFlags) 0); \ - if (TYPE_PREREQ) \ - g_type_interface_add_prerequisite (g_define_type_id, TYPE_PREREQ); \ - { /* custom code follows */ -#define _G_DEFINE_INTERFACE_EXTENDED_END() \ - /* following custom code */ \ - } \ - g_once_init_leave (&g_define_type_id__volatile, g_define_type_id); \ - } \ - return g_define_type_id__volatile; \ -} /* closes type_name##_get_type() */ - -/** - * G_DEFINE_BOXED_TYPE: - * @TypeName: The name of the new type, in Camel case. - * @type_name: The name of the new type, in lowercase, with words - * separated by '_'. - * @copy_func: the #GBoxedCopyFunc for the new type - * @free_func: the #GBoxedFreeFunc for the new type - * - * A convenience macro for boxed type implementations, which defines a - * type_name_get_type() function registering the boxed type. - * - * Since: 2.26 - */ -#define G_DEFINE_BOXED_TYPE(TypeName, type_name, copy_func, free_func) G_DEFINE_BOXED_TYPE_WITH_CODE (TypeName, type_name, copy_func, free_func, {}) -/** - * G_DEFINE_BOXED_TYPE_WITH_CODE: - * @TypeName: The name of the new type, in Camel case. - * @type_name: The name of the new type, in lowercase, with words - * separated by '_'. - * @copy_func: the #GBoxedCopyFunc for the new type - * @free_func: the #GBoxedFreeFunc for the new type - * @_C_: Custom code that gets inserted in the *_get_type() function. - * - * A convenience macro for boxed type implementations. - * Similar to G_DEFINE_BOXED_TYPE(), but allows to insert custom code into the - * type_name_get_type() function, e.g. to register value transformations with - * g_value_register_transform_func(). - * - * Since: 2.26 - */ -#define G_DEFINE_BOXED_TYPE_WITH_CODE(TypeName, type_name, copy_func, free_func, _C_) _G_DEFINE_BOXED_TYPE_BEGIN (TypeName, type_name, copy_func, free_func) {_C_;} _G_DEFINE_TYPE_EXTENDED_END() - -/* Only use this in non-C++ on GCC >= 2.7, except for Darwin/ppc64. - * See https://bugzilla.gnome.org/show_bug.cgi?id=647145 - */ -#if !defined (__cplusplus) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)) && !(defined (__APPLE__) && defined (__ppc64__)) -#define _G_DEFINE_BOXED_TYPE_BEGIN(TypeName, type_name, copy_func, free_func) \ -GType \ -type_name##_get_type (void) \ -{ \ - static volatile gsize g_define_type_id__volatile = 0; \ - if (g_once_init_enter (&g_define_type_id__volatile)) \ - { \ - GType (* _g_register_boxed) \ - (const gchar *, \ - union \ - { \ - TypeName * (*do_copy_type) (TypeName *); \ - TypeName * (*do_const_copy_type) (const TypeName *); \ - GBoxedCopyFunc do_copy_boxed; \ - } __attribute__((__transparent_union__)), \ - union \ - { \ - void (* do_free_type) (TypeName *); \ - GBoxedFreeFunc do_free_boxed; \ - } __attribute__((__transparent_union__)) \ - ) = g_boxed_type_register_static; \ - GType g_define_type_id = \ - _g_register_boxed (g_intern_static_string (#TypeName), copy_func, free_func); \ - { /* custom code follows */ -#else -#define _G_DEFINE_BOXED_TYPE_BEGIN(TypeName, type_name, copy_func, free_func) \ -GType \ -type_name##_get_type (void) \ -{ \ - static volatile gsize g_define_type_id__volatile = 0; \ - if (g_once_init_enter (&g_define_type_id__volatile)) \ - { \ - GType g_define_type_id = \ - g_boxed_type_register_static (g_intern_static_string (#TypeName), \ - (GBoxedCopyFunc) copy_func, \ - (GBoxedFreeFunc) free_func); \ - { /* custom code follows */ -#endif /* __GNUC__ */ - -/** - * G_DEFINE_POINTER_TYPE: - * @TypeName: The name of the new type, in Camel case. - * @type_name: The name of the new type, in lowercase, with words - * separated by '_'. - * - * A convenience macro for pointer type implementations, which defines a - * type_name_get_type() function registering the pointer type. - * - * Since: 2.26 - */ -#define G_DEFINE_POINTER_TYPE(TypeName, type_name) G_DEFINE_POINTER_TYPE_WITH_CODE (TypeName, type_name, {}) -/** - * G_DEFINE_POINTER_TYPE_WITH_CODE: - * @TypeName: The name of the new type, in Camel case. - * @type_name: The name of the new type, in lowercase, with words - * separated by '_'. - * @_C_: Custom code that gets inserted in the *_get_type() function. - * - * A convenience macro for pointer type implementations. - * Similar to G_DEFINE_POINTER_TYPE(), but allows to insert custom code into the - * type_name_get_type() function. - * - * Since: 2.26 - */ -#define G_DEFINE_POINTER_TYPE_WITH_CODE(TypeName, type_name, _C_) _G_DEFINE_POINTER_TYPE_BEGIN (TypeName, type_name) {_C_;} _G_DEFINE_TYPE_EXTENDED_END() - -#define _G_DEFINE_POINTER_TYPE_BEGIN(TypeName, type_name) \ -GType \ -type_name##_get_type (void) \ -{ \ - static volatile gsize g_define_type_id__volatile = 0; \ - if (g_once_init_enter (&g_define_type_id__volatile)) \ - { \ - GType g_define_type_id = \ - g_pointer_type_register_static (g_intern_static_string (#TypeName)); \ - { /* custom code follows */ - -/* --- protected (for fundamental type implementations) --- */ -GLIB_AVAILABLE_IN_ALL -GTypePlugin* g_type_get_plugin (GType type); -GLIB_AVAILABLE_IN_ALL -GTypePlugin* g_type_interface_get_plugin (GType instance_type, - GType interface_type); -GLIB_AVAILABLE_IN_ALL -GType g_type_fundamental_next (void); -GLIB_AVAILABLE_IN_ALL -GType g_type_fundamental (GType type_id); -GLIB_AVAILABLE_IN_ALL -GTypeInstance* g_type_create_instance (GType type); -GLIB_AVAILABLE_IN_ALL -void g_type_free_instance (GTypeInstance *instance); - -GLIB_AVAILABLE_IN_ALL -void g_type_add_class_cache_func (gpointer cache_data, - GTypeClassCacheFunc cache_func); -GLIB_AVAILABLE_IN_ALL -void g_type_remove_class_cache_func (gpointer cache_data, - GTypeClassCacheFunc cache_func); -GLIB_AVAILABLE_IN_ALL -void g_type_class_unref_uncached (gpointer g_class); - -GLIB_AVAILABLE_IN_ALL -void g_type_add_interface_check (gpointer check_data, - GTypeInterfaceCheckFunc check_func); -GLIB_AVAILABLE_IN_ALL -void g_type_remove_interface_check (gpointer check_data, - GTypeInterfaceCheckFunc check_func); - -GLIB_AVAILABLE_IN_ALL -GTypeValueTable* g_type_value_table_peek (GType type); - - -/*< private >*/ -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_instance (GTypeInstance *instance) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -GTypeInstance* g_type_check_instance_cast (GTypeInstance *instance, - GType iface_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_instance_is_a (GTypeInstance *instance, - GType iface_type) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -GTypeClass* g_type_check_class_cast (GTypeClass *g_class, - GType is_a_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_class_is_a (GTypeClass *g_class, - GType is_a_type) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_is_value_type (GType type) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_value (GValue *value) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gboolean g_type_check_value_holds (GValue *value, - GType type) G_GNUC_PURE; -GLIB_AVAILABLE_IN_ALL -gboolean g_type_test_flags (GType type, - guint flags) G_GNUC_CONST; - - -/* --- debugging functions --- */ -GLIB_AVAILABLE_IN_ALL -const gchar * g_type_name_from_instance (GTypeInstance *instance); -GLIB_AVAILABLE_IN_ALL -const gchar * g_type_name_from_class (GTypeClass *g_class); - - -/* --- implementation bits --- */ -#ifndef G_DISABLE_CAST_CHECKS -# define _G_TYPE_CIC(ip, gt, ct) \ - ((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt)) -# define _G_TYPE_CCC(cp, gt, ct) \ - ((ct*) g_type_check_class_cast ((GTypeClass*) cp, gt)) -#else /* G_DISABLE_CAST_CHECKS */ -# define _G_TYPE_CIC(ip, gt, ct) ((ct*) ip) -# define _G_TYPE_CCC(cp, gt, ct) ((ct*) cp) -#endif /* G_DISABLE_CAST_CHECKS */ -#define _G_TYPE_CHI(ip) (g_type_check_instance ((GTypeInstance*) ip)) -#define _G_TYPE_CHV(vl) (g_type_check_value ((GValue*) vl)) -#define _G_TYPE_IGC(ip, gt, ct) ((ct*) (((GTypeInstance*) ip)->g_class)) -#define _G_TYPE_IGI(ip, gt, ct) ((ct*) g_type_interface_peek (((GTypeInstance*) ip)->g_class, gt)) -#ifdef __GNUC__ -# define _G_TYPE_CIT(ip, gt) (G_GNUC_EXTENSION ({ \ - GTypeInstance *__inst = (GTypeInstance*) ip; GType __t = gt; gboolean __r; \ - if (!__inst) \ - __r = FALSE; \ - else if (__inst->g_class && __inst->g_class->g_type == __t) \ - __r = TRUE; \ - else \ - __r = g_type_check_instance_is_a (__inst, __t); \ - __r; \ -})) -# define _G_TYPE_CCT(cp, gt) (G_GNUC_EXTENSION ({ \ - GTypeClass *__class = (GTypeClass*) cp; GType __t = gt; gboolean __r; \ - if (!__class) \ - __r = FALSE; \ - else if (__class->g_type == __t) \ - __r = TRUE; \ - else \ - __r = g_type_check_class_is_a (__class, __t); \ - __r; \ -})) -# define _G_TYPE_CVH(vl, gt) (G_GNUC_EXTENSION ({ \ - GValue *__val = (GValue*) vl; GType __t = gt; gboolean __r; \ - if (!__val) \ - __r = FALSE; \ - else if (__val->g_type == __t) \ - __r = TRUE; \ - else \ - __r = g_type_check_value_holds (__val, __t); \ - __r; \ -})) -#else /* !__GNUC__ */ -# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt)) -# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt)) -# define _G_TYPE_CVH(vl, gt) (g_type_check_value_holds ((GValue*) vl, gt)) -#endif /* !__GNUC__ */ -/** - * G_TYPE_FLAG_RESERVED_ID_BIT: - * - * A bit in the type number that's supposed to be left untouched. - */ -#define G_TYPE_FLAG_RESERVED_ID_BIT ((GType) (1 << 0)) -extern GTypeDebugFlags _g_type_debug_flags; - -G_END_DECLS - -#endif /* __G_TYPE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypemodule.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypemodule.h deleted file mode 100644 index 2580e1b..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypemodule.h +++ /dev/null @@ -1,280 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_TYPE_MODULE_H__ -#define __G_TYPE_MODULE_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include -#include - -G_BEGIN_DECLS - -typedef struct _GTypeModule GTypeModule; -typedef struct _GTypeModuleClass GTypeModuleClass; - -#define G_TYPE_TYPE_MODULE (g_type_module_get_type ()) -#define G_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), G_TYPE_TYPE_MODULE, GTypeModule)) -#define G_TYPE_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TYPE_MODULE, GTypeModuleClass)) -#define G_IS_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), G_TYPE_TYPE_MODULE)) -#define G_IS_TYPE_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TYPE_MODULE)) -#define G_TYPE_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), G_TYPE_TYPE_MODULE, GTypeModuleClass)) - -/** - * GTypeModule: - * @name: the name of the module - * - * The members of the GTypeModule structure should not - * be accessed directly, except for the @name field. - */ -struct _GTypeModule -{ - GObject parent_instance; - - guint use_count; - GSList *type_infos; - GSList *interface_infos; - - /*< public >*/ - gchar *name; -}; - -/** - * GTypeModuleClass: - * @parent_class: the parent class - * @load: loads the module and registers one or more types using - * g_type_module_register_type(). - * @unload: unloads the module - * - * In order to implement dynamic loading of types based on #GTypeModule, - * the @load and @unload functions in #GTypeModuleClass must be implemented. - */ -struct _GTypeModuleClass -{ - GObjectClass parent_class; - - /*< public >*/ - gboolean (* load) (GTypeModule *module); - void (* unload) (GTypeModule *module); - - /*< private >*/ - /* Padding for future expansion */ - void (*reserved1) (void); - void (*reserved2) (void); - void (*reserved3) (void); - void (*reserved4) (void); -}; - -/** - * G_DEFINE_DYNAMIC_TYPE: - * @TN: The name of the new type, in Camel case. - * @t_n: The name of the new type, in lowercase, with words - * separated by '_'. - * @T_P: The #GType of the parent type. - * - * A convenience macro for dynamic type implementations, which declares a - * class initialization function, an instance initialization function (see - * #GTypeInfo for information about these) and a static variable named - * @t_n_parent_class pointing to the parent class. Furthermore, - * it defines a *_get_type() and a static - * *_register_type() function for use in your - * module_init(). - * See G_DEFINE_DYNAMIC_TYPE_EXTENDED() for an example. - * - * Since: 2.14 - */ -#define G_DEFINE_DYNAMIC_TYPE(TN, t_n, T_P) G_DEFINE_DYNAMIC_TYPE_EXTENDED (TN, t_n, T_P, 0, {}) -/** - * G_DEFINE_DYNAMIC_TYPE_EXTENDED: - * @TypeName: The name of the new type, in Camel case. - * @type_name: The name of the new type, in lowercase, with words - * separated by '_'. - * @TYPE_PARENT: The #GType of the parent type. - * @flags: #GTypeFlags to pass to g_type_module_register_type() - * @CODE: Custom code that gets inserted in the *_get_type() function. - * - * A more general version of G_DEFINE_DYNAMIC_TYPE() which - * allows to specify #GTypeFlags and custom code. - * - * |[ - * G_DEFINE_DYNAMIC_TYPE_EXTENDED (GtkGadget, - * gtk_gadget, - * GTK_TYPE_THING, - * 0, - * G_IMPLEMENT_INTERFACE_DYNAMIC (TYPE_GIZMO, - * gtk_gadget_gizmo_init)); - * ]| - * expands to - * |[ - * static void gtk_gadget_init (GtkGadget *self); - * static void gtk_gadget_class_init (GtkGadgetClass *klass); - * static void gtk_gadget_class_finalize (GtkGadgetClass *klass); - * - * static gpointer gtk_gadget_parent_class = NULL; - * static GType gtk_gadget_type_id = 0; - * - * static void gtk_gadget_class_intern_init (gpointer klass) - * { - * gtk_gadget_parent_class = g_type_class_peek_parent (klass); - * gtk_gadget_class_init ((GtkGadgetClass*) klass); - * } - * - * GType - * gtk_gadget_get_type (void) - * { - * return gtk_gadget_type_id; - * } - * - * static void - * gtk_gadget_register_type (GTypeModule *type_module) - * { - * const GTypeInfo g_define_type_info = { - * sizeof (GtkGadgetClass), - * (GBaseInitFunc) NULL, - * (GBaseFinalizeFunc) NULL, - * (GClassInitFunc) gtk_gadget_class_intern_init, - * (GClassFinalizeFunc) gtk_gadget_class_finalize, - * NULL, // class_data - * sizeof (GtkGadget), - * 0, // n_preallocs - * (GInstanceInitFunc) gtk_gadget_init, - * NULL // value_table - * }; - * gtk_gadget_type_id = g_type_module_register_type (type_module, - * GTK_TYPE_THING, - * "GtkGadget", - * &g_define_type_info, - * (GTypeFlags) flags); - * { - * const GInterfaceInfo g_implement_interface_info = { - * (GInterfaceInitFunc) gtk_gadget_gizmo_init - * }; - * g_type_module_add_interface (type_module, g_define_type_id, TYPE_GIZMO, &g_implement_interface_info); - * } - * } - * ]| - * - * Since: 2.14 - */ -#define G_DEFINE_DYNAMIC_TYPE_EXTENDED(TypeName, type_name, TYPE_PARENT, flags, CODE) \ -static void type_name##_init (TypeName *self); \ -static void type_name##_class_init (TypeName##Class *klass); \ -static void type_name##_class_finalize (TypeName##Class *klass); \ -static gpointer type_name##_parent_class = NULL; \ -static GType type_name##_type_id = 0; \ -static gint TypeName##_private_offset; \ -\ -_G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \ -\ -static inline gpointer \ -type_name##_get_instance_private (TypeName *self) \ -{ \ - return (G_STRUCT_MEMBER_P (self, TypeName##_private_offset)); \ -} \ -\ -GType \ -type_name##_get_type (void) \ -{ \ - return type_name##_type_id; \ -} \ -static void \ -type_name##_register_type (GTypeModule *type_module) \ -{ \ - GType g_define_type_id G_GNUC_UNUSED; \ - const GTypeInfo g_define_type_info = { \ - sizeof (TypeName##Class), \ - (GBaseInitFunc) NULL, \ - (GBaseFinalizeFunc) NULL, \ - (GClassInitFunc) type_name##_class_intern_init, \ - (GClassFinalizeFunc) type_name##_class_finalize, \ - NULL, /* class_data */ \ - sizeof (TypeName), \ - 0, /* n_preallocs */ \ - (GInstanceInitFunc) type_name##_init, \ - NULL /* value_table */ \ - }; \ - type_name##_type_id = g_type_module_register_type (type_module, \ - TYPE_PARENT, \ - #TypeName, \ - &g_define_type_info, \ - (GTypeFlags) flags); \ - g_define_type_id = type_name##_type_id; \ - { CODE ; } \ -} - -/** - * G_IMPLEMENT_INTERFACE_DYNAMIC: - * @TYPE_IFACE: The #GType of the interface to add - * @iface_init: The interface init function - * - * A convenience macro to ease interface addition in the @_C_ section - * of G_DEFINE_DYNAMIC_TYPE_EXTENDED(). See G_DEFINE_DYNAMIC_TYPE_EXTENDED() - * for an example. - * - * Note that this macro can only be used together with the - * G_DEFINE_DYNAMIC_TYPE_EXTENDED macros, since it depends on variable - * names from that macro. - * - * Since: 2.24 - */ -#define G_IMPLEMENT_INTERFACE_DYNAMIC(TYPE_IFACE, iface_init) { \ - const GInterfaceInfo g_implement_interface_info = { \ - (GInterfaceInitFunc) iface_init, NULL, NULL \ - }; \ - g_type_module_add_interface (type_module, g_define_type_id, TYPE_IFACE, &g_implement_interface_info); \ -} - -#define G_ADD_PRIVATE_DYNAMIC(TypeName) { \ - TypeName##_private_offset = sizeof (TypeName##Private); \ -} - -GLIB_AVAILABLE_IN_ALL -GType g_type_module_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -gboolean g_type_module_use (GTypeModule *module); -GLIB_AVAILABLE_IN_ALL -void g_type_module_unuse (GTypeModule *module); -GLIB_AVAILABLE_IN_ALL -void g_type_module_set_name (GTypeModule *module, - const gchar *name); -GLIB_AVAILABLE_IN_ALL -GType g_type_module_register_type (GTypeModule *module, - GType parent_type, - const gchar *type_name, - const GTypeInfo *type_info, - GTypeFlags flags); -GLIB_AVAILABLE_IN_ALL -void g_type_module_add_interface (GTypeModule *module, - GType instance_type, - GType interface_type, - const GInterfaceInfo *interface_info); -GLIB_AVAILABLE_IN_ALL -GType g_type_module_register_enum (GTypeModule *module, - const gchar *name, - const GEnumValue *const_static_values); -GLIB_AVAILABLE_IN_ALL -GType g_type_module_register_flags (GTypeModule *module, - const gchar *name, - const GFlagsValue *const_static_values); - -G_END_DECLS - -#endif /* __G_TYPE_MODULE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypeplugin.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypeplugin.h deleted file mode 100644 index c744f9e..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gtypeplugin.h +++ /dev/null @@ -1,139 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2000 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - */ -#ifndef __G_TYPE_PLUGIN_H__ -#define __G_TYPE_PLUGIN_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -#define G_TYPE_TYPE_PLUGIN (g_type_plugin_get_type ()) -#define G_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TYPE_PLUGIN, GTypePlugin)) -#define G_TYPE_PLUGIN_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), G_TYPE_TYPE_PLUGIN, GTypePluginClass)) -#define G_IS_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TYPE_PLUGIN)) -#define G_IS_TYPE_PLUGIN_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), G_TYPE_TYPE_PLUGIN)) -#define G_TYPE_PLUGIN_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TYPE_PLUGIN, GTypePluginClass)) - - -/* --- typedefs & structures --- */ -typedef struct _GTypePluginClass GTypePluginClass; -/** - * GTypePluginUse: - * @plugin: the #GTypePlugin whose use count should be increased - * - * The type of the @use_plugin function of #GTypePluginClass, which gets called - * to increase the use count of @plugin. - */ -typedef void (*GTypePluginUse) (GTypePlugin *plugin); -/** - * GTypePluginUnuse: - * @plugin: the #GTypePlugin whose use count should be decreased - * - * The type of the @unuse_plugin function of #GTypePluginClass. - */ -typedef void (*GTypePluginUnuse) (GTypePlugin *plugin); -/** - * GTypePluginCompleteTypeInfo: - * @plugin: the #GTypePlugin - * @g_type: the #GType whose info is completed - * @info: the #GTypeInfo struct to fill in - * @value_table: the #GTypeValueTable to fill in - * - * The type of the @complete_type_info function of #GTypePluginClass. - */ -typedef void (*GTypePluginCompleteTypeInfo) (GTypePlugin *plugin, - GType g_type, - GTypeInfo *info, - GTypeValueTable *value_table); -/** - * GTypePluginCompleteInterfaceInfo: - * @plugin: the #GTypePlugin - * @instance_type: the #GType of an instantiable type to which the interface - * is added - * @interface_type: the #GType of the interface whose info is completed - * @info: the #GInterfaceInfo to fill in - * - * The type of the @complete_interface_info function of #GTypePluginClass. - */ -typedef void (*GTypePluginCompleteInterfaceInfo) (GTypePlugin *plugin, - GType instance_type, - GType interface_type, - GInterfaceInfo *info); -/** - * GTypePlugin: - * - * The GTypePlugin typedef is used as a placeholder - * for objects that implement the GTypePlugin - * interface. - */ -/** - * GTypePluginClass: - * @use_plugin: Increases the use count of the plugin. - * @unuse_plugin: Decreases the use count of the plugin. - * @complete_type_info: Fills in the #GTypeInfo and - * #GTypeValueTable structs for the type. The structs are initialized - * with memset(s, 0, sizeof (s)) before calling - * this function. - * @complete_interface_info: Fills in missing parts of the #GInterfaceInfo - * for the interface. The structs is initialized with - * memset(s, 0, sizeof (s)) before calling - * this function. - * - * The #GTypePlugin interface is used by the type system in order to handle - * the lifecycle of dynamically loaded types. - */ -struct _GTypePluginClass -{ - /*< private >*/ - GTypeInterface base_iface; - - /*< public >*/ - GTypePluginUse use_plugin; - GTypePluginUnuse unuse_plugin; - GTypePluginCompleteTypeInfo complete_type_info; - GTypePluginCompleteInterfaceInfo complete_interface_info; -}; - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GType g_type_plugin_get_type (void) G_GNUC_CONST; -GLIB_AVAILABLE_IN_ALL -void g_type_plugin_use (GTypePlugin *plugin); -GLIB_AVAILABLE_IN_ALL -void g_type_plugin_unuse (GTypePlugin *plugin); -GLIB_AVAILABLE_IN_ALL -void g_type_plugin_complete_type_info (GTypePlugin *plugin, - GType g_type, - GTypeInfo *info, - GTypeValueTable *value_table); -GLIB_AVAILABLE_IN_ALL -void g_type_plugin_complete_interface_info (GTypePlugin *plugin, - GType instance_type, - GType interface_type, - GInterfaceInfo *info); - -G_END_DECLS - -#endif /* __G_TYPE_PLUGIN_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvalue.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvalue.h deleted file mode 100644 index 56ea0c6..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvalue.h +++ /dev/null @@ -1,194 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gvalue.h: generic GValue functions - */ -#ifndef __G_VALUE_H__ -#define __G_VALUE_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -/** - * G_TYPE_IS_VALUE: - * @type: A #GType value. - * - * Checks whether the passed in type ID can be used for g_value_init(). - * That is, this macro checks whether this type provides an implementation - * of the #GTypeValueTable functions required for a type to create a #GValue of. - * - * Returns: Whether @type is suitable as a #GValue type. - */ -#define G_TYPE_IS_VALUE(type) (g_type_check_is_value_type (type)) -/** - * G_IS_VALUE: - * @value: A #GValue structure. - * - * Checks if @value is a valid and initialized #GValue structure. - * - * Returns: %TRUE on success. - */ -#define G_IS_VALUE(value) (G_TYPE_CHECK_VALUE (value)) -/** - * G_VALUE_TYPE: - * @value: A #GValue structure. - * - * Get the type identifier of @value. - * - * Returns: the #GType. - */ -#define G_VALUE_TYPE(value) (((GValue*) (value))->g_type) -/** - * G_VALUE_TYPE_NAME: - * @value: A #GValue structure. - * - * Gets the type name of @value. - * - * Returns: the type name. - */ -#define G_VALUE_TYPE_NAME(value) (g_type_name (G_VALUE_TYPE (value))) -/** - * G_VALUE_HOLDS: - * @value: A #GValue structure. - * @type: A #GType value. - * - * Checks if @value holds (or contains) a value of @type. - * This macro will also check for @value != %NULL and issue a - * warning if the check fails. - * - * Returns: %TRUE if @value holds the @type. - */ -#define G_VALUE_HOLDS(value,type) (G_TYPE_CHECK_VALUE_TYPE ((value), (type))) - - -/* --- typedefs & structures --- */ -/** - * GValueTransform: - * @src_value: Source value. - * @dest_value: Target value. - * - * The type of value transformation functions which can be registered with - * g_value_register_transform_func(). - */ -typedef void (*GValueTransform) (const GValue *src_value, - GValue *dest_value); -/** - * GValue: - * - * An opaque structure used to hold different types of values. - * The data within the structure has protected scope: it is accessible only - * to functions within a #GTypeValueTable structure, or implementations of - * the g_value_*() API. That is, code portions which implement new fundamental - * types. - * #GValue users cannot make any assumptions about how data is stored - * within the 2 element @data union, and the @g_type member should - * only be accessed through the G_VALUE_TYPE() macro. - */ -struct _GValue -{ - /*< private >*/ - GType g_type; - - /* public for GTypeValueTable methods */ - union { - gint v_int; - guint v_uint; - glong v_long; - gulong v_ulong; - gint64 v_int64; - guint64 v_uint64; - gfloat v_float; - gdouble v_double; - gpointer v_pointer; - } data[2]; -}; - - -/* --- prototypes --- */ -GLIB_AVAILABLE_IN_ALL -GValue* g_value_init (GValue *value, - GType g_type); -GLIB_AVAILABLE_IN_ALL -void g_value_copy (const GValue *src_value, - GValue *dest_value); -GLIB_AVAILABLE_IN_ALL -GValue* g_value_reset (GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_unset (GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_instance (GValue *value, - gpointer instance); - - -/* --- private --- */ -GLIB_AVAILABLE_IN_ALL -gboolean g_value_fits_pointer (const GValue *value); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_peek_pointer (const GValue *value); - - -/* --- implementation details --- */ -GLIB_AVAILABLE_IN_ALL -gboolean g_value_type_compatible (GType src_type, - GType dest_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_value_type_transformable (GType src_type, - GType dest_type); -GLIB_AVAILABLE_IN_ALL -gboolean g_value_transform (const GValue *src_value, - GValue *dest_value); -GLIB_AVAILABLE_IN_ALL -void g_value_register_transform_func (GType src_type, - GType dest_type, - GValueTransform transform_func); - -/** - * G_VALUE_NOCOPY_CONTENTS: - * - * If passed to G_VALUE_COLLECT(), allocated data won't be copied - * but used verbatim. This does not affect ref-counted types like - * objects. - */ -#define G_VALUE_NOCOPY_CONTENTS (1 << 27) - -/** - * G_VALUE_INIT: - * - * A #GValue must be initialized before it can be used. - * This macro can be used as initializer instead of an explicit - * { 0 } when declaring a variable, - * but it cannot be assigned to a variable. - * - * |[ - * GValue value = G_VALUE_INIT; - * ]| - * - * Since: 2.30 - */ -#define G_VALUE_INIT { 0, { { 0 } } } - - -G_END_DECLS - -#endif /* __G_VALUE_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluearray.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluearray.h deleted file mode 100644 index aca3716..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluearray.h +++ /dev/null @@ -1,106 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 2001 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gvaluearray.h: GLib array type holding GValues - */ -#ifndef __G_VALUE_ARRAY_H__ -#define __G_VALUE_ARRAY_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/** - * G_TYPE_VALUE_ARRAY: - * - * The type ID of the "GValueArray" type which is a boxed type, - * used to pass around pointers to GValueArrays. - * - * Deprecated: 2.32: Use #GArray instead of #GValueArray - */ -#define G_TYPE_VALUE_ARRAY (g_value_array_get_type ()) - -/* --- typedefs & structs --- */ -typedef struct _GValueArray GValueArray; -/** - * GValueArray: - * @n_values: number of values contained in the array - * @values: array of values - * - * A #GValueArray contains an array of #GValue elements. - */ -struct _GValueArray -{ - guint n_values; - GValue *values; - - /*< private >*/ - guint n_prealloced; -}; - -/* --- prototypes --- */ -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GType g_value_array_get_type (void) G_GNUC_CONST; - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValue* g_value_array_get_nth (GValueArray *value_array, - guint index_); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_new (guint n_prealloced); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -void g_value_array_free (GValueArray *value_array); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_copy (const GValueArray *value_array); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_prepend (GValueArray *value_array, - const GValue *value); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_append (GValueArray *value_array, - const GValue *value); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_insert (GValueArray *value_array, - guint index_, - const GValue *value); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_remove (GValueArray *value_array, - guint index_); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_sort (GValueArray *value_array, - GCompareFunc compare_func); - -GLIB_DEPRECATED_IN_2_32_FOR(GArray) -GValueArray* g_value_array_sort_with_data (GValueArray *value_array, - GCompareDataFunc compare_func, - gpointer user_data); - - -G_END_DECLS - -#endif /* __G_VALUE_ARRAY_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluecollector.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluecollector.h deleted file mode 100644 index 05a436a..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluecollector.h +++ /dev/null @@ -1,256 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gvaluecollector.h: GValue varargs stubs - */ -/** - * SECTION:value_collection - * @Short_description: Converting varargs to generic values - * @Title: Varargs Value Collection - * - * The macros in this section provide the varargs parsing support needed - * in variadic GObject functions such as g_object_new() or g_object_set(). - * They currently support the collection of integral types, floating point - * types and pointers. - */ -#ifndef __G_VALUE_COLLECTOR_H__ -#define __G_VALUE_COLLECTOR_H__ - -#include - -G_BEGIN_DECLS - -/* we may want to add aggregate types here some day, if requested - * by users. the basic C types are covered already, everything - * smaller than an int is promoted to an integer and floats are - * always promoted to doubles for varargs call constructions. - */ -enum /*< skip >*/ -{ - G_VALUE_COLLECT_INT = 'i', - G_VALUE_COLLECT_LONG = 'l', - G_VALUE_COLLECT_INT64 = 'q', - G_VALUE_COLLECT_DOUBLE = 'd', - G_VALUE_COLLECT_POINTER = 'p' -}; - - -/* vararg union holding actual values collected - */ -/** - * GTypeCValue: - * @v_int: the field for holding integer values - * @v_long: the field for holding long integer values - * @v_int64: the field for holding 64 bit integer values - * @v_double: the field for holding floating point values - * @v_pointer: the field for holding pointers - * - * A union holding one collected value. - */ -union _GTypeCValue -{ - gint v_int; - glong v_long; - gint64 v_int64; - gdouble v_double; - gpointer v_pointer; -}; - -/** - * G_VALUE_COLLECT_INIT: - * @value: a #GValue return location. @value must contain only 0 bytes. - * @_value_type: the #GType to use for @value. - * @var_args: the va_list variable; it may be evaluated multiple times - * @flags: flags which are passed on to the collect_value() function of - * the #GTypeValueTable of @value. - * @__error: a #gchar** variable that will be modified to hold a g_new() - * allocated error messages if something fails - * - * Collects a variable argument value from a va_list. We have to - * implement the varargs collection as a macro, because on some systems - * va_list variables cannot be passed by reference. - * - * Since: 2.24 - */ -#define G_VALUE_COLLECT_INIT(value, _value_type, var_args, flags, __error) \ -G_STMT_START { \ - GValue *_val = (value); \ - guint _flags = (flags); \ - GTypeValueTable *_vtab = g_type_value_table_peek (_value_type); \ - const gchar *_collect_format = _vtab->collect_format; \ - GTypeCValue _cvalues[G_VALUE_COLLECT_FORMAT_MAX_LENGTH] = { { 0, }, }; \ - guint _n_values = 0; \ - \ - _val->g_type = _value_type; /* value_meminit() from gvalue.c */ \ - while (*_collect_format) \ - { \ - GTypeCValue *_cvalue = _cvalues + _n_values++; \ - \ - switch (*_collect_format++) \ - { \ - case G_VALUE_COLLECT_INT: \ - _cvalue->v_int = va_arg ((var_args), gint); \ - break; \ - case G_VALUE_COLLECT_LONG: \ - _cvalue->v_long = va_arg ((var_args), glong); \ - break; \ - case G_VALUE_COLLECT_INT64: \ - _cvalue->v_int64 = va_arg ((var_args), gint64); \ - break; \ - case G_VALUE_COLLECT_DOUBLE: \ - _cvalue->v_double = va_arg ((var_args), gdouble); \ - break; \ - case G_VALUE_COLLECT_POINTER: \ - _cvalue->v_pointer = va_arg ((var_args), gpointer); \ - break; \ - default: \ - g_assert_not_reached (); \ - } \ - } \ - *(__error) = _vtab->collect_value (_val, \ - _n_values, \ - _cvalues, \ - _flags); \ -} G_STMT_END - -/** - * G_VALUE_COLLECT: - * @value: a #GValue return location. @value is supposed to be initialized - * according to the value type to be collected - * @var_args: the va_list variable; it may be evaluated multiple times - * @flags: flags which are passed on to the collect_value() function of - * the #GTypeValueTable of @value. - * @__error: a #gchar** variable that will be modified to hold a g_new() - * allocated error messages if something fails - * - * Collects a variable argument value from a va_list. We have to - * implement the varargs collection as a macro, because on some systems - * va_list variables cannot be passed by reference. - * - * Note: If you are creating the @value argument just before calling this macro, - * you should use the #G_VALUE_COLLECT_INIT variant and pass the unitialized - * #GValue. That variant is faster than #G_VALUE_COLLECT. - */ -#define G_VALUE_COLLECT(value, var_args, flags, __error) G_STMT_START { \ - GValue *_value = (value); \ - GType _value_type = G_VALUE_TYPE (_value); \ - GTypeValueTable *_vtable = g_type_value_table_peek (_value_type); \ - \ - if (_vtable->value_free) \ - _vtable->value_free (_value); \ - memset (_value->data, 0, sizeof (_value->data)); \ - \ - G_VALUE_COLLECT_INIT(value, _value_type, var_args, flags, __error); \ -} G_STMT_END - -#define G_VALUE_COLLECT_SKIP(_value_type, var_args) \ -G_STMT_START { \ - GTypeValueTable *_vtable = g_type_value_table_peek (_value_type); \ - const gchar *_collect_format = _vtable->collect_format; \ - \ - while (*_collect_format) \ - { \ - switch (*_collect_format++) \ - { \ - case G_VALUE_COLLECT_INT: \ - va_arg ((var_args), gint); \ - break; \ - case G_VALUE_COLLECT_LONG: \ - va_arg ((var_args), glong); \ - break; \ - case G_VALUE_COLLECT_INT64: \ - va_arg ((var_args), gint64); \ - break; \ - case G_VALUE_COLLECT_DOUBLE: \ - va_arg ((var_args), gdouble); \ - break; \ - case G_VALUE_COLLECT_POINTER: \ - va_arg ((var_args), gpointer); \ - break; \ - default: \ - g_assert_not_reached (); \ - } \ - } \ -} G_STMT_END - -/** - * G_VALUE_LCOPY: - * @value: a #GValue return location. @value is supposed to be initialized - * according to the value type to be collected - * @var_args: the va_list variable; it may be evaluated multiple times - * @flags: flags which are passed on to the lcopy_value() function of - * the #GTypeValueTable of @value. - * @__error: a #gchar** variable that will be modified to hold a g_new() - * allocated error messages if something fails - * - * Collects a value's variable argument locations from a va_list. Usage is - * analogous to G_VALUE_COLLECT(). - */ -#define G_VALUE_LCOPY(value, var_args, flags, __error) \ -G_STMT_START { \ - const GValue *_value = (value); \ - guint _flags = (flags); \ - GType _value_type = G_VALUE_TYPE (_value); \ - GTypeValueTable *_vtable = g_type_value_table_peek (_value_type); \ - const gchar *_lcopy_format = _vtable->lcopy_format; \ - GTypeCValue _cvalues[G_VALUE_COLLECT_FORMAT_MAX_LENGTH] = { { 0, }, }; \ - guint _n_values = 0; \ - \ - while (*_lcopy_format) \ - { \ - GTypeCValue *_cvalue = _cvalues + _n_values++; \ - \ - switch (*_lcopy_format++) \ - { \ - case G_VALUE_COLLECT_INT: \ - _cvalue->v_int = va_arg ((var_args), gint); \ - break; \ - case G_VALUE_COLLECT_LONG: \ - _cvalue->v_long = va_arg ((var_args), glong); \ - break; \ - case G_VALUE_COLLECT_INT64: \ - _cvalue->v_int64 = va_arg ((var_args), gint64); \ - break; \ - case G_VALUE_COLLECT_DOUBLE: \ - _cvalue->v_double = va_arg ((var_args), gdouble); \ - break; \ - case G_VALUE_COLLECT_POINTER: \ - _cvalue->v_pointer = va_arg ((var_args), gpointer); \ - break; \ - default: \ - g_assert_not_reached (); \ - } \ - } \ - *(__error) = _vtable->lcopy_value (_value, \ - _n_values, \ - _cvalues, \ - _flags); \ -} G_STMT_END - - -/** - * G_VALUE_COLLECT_FORMAT_MAX_LENGTH: - * - * The maximal number of #GTypeCValues which can be collected for a - * single #GValue. - */ -#define G_VALUE_COLLECT_FORMAT_MAX_LENGTH (8) - -G_END_DECLS - -#endif /* __G_VALUE_COLLECTOR_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluetypes.h b/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluetypes.h deleted file mode 100644 index 5fb42ad..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Headers/gobject/gvaluetypes.h +++ /dev/null @@ -1,302 +0,0 @@ -/* GObject - GLib Type, Object, Parameter and Signal Library - * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. - * - * gvaluetypes.h: GLib default values - */ -#ifndef __G_VALUETYPES_H__ -#define __G_VALUETYPES_H__ - -#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) -#error "Only can be included directly." -#endif - -#include - -G_BEGIN_DECLS - -/* --- type macros --- */ -/** - * G_VALUE_HOLDS_CHAR: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_CHAR. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_CHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_CHAR)) -/** - * G_VALUE_HOLDS_UCHAR: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_UCHAR. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_UCHAR(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UCHAR)) -/** - * G_VALUE_HOLDS_BOOLEAN: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_BOOLEAN. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_BOOLEAN(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOOLEAN)) -/** - * G_VALUE_HOLDS_INT: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_INT. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_INT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT)) -/** - * G_VALUE_HOLDS_UINT: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_UINT. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_UINT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT)) -/** - * G_VALUE_HOLDS_LONG: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_LONG. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_LONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_LONG)) -/** - * G_VALUE_HOLDS_ULONG: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_ULONG. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_ULONG(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ULONG)) -/** - * G_VALUE_HOLDS_INT64: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_INT64. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_INT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_INT64)) -/** - * G_VALUE_HOLDS_UINT64: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_UINT64. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_UINT64(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_UINT64)) -/** - * G_VALUE_HOLDS_FLOAT: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_FLOAT. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_FLOAT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLOAT)) -/** - * G_VALUE_HOLDS_DOUBLE: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_DOUBLE. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_DOUBLE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_DOUBLE)) -/** - * G_VALUE_HOLDS_STRING: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_STRING. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_STRING(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_STRING)) -/** - * G_VALUE_HOLDS_POINTER: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_POINTER. - * - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_POINTER(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_POINTER)) -/** - * G_TYPE_GTYPE: - * - * The type for #GType. - */ -#define G_TYPE_GTYPE (g_gtype_get_type()) -/** - * G_VALUE_HOLDS_GTYPE: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_GTYPE. - * - * Since: 2.12 - * Returns: %TRUE on success. - */ -#define G_VALUE_HOLDS_GTYPE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_GTYPE)) -/** - * G_VALUE_HOLDS_VARIANT: - * @value: a valid #GValue structure - * - * Checks whether the given #GValue can hold values of type %G_TYPE_VARIANT. - * - * Returns: %TRUE on success. - * - * Since: 2.26 - */ -#define G_VALUE_HOLDS_VARIANT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_VARIANT)) - - -/* --- prototypes --- */ -GLIB_DEPRECATED_IN_2_32_FOR(g_value_set_schar) -void g_value_set_char (GValue *value, - gchar v_char); -GLIB_DEPRECATED_IN_2_32_FOR(g_value_get_schar) -gchar g_value_get_char (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_schar (GValue *value, - gint8 v_char); -GLIB_AVAILABLE_IN_ALL -gint8 g_value_get_schar (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_uchar (GValue *value, - guchar v_uchar); -GLIB_AVAILABLE_IN_ALL -guchar g_value_get_uchar (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_boolean (GValue *value, - gboolean v_boolean); -GLIB_AVAILABLE_IN_ALL -gboolean g_value_get_boolean (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_int (GValue *value, - gint v_int); -GLIB_AVAILABLE_IN_ALL -gint g_value_get_int (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_uint (GValue *value, - guint v_uint); -GLIB_AVAILABLE_IN_ALL -guint g_value_get_uint (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_long (GValue *value, - glong v_long); -GLIB_AVAILABLE_IN_ALL -glong g_value_get_long (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_ulong (GValue *value, - gulong v_ulong); -GLIB_AVAILABLE_IN_ALL -gulong g_value_get_ulong (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_int64 (GValue *value, - gint64 v_int64); -GLIB_AVAILABLE_IN_ALL -gint64 g_value_get_int64 (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_uint64 (GValue *value, - guint64 v_uint64); -GLIB_AVAILABLE_IN_ALL -guint64 g_value_get_uint64 (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_float (GValue *value, - gfloat v_float); -GLIB_AVAILABLE_IN_ALL -gfloat g_value_get_float (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_double (GValue *value, - gdouble v_double); -GLIB_AVAILABLE_IN_ALL -gdouble g_value_get_double (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_string (GValue *value, - const gchar *v_string); -GLIB_AVAILABLE_IN_ALL -void g_value_set_static_string (GValue *value, - const gchar *v_string); -GLIB_AVAILABLE_IN_ALL -const gchar * g_value_get_string (const GValue *value); -GLIB_AVAILABLE_IN_ALL -gchar* g_value_dup_string (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_pointer (GValue *value, - gpointer v_pointer); -GLIB_AVAILABLE_IN_ALL -gpointer g_value_get_pointer (const GValue *value); -GLIB_AVAILABLE_IN_ALL -GType g_gtype_get_type (void); -GLIB_AVAILABLE_IN_ALL -void g_value_set_gtype (GValue *value, - GType v_gtype); -GLIB_AVAILABLE_IN_ALL -GType g_value_get_gtype (const GValue *value); -GLIB_AVAILABLE_IN_ALL -void g_value_set_variant (GValue *value, - GVariant *variant); -GLIB_AVAILABLE_IN_ALL -void g_value_take_variant (GValue *value, - GVariant *variant); -GLIB_AVAILABLE_IN_ALL -GVariant* g_value_get_variant (const GValue *value); -GLIB_AVAILABLE_IN_ALL -GVariant* g_value_dup_variant (const GValue *value); - - -/* Convenience for registering new pointer types */ -GLIB_AVAILABLE_IN_ALL -GType g_pointer_type_register_static (const gchar *name); - -/* debugging aid, describe value contents as string */ -GLIB_AVAILABLE_IN_ALL -gchar* g_strdup_value_contents (const GValue *value); - - -GLIB_AVAILABLE_IN_ALL -void g_value_take_string (GValue *value, - gchar *v_string); -GLIB_DEPRECATED_FOR(g_value_take_string) -void g_value_set_string_take_ownership (GValue *value, - gchar *v_string); - - -/* humpf, need a C representable type name for G_TYPE_STRING */ -/** - * gchararray: - * - * A C representable type name for #G_TYPE_STRING. - */ -typedef gchar* gchararray; - - -G_END_DECLS - -#endif /* __G_VALUETYPES_H__ */ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Resources/English.lproj/InfoPlist.strings b/telegram-adium/libglib.framework/Versions/2.38.2/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index d518f7f..0000000 --- a/telegram-adium/libglib.framework/Versions/2.38.2/Resources/English.lproj/InfoPlist.strings +++ /dev/null @@ -1,3 +0,0 @@ -/* Localized versions of Info.plist keys */ - -CFBundleName = "libglib"; diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/Resources/Info.plist b/telegram-adium/libglib.framework/Versions/2.38.2/Resources/Info.plist deleted file mode 100644 index adb260a..0000000 Binary files a/telegram-adium/libglib.framework/Versions/2.38.2/Resources/Info.plist and /dev/null differ diff --git a/telegram-adium/libglib.framework/Versions/2.38.2/libglib b/telegram-adium/libglib.framework/Versions/2.38.2/libglib deleted file mode 100755 index 724e545..0000000 Binary files a/telegram-adium/libglib.framework/Versions/2.38.2/libglib and /dev/null differ diff --git a/telegram-adium/libglib.framework/Versions/Current b/telegram-adium/libglib.framework/Versions/Current deleted file mode 120000 index 37b3b16..0000000 --- a/telegram-adium/libglib.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -2.38.2 \ No newline at end of file diff --git a/telegram-adium/libglib.framework/libglib b/telegram-adium/libglib.framework/libglib deleted file mode 120000 index bff77a7..0000000 --- a/telegram-adium/libglib.framework/libglib +++ /dev/null @@ -1 +0,0 @@ -Versions/2.38.2/libglib \ No newline at end of file diff --git a/telegram-adium/libpurple.framework/Headers b/telegram-adium/libpurple.framework/Headers deleted file mode 120000 index ae87c68..0000000 --- a/telegram-adium/libpurple.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/2.10.7r5340f4a9bd6a/Headers \ No newline at end of file diff --git a/telegram-adium/libpurple.framework/Resources b/telegram-adium/libpurple.framework/Resources deleted file mode 120000 index 4f49cf2..0000000 --- a/telegram-adium/libpurple.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/2.10.7r5340f4a9bd6a/Resources \ No newline at end of file diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/account.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/account.h deleted file mode 100644 index 80a153b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/account.h +++ /dev/null @@ -1,1194 +0,0 @@ -/** - * @file account.h Account API - * @ingroup core - * @see @ref account-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_ACCOUNT_H_ -#define _PURPLE_ACCOUNT_H_ - -#include -#include - -/** @copydoc _PurpleAccountUiOps */ -typedef struct _PurpleAccountUiOps PurpleAccountUiOps; -/** @copydoc _PurpleAccount */ -typedef struct _PurpleAccount PurpleAccount; - -typedef gboolean (*PurpleFilterAccountFunc)(PurpleAccount *account); -typedef void (*PurpleAccountRequestAuthorizationCb)(void *); -typedef void (*PurpleAccountRegistrationCb)(PurpleAccount *account, gboolean succeeded, void *user_data); -typedef void (*PurpleAccountUnregistrationCb)(PurpleAccount *account, gboolean succeeded, void *user_data); -typedef void (*PurpleSetPublicAliasSuccessCallback)(PurpleAccount *account, const char *new_alias); -typedef void (*PurpleSetPublicAliasFailureCallback)(PurpleAccount *account, const char *error); -typedef void (*PurpleGetPublicAliasSuccessCallback)(PurpleAccount *account, const char *alias); -typedef void (*PurpleGetPublicAliasFailureCallback)(PurpleAccount *account, const char *error); - -#include "connection.h" -#include "log.h" -#include "privacy.h" -#include "proxy.h" -#include "prpl.h" -#include "status.h" - -/** - * Account request types. - */ -typedef enum -{ - PURPLE_ACCOUNT_REQUEST_AUTHORIZATION = 0 /* Account authorization request */ -} PurpleAccountRequestType; - -/** - * Account request response types - */ -typedef enum -{ - PURPLE_ACCOUNT_RESPONSE_IGNORE = -2, - PURPLE_ACCOUNT_RESPONSE_DENY = -1, - PURPLE_ACCOUNT_RESPONSE_PASS = 0, - PURPLE_ACCOUNT_RESPONSE_ACCEPT = 1 -} PurpleAccountRequestResponse; - -/** Account UI operations, used to notify the user of status changes and when - * buddies add this account to their buddy lists. - */ -struct _PurpleAccountUiOps -{ - /** A buddy who is already on this account's buddy list added this account - * to their buddy list. - */ - void (*notify_added)(PurpleAccount *account, - const char *remote_user, - const char *id, - const char *alias, - const char *message); - - /** This account's status changed. */ - void (*status_changed)(PurpleAccount *account, - PurpleStatus *status); - - /** Someone we don't have on our list added us; prompt to add them. */ - void (*request_add)(PurpleAccount *account, - const char *remote_user, - const char *id, - const char *alias, - const char *message); - - /** Prompt for authorization when someone adds this account to their buddy - * list. To authorize them to see this account's presence, call \a - * authorize_cb (\a user_data); otherwise call \a deny_cb (\a user_data); - * @return a UI-specific handle, as passed to #close_account_request. - */ - void *(*request_authorize)(PurpleAccount *account, - const char *remote_user, - const char *id, - const char *alias, - const char *message, - gboolean on_list, - PurpleAccountRequestAuthorizationCb authorize_cb, - PurpleAccountRequestAuthorizationCb deny_cb, - void *user_data); - - /** Close a pending request for authorization. \a ui_handle is a handle - * as returned by #request_authorize. - */ - void (*close_account_request)(void *ui_handle); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** Structure representing an account. - */ -struct _PurpleAccount -{ - char *username; /**< The username. */ - char *alias; /**< How you appear to yourself. */ - char *password; /**< The account password. */ - char *user_info; /**< User information. */ - - char *buddy_icon_path; /**< The buddy icon's non-cached path. */ - - gboolean remember_pass; /**< Remember the password. */ - - char *protocol_id; /**< The ID of the protocol. */ - - PurpleConnection *gc; /**< The connection handle. */ - gboolean disconnecting; /**< The account is currently disconnecting */ - - GHashTable *settings; /**< Protocol-specific settings. */ - GHashTable *ui_settings; /**< UI-specific settings. */ - - PurpleProxyInfo *proxy_info; /**< Proxy information. This will be set */ - /* to NULL when the account inherits */ - /* proxy settings from global prefs. */ - - /* - * TODO: Supplementing the next two linked lists with hash tables - * should help performance a lot when these lists are long. This - * matters quite a bit for protocols like MSN, where all your - * buddies are added to your permit list. Currently we have to - * iterate through the entire list if we want to check if someone - * is permitted or denied. We should do this for 3.0.0. - * Or maybe use a GTree. - */ - GSList *permit; /**< Permit list. */ - GSList *deny; /**< Deny list. */ - PurplePrivacyType perm_deny; /**< The permit/deny setting. */ - - GList *status_types; /**< Status types. */ - - PurplePresence *presence; /**< Presence. */ - PurpleLog *system_log; /**< The system log */ - - void *ui_data; /**< The UI can put data here. */ - PurpleAccountRegistrationCb registration_cb; - void *registration_cb_user_data; - - gpointer priv; /**< Pointer to opaque private data. */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Account API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new account. - * - * @param username The username. - * @param protocol_id The protocol ID. - * - * @return The new account. - */ -PurpleAccount *purple_account_new(const char *username, const char *protocol_id); - -/** - * Destroys an account. - * - * @param account The account to destroy. - */ -void purple_account_destroy(PurpleAccount *account); - -/** - * Connects to an account. - * - * @param account The account to connect to. - */ -void purple_account_connect(PurpleAccount *account); - -/** - * Sets the callback for successful registration. - * - * @param account The account for which this callback should be used - * @param cb The callback - * @param user_data The user data passed to the callback - */ -void purple_account_set_register_callback(PurpleAccount *account, PurpleAccountRegistrationCb cb, void *user_data); - -/** - * Registers an account. - * - * @param account The account to register. - */ -void purple_account_register(PurpleAccount *account); - -/** - * Unregisters an account (deleting it from the server). - * - * @param account The account to unregister. - * @param cb Optional callback to be called when unregistration is complete - * @param user_data user data to pass to the callback - */ -void purple_account_unregister(PurpleAccount *account, PurpleAccountUnregistrationCb cb, void *user_data); - -/** - * Disconnects from an account. - * - * @param account The account to disconnect from. - */ -void purple_account_disconnect(PurpleAccount *account); - -/** - * Notifies the user that the account was added to a remote user's - * buddy list. - * - * This will present a dialog informing the user that he was added to the - * remote user's buddy list. - * - * @param account The account that was added. - * @param remote_user The name of the user that added this account. - * @param id The optional ID of the local account. Rarely used. - * @param alias The optional alias of the user. - * @param message The optional message sent from the user adding you. - */ -void purple_account_notify_added(PurpleAccount *account, const char *remote_user, - const char *id, const char *alias, - const char *message); - -/** - * Notifies the user that the account was addded to a remote user's buddy - * list and asks ther user if they want to add the remote user to their buddy - * list. - * - * This will present a dialog informing the local user that the remote user - * added them to the remote user's buddy list and will ask if they want to add - * the remote user to the buddy list. - * - * @param account The account that was added. - * @param remote_user The name of the user that added this account. - * @param id The optional ID of the local account. Rarely used. - * @param alias The optional alias of the user. - * @param message The optional message sent from the user adding you. - */ -void purple_account_request_add(PurpleAccount *account, const char *remote_user, - const char *id, const char *alias, - const char *message); - -/** - * Notifies the user that a remote user has wants to add the local user - * to his or her buddy list and requires authorization to do so. - * - * This will present a dialog informing the user of this and ask if the - * user authorizes or denies the remote user from adding him. - * - * @param account The account that was added - * @param remote_user The name of the user that added this account. - * @param id The optional ID of the local account. Rarely used. - * @param alias The optional alias of the remote user. - * @param message The optional message sent by the user wanting to add you. - * @param on_list Is the remote user already on the buddy list? - * @param auth_cb The callback called when the local user accepts - * @param deny_cb The callback called when the local user rejects - * @param user_data Data to be passed back to the above callbacks - * - * @return A UI-specific handle. - */ -void *purple_account_request_authorization(PurpleAccount *account, const char *remote_user, - const char *id, const char *alias, const char *message, gboolean on_list, - PurpleAccountRequestAuthorizationCb auth_cb, PurpleAccountRequestAuthorizationCb deny_cb, void *user_data); - -/** - * Close account requests registered for the given PurpleAccount - * - * @param account The account for which requests should be closed - */ -void purple_account_request_close_with_account(PurpleAccount *account); - -/** - * Close the account request for the given ui handle - * - * @param ui_handle The ui specific handle for which requests should be closed - */ -void purple_account_request_close(void *ui_handle); - -/** - * Requests a password from the user for the account. Does not set the - * account password on success; do that in ok_cb if desired. - * - * @param account The account to request the password for. - * @param ok_cb The callback for the OK button. - * @param cancel_cb The callback for the cancel button. - * @param user_data User data to be passed into callbacks. - */ -void purple_account_request_password(PurpleAccount *account, GCallback ok_cb, - GCallback cancel_cb, void *user_data); - -/** - * Requests information from the user to change the account's password. - * - * @param account The account to change the password on. - */ -void purple_account_request_change_password(PurpleAccount *account); - -/** - * Requests information from the user to change the account's - * user information. - * - * @param account The account to change the user information on. - */ -void purple_account_request_change_user_info(PurpleAccount *account); - -/** - * Sets the account's username. - * - * @param account The account. - * @param username The username. - */ -void purple_account_set_username(PurpleAccount *account, const char *username); - -/** - * Sets the account's password. - * - * @param account The account. - * @param password The password. - */ -void purple_account_set_password(PurpleAccount *account, const char *password); - -/** - * Sets the account's alias. - * - * @param account The account. - * @param alias The alias. - */ -void purple_account_set_alias(PurpleAccount *account, const char *alias); - -/** - * Sets the account's user information - * - * @param account The account. - * @param user_info The user information. - */ -void purple_account_set_user_info(PurpleAccount *account, const char *user_info); - -/** - * Sets the account's buddy icon path. - * - * @param account The account. - * @param path The buddy icon non-cached path. - */ -void purple_account_set_buddy_icon_path(PurpleAccount *account, const char *path); - -/** - * Sets the account's protocol ID. - * - * @param account The account. - * @param protocol_id The protocol ID. - */ -void purple_account_set_protocol_id(PurpleAccount *account, - const char *protocol_id); - -/** - * Sets the account's connection. - * - * @param account The account. - * @param gc The connection. - */ -void purple_account_set_connection(PurpleAccount *account, PurpleConnection *gc); - -/** - * Sets whether or not this account should save its password. - * - * @param account The account. - * @param value @c TRUE if it should remember the password. - */ -void purple_account_set_remember_password(PurpleAccount *account, gboolean value); - -/** - * Sets whether or not this account should check for mail. - * - * @param account The account. - * @param value @c TRUE if it should check for mail. - */ -void purple_account_set_check_mail(PurpleAccount *account, gboolean value); - -/** - * Sets whether or not this account is enabled for the specified - * UI. - * - * @param account The account. - * @param ui The UI. - * @param value @c TRUE if it is enabled. - */ -void purple_account_set_enabled(PurpleAccount *account, const char *ui, - gboolean value); - -/** - * Sets the account's proxy information. - * - * @param account The account. - * @param info The proxy information. - */ -void purple_account_set_proxy_info(PurpleAccount *account, PurpleProxyInfo *info); - -/** - * Sets the account's privacy type. - * - * @param account The account. - * @param privacy_type The privacy type. - * - * @since 2.7.0 - */ -void purple_account_set_privacy_type(PurpleAccount *account, PurplePrivacyType privacy_type); - -/** - * Sets the account's status types. - * - * @param account The account. - * @param status_types The list of status types. - */ -void purple_account_set_status_types(PurpleAccount *account, GList *status_types); - -/** - * Variadic version of purple_account_set_status_list(); the variadic list - * replaces @a attrs, and should be NULL-terminated. - * - * @copydoc purple_account_set_status_list() - */ -void purple_account_set_status(PurpleAccount *account, const char *status_id, - gboolean active, ...) G_GNUC_NULL_TERMINATED; - - -/** - * Activates or deactivates a status. All changes to the statuses of - * an account go through this function or purple_account_set_status(). - * - * You can only deactivate an exclusive status by activating another exclusive - * status. So, if @a status_id is an exclusive status and @a active is @c - * FALSE, this function does nothing. - * - * @param account The account. - * @param status_id The ID of the status. - * @param active Whether @a status_id is to be activated (TRUE) or - * deactivated (FALSE). - * @param attrs A list of const char * attribute names followed by - * const char * attribute values for the status. - * (For example, one pair might be "message" followed - * by "hello, talk to me!".) - */ -void purple_account_set_status_list(PurpleAccount *account, - const char *status_id, gboolean active, GList *attrs); - -/** - * Set a server-side (public) alias for this account. The account - * must already be connected. - * - * Currently, the public alias is not stored locally, although this - * may change in a later version. - * - * @param account The account - * @param alias The new public alias for this account or NULL - * to unset the alias/nickname (or return it to - * a protocol-specific "default", like the username) - * @param success_cb A callback which will be called if the alias - * is successfully set on the server (or NULL). - * @param failure_cb A callback which will be called if the alias - * is not successfully set on the server (or NULL). - * - * @since 2.7.0 - */ -void purple_account_set_public_alias(PurpleAccount *account, - const char *alias, PurpleSetPublicAliasSuccessCallback success_cb, - PurpleSetPublicAliasFailureCallback failure_cb); - -/** - * Fetch the server-side (public) alias for this account. The account - * must already be connected. - * - * @param account The account - * @param success_cb A callback which will be called with the alias - * @param failure_cb A callback which will be called if the prpl is - * unable to retrieve the server-side alias. - * @since 2.7.0 - */ -void purple_account_get_public_alias(PurpleAccount *account, - PurpleGetPublicAliasSuccessCallback success_cb, - PurpleGetPublicAliasFailureCallback failure_cb); - -/** - * Return whether silence suppression is used during voice call. - * - * @param account The account. - * - * @return @c TRUE if suppression is used, or @c FALSE if not. - */ -gboolean purple_account_get_silence_suppression(const PurpleAccount *account); - -/** - * Sets whether silence suppression is used during voice call. - * - * @param account The account. - * @param value @c TRUE if suppression should be used. - */ -void purple_account_set_silence_suppression(PurpleAccount *account, - gboolean value); - -/** - * Clears all protocol-specific settings on an account. - * - * @param account The account. - */ -void purple_account_clear_settings(PurpleAccount *account); - -/** - * Removes an account-specific setting by name. - * - * @param account The account. - * @param setting The setting to remove. - * - * @since 2.6.0 - */ -void purple_account_remove_setting(PurpleAccount *account, const char *setting); - -/** - * Sets a protocol-specific integer setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_int(PurpleAccount *account, const char *name, int value); - -/** - * Sets a protocol-specific string setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_string(PurpleAccount *account, const char *name, - const char *value); - -/** - * Sets a protocol-specific boolean setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_bool(PurpleAccount *account, const char *name, - gboolean value); - -/** - * Sets a UI-specific integer setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_ui_int(PurpleAccount *account, const char *ui, - const char *name, int value); - -/** - * Sets a UI-specific string setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_ui_string(PurpleAccount *account, const char *ui, - const char *name, const char *value); - -/** - * Sets a UI-specific boolean setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param value The setting's value. - */ -void purple_account_set_ui_bool(PurpleAccount *account, const char *ui, - const char *name, gboolean value); - -/** - * Returns whether or not the account is connected. - * - * @param account The account. - * - * @return @c TRUE if connected, or @c FALSE otherwise. - */ -gboolean purple_account_is_connected(const PurpleAccount *account); - -/** - * Returns whether or not the account is connecting. - * - * @param account The account. - * - * @return @c TRUE if connecting, or @c FALSE otherwise. - */ -gboolean purple_account_is_connecting(const PurpleAccount *account); - -/** - * Returns whether or not the account is disconnected. - * - * @param account The account. - * - * @return @c TRUE if disconnected, or @c FALSE otherwise. - */ -gboolean purple_account_is_disconnected(const PurpleAccount *account); - -/** - * Returns the account's username. - * - * @param account The account. - * - * @return The username. - */ -const char *purple_account_get_username(const PurpleAccount *account); - -/** - * Returns the account's password. - * - * @param account The account. - * - * @return The password. - */ -const char *purple_account_get_password(const PurpleAccount *account); - -/** - * Returns the account's alias. - * - * @param account The account. - * - * @return The alias. - */ -const char *purple_account_get_alias(const PurpleAccount *account); - -/** - * Returns the account's user information. - * - * @param account The account. - * - * @return The user information. - */ -const char *purple_account_get_user_info(const PurpleAccount *account); - -/** - * Gets the account's buddy icon path. - * - * @param account The account. - * - * @return The buddy icon's non-cached path. - */ -const char *purple_account_get_buddy_icon_path(const PurpleAccount *account); - -/** - * Returns the account's protocol ID. - * - * @param account The account. - * - * @return The protocol ID. - */ -const char *purple_account_get_protocol_id(const PurpleAccount *account); - -/** - * Returns the account's protocol name. - * - * @param account The account. - * - * @return The protocol name. - */ -const char *purple_account_get_protocol_name(const PurpleAccount *account); - -/** - * Returns the account's connection. - * - * @param account The account. - * - * @return The connection. - */ -PurpleConnection *purple_account_get_connection(const PurpleAccount *account); - -/** - * Returns a name for this account appropriate for display to the user. In - * order of preference: the account's alias; the contact or buddy alias (if - * the account exists on its own buddy list); the connection's display name; - * the account's username. - * - * @param account The account. - * - * @return The name to display. - * - * @since 2.7.0 - */ -const gchar *purple_account_get_name_for_display(const PurpleAccount *account); - -/** - * Returns whether or not this account should save its password. - * - * @param account The account. - * - * @return @c TRUE if it should remember the password. - */ -gboolean purple_account_get_remember_password(const PurpleAccount *account); - -/** - * Returns whether or not this account should check for mail. - * - * @param account The account. - * - * @return @c TRUE if it should check for mail. - */ -gboolean purple_account_get_check_mail(const PurpleAccount *account); - -/** - * Returns whether or not this account is enabled for the - * specified UI. - * - * @param account The account. - * @param ui The UI. - * - * @return @c TRUE if it enabled on this UI. - */ -gboolean purple_account_get_enabled(const PurpleAccount *account, - const char *ui); - -/** - * Returns the account's proxy information. - * - * @param account The account. - * - * @return The proxy information. - */ -PurpleProxyInfo *purple_account_get_proxy_info(const PurpleAccount *account); - -/** - * Returns the account's privacy type. - * - * @param account The account. - * - * @return The privacy type. - * - * @since 2.7.0 - */ -PurplePrivacyType purple_account_get_privacy_type(const PurpleAccount *account); - -/** - * Returns the active status for this account. This looks through - * the PurplePresence associated with this account and returns the - * PurpleStatus that has its active flag set to "TRUE." There can be - * only one active PurpleStatus in a PurplePresence. - * - * @param account The account. - * - * @return The active status. - */ -PurpleStatus *purple_account_get_active_status(const PurpleAccount *account); - -/** - * Returns the account status with the specified ID. - * - * Note that this works differently than purple_buddy_get_status() in that - * it will only return NULL if the status was not registered. - * - * @param account The account. - * @param status_id The status ID. - * - * @return The status, or NULL if it was never registered. - */ -PurpleStatus *purple_account_get_status(const PurpleAccount *account, - const char *status_id); - -/** - * Returns the account status type with the specified ID. - * - * @param account The account. - * @param id The ID of the status type to find. - * - * @return The status type if found, or NULL. - */ -PurpleStatusType *purple_account_get_status_type(const PurpleAccount *account, - const char *id); - -/** - * Returns the account status type with the specified primitive. - * Note: It is possible for an account to have more than one - * PurpleStatusType with the same primitive. In this case, the - * first PurpleStatusType is returned. - * - * @param account The account. - * @param primitive The type of the status type to find. - * - * @return The status if found, or NULL. - */ -PurpleStatusType *purple_account_get_status_type_with_primitive( - const PurpleAccount *account, - PurpleStatusPrimitive primitive); - -/** - * Returns the account's presence. - * - * @param account The account. - * - * @return The account's presence. - */ -PurplePresence *purple_account_get_presence(const PurpleAccount *account); - -/** - * Returns whether or not an account status is active. - * - * @param account The account. - * @param status_id The status ID. - * - * @return TRUE if active, or FALSE if not. - */ -gboolean purple_account_is_status_active(const PurpleAccount *account, - const char *status_id); - -/** - * Returns the account's status types. - * - * @param account The account. - * - * @constreturn The account's status types. - */ -GList *purple_account_get_status_types(const PurpleAccount *account); - -/** - * Returns a protocol-specific integer setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -int purple_account_get_int(const PurpleAccount *account, const char *name, - int default_value); - -/** - * Returns a protocol-specific string setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -const char *purple_account_get_string(const PurpleAccount *account, - const char *name, - const char *default_value); - -/** - * Returns a protocol-specific boolean setting for an account. - * - * @param account The account. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -gboolean purple_account_get_bool(const PurpleAccount *account, const char *name, - gboolean default_value); - -/** - * Returns a UI-specific integer setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -int purple_account_get_ui_int(const PurpleAccount *account, const char *ui, - const char *name, int default_value); - -/** - * Returns a UI-specific string setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -const char *purple_account_get_ui_string(const PurpleAccount *account, - const char *ui, const char *name, - const char *default_value); - -/** - * Returns a UI-specific boolean setting for an account. - * - * @param account The account. - * @param ui The UI name. - * @param name The name of the setting. - * @param default_value The default value. - * - * @return The value. - */ -gboolean purple_account_get_ui_bool(const PurpleAccount *account, const char *ui, - const char *name, gboolean default_value); - - -/** - * Returns the system log for an account. - * - * @param account The account. - * @param create Should it be created if it doesn't exist? - * - * @return The log. - * - * @note Callers should almost always pass @c FALSE for @a create. - * Passing @c TRUE could result in an existing log being reopened, - * if the log has already been closed, which not all loggers deal - * with appropriately. - */ -PurpleLog *purple_account_get_log(PurpleAccount *account, gboolean create); - -/** - * Frees the system log of an account - * - * @param account The account. - */ -void purple_account_destroy_log(PurpleAccount *account); - -/** - * Adds a buddy to the server-side buddy list for the specified account. - * - * @param account The account. - * @param buddy The buddy to add. - * - * @deprecated Use purple_account_add_buddy_with_invite and \c NULL message. - */ -void purple_account_add_buddy(PurpleAccount *account, PurpleBuddy *buddy); -/** - * Adds a buddy to the server-side buddy list for the specified account. - * - * @param account The account. - * @param buddy The buddy to add. - * @param message The invite message. This may be ignored by a prpl. - * - * @since 2.8.0 - */ -void purple_account_add_buddy_with_invite(PurpleAccount *account, PurpleBuddy *buddy, const char *message); - -/** - * Adds a list of buddies to the server-side buddy list. - * - * @param account The account. - * @param buddies The list of PurpleBlistNodes representing the buddies to add. - * - * @deprecated Use purple_account_add_buddies_with_invite and \c NULL message. - */ -void purple_account_add_buddies(PurpleAccount *account, GList *buddies); -/** - * Adds a list of buddies to the server-side buddy list. - * - * @param account The account. - * @param buddies The list of PurpleBlistNodes representing the buddies to add. - * @param message The invite message. This may be ignored by a prpl. - * - * @since 2.8.0 - */ -void purple_account_add_buddies_with_invite(PurpleAccount *account, GList *buddies, const char *message); - -/** - * Removes a buddy from the server-side buddy list. - * - * @param account The account. - * @param buddy The buddy to remove. - * @param group The group to remove the buddy from. - */ -void purple_account_remove_buddy(PurpleAccount *account, PurpleBuddy *buddy, - PurpleGroup *group); - -/** - * Removes a list of buddies from the server-side buddy list. - * - * @note The lists buddies and groups are parallel lists. Be sure that node n of - * groups matches node n of buddies. - * - * @param account The account. - * @param buddies The list of buddies to remove. - * @param groups The list of groups to remove buddies from. Each node of this - * list should match the corresponding node of buddies. - */ -void purple_account_remove_buddies(PurpleAccount *account, GList *buddies, - GList *groups); - -/** - * Removes a group from the server-side buddy list. - * - * @param account The account. - * @param group The group to remove. - */ -void purple_account_remove_group(PurpleAccount *account, PurpleGroup *group); - -/** - * Changes the password on the specified account. - * - * @param account The account. - * @param orig_pw The old password. - * @param new_pw The new password. - */ -void purple_account_change_password(PurpleAccount *account, const char *orig_pw, - const char *new_pw); - -/** - * Whether the account supports sending offline messages to buddy. - * - * @param account The account - * @param buddy The buddy - */ -gboolean purple_account_supports_offline_message(PurpleAccount *account, PurpleBuddy *buddy); - -/** - * Get the error that caused the account to be disconnected, or @c NULL if the - * account is happily connected or disconnected without an error. - * - * @param account The account whose error should be retrieved. - * @constreturn The type of error and a human-readable description of the - * current error, or @c NULL if there is no current error. This - * pointer is guaranteed to remain valid until the @ref - * account-error-changed signal is emitted for @a account. - */ -const PurpleConnectionErrorInfo *purple_account_get_current_error(PurpleAccount *account); - -/** - * Clear an account's current error state, resetting it to @c NULL. - * - * @param account The account whose error state should be cleared. - */ -void purple_account_clear_current_error(PurpleAccount *account); - -/*@}*/ - -/**************************************************************************/ -/** @name Accounts API */ -/**************************************************************************/ -/*@{*/ - -/** - * Adds an account to the list of accounts. - * - * @param account The account. - */ -void purple_accounts_add(PurpleAccount *account); - -/** - * Removes an account from the list of accounts. - * - * @param account The account. - */ -void purple_accounts_remove(PurpleAccount *account); - -/** - * Deletes an account. - * - * This will remove any buddies from the buddy list that belong to this - * account, buddy pounces that belong to this account, and will also - * destroy @a account. - * - * @param account The account. - */ -void purple_accounts_delete(PurpleAccount *account); - -/** - * Reorders an account. - * - * @param account The account to reorder. - * @param new_index The new index for the account. - */ -void purple_accounts_reorder(PurpleAccount *account, gint new_index); - -/** - * Returns a list of all accounts. - * - * @constreturn A list of all accounts. - */ -GList *purple_accounts_get_all(void); - -/** - * Returns a list of all enabled accounts - * - * @return A list of all enabled accounts. The list is owned - * by the caller, and must be g_list_free()d to avoid - * leaking the nodes. - */ -GList *purple_accounts_get_all_active(void); - -/** - * Finds an account with the specified name and protocol id. - * - * @param name The account username. - * @param protocol The account protocol ID. - * - * @return The account, if found, or @c FALSE otherwise. - */ -PurpleAccount *purple_accounts_find(const char *name, const char *protocol); - -/** - * This is called by the core after all subsystems and what - * not have been initialized. It sets all enabled accounts - * to their startup status by signing them on, setting them - * away, etc. - * - * You probably shouldn't call this unless you really know - * what you're doing. - */ -void purple_accounts_restore_current_statuses(void); - -/*@}*/ - - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ -/** - * Sets the UI operations structure to be used for accounts. - * - * @param ops The UI operations structure. - */ -void purple_accounts_set_ui_ops(PurpleAccountUiOps *ops); - -/** - * Returns the UI operations structure used for accounts. - * - * @return The UI operations structure in use. - */ -PurpleAccountUiOps *purple_accounts_get_ui_ops(void); - -/*@}*/ - - -/**************************************************************************/ -/** @name Accounts Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the accounts subsystem handle. - * - * @return The accounts subsystem handle. - */ -void *purple_accounts_get_handle(void); - -/** - * Initializes the accounts subsystem. - */ -void purple_accounts_init(void); - -/** - * Uninitializes the accounts subsystem. - */ -void purple_accounts_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_ACCOUNT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/accountopt.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/accountopt.h deleted file mode 100644 index 85aa181..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/accountopt.h +++ /dev/null @@ -1,395 +0,0 @@ -/** - * @file accountopt.h Account Options API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_ACCOUNTOPT_H_ -#define _PURPLE_ACCOUNTOPT_H_ - -#include "prefs.h" - -/** - * An option for an account. - * - * This is set by protocol plugins, and appears in the account settings - * dialogs. - */ -typedef struct -{ - PurplePrefType type; /**< The type of value. */ - - char *text; /**< The text that will appear to the user. */ - char *pref_name; /**< The name of the associated preference. */ - - union - { - gboolean boolean; /**< The default boolean value. */ - int integer; /**< The default integer value. */ - char *string; /**< The default string value. */ - GList *list; /**< The default list value. */ - - } default_value; - - gboolean masked; /**< Whether the value entered should be - * obscured from view (for passwords and - * similar options) - */ -} PurpleAccountOption; - -/** - * A username split. - * - * This is used by some protocols to separate the fields of the username - * into more human-readable components. - */ -typedef struct -{ - char *text; /**< The text that will appear to the user. */ - char *default_value; /**< The default value. */ - char field_sep; /**< The field separator. */ - gboolean reverse; /**< TRUE if the separator should be found - starting a the end of the string, FALSE - otherwise */ - -} PurpleAccountUserSplit; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Account Option API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new account option. If you know what @a type will be in advance, - * consider using purple_account_option_bool_new(), - * purple_account_option_int_new(), purple_account_option_string_new() or - * purple_account_option_list_new() (as appropriate) instead. - * - * @param type The type of option. - * @param text The text of the option. - * @param pref_name The account preference name for the option. - * - * @return The account option. - */ -PurpleAccountOption *purple_account_option_new(PurplePrefType type, - const char *text, const char *pref_name); - -/** - * Creates a new boolean account option. - * - * @param text The text of the option. - * @param pref_name The account preference name for the option. - * @param default_value The default value. - * - * @return The account option. - */ -PurpleAccountOption *purple_account_option_bool_new(const char *text, - const char *pref_name, gboolean default_value); - -/** - * Creates a new integer account option. - * - * @param text The text of the option. - * @param pref_name The account preference name for the option. - * @param default_value The default value. - * - * @return The account option. - */ -PurpleAccountOption *purple_account_option_int_new(const char *text, - const char *pref_name, int default_value); - -/** - * Creates a new string account option. - * - * @param text The text of the option. - * @param pref_name The account preference name for the option. - * @param default_value The default value. - * - * @return The account option. - */ -PurpleAccountOption *purple_account_option_string_new(const char *text, - const char *pref_name, const char *default_value); - -/** - * Creates a new list account option. - * - * The list passed will be owned by the account option, and the - * strings inside will be freed automatically. - * - * The list is a list of #PurpleKeyValuePair items. The key is the label that - * should be displayed to the user, and the (const char *) value is - * the internal ID that should be passed to purple_account_set_string() to - * choose that value. - * - * @param text The text of the option. - * @param pref_name The account preference name for the option. - * @param list The key, value list. - * - * @return The account option. - */ -PurpleAccountOption *purple_account_option_list_new(const char *text, - const char *pref_name, GList *list); - -/** - * Destroys an account option. - * - * @param option The option to destroy. - */ -void purple_account_option_destroy(PurpleAccountOption *option); - -/** - * Sets the default boolean value for an account option. - * - * @param option The account option. - * @param value The default boolean value. - */ -void purple_account_option_set_default_bool(PurpleAccountOption *option, - gboolean value); - -/** - * Sets the default integer value for an account option. - * - * @param option The account option. - * @param value The default integer value. - */ -void purple_account_option_set_default_int(PurpleAccountOption *option, - int value); - -/** - * Sets the default string value for an account option. - * - * @param option The account option. - * @param value The default string value. - */ -void purple_account_option_set_default_string(PurpleAccountOption *option, - const char *value); - -/** - * Sets the masking for an account option. Setting this to %TRUE acts - * as a hint to the UI that the option's value should be obscured from - * view, like a password. - * - * @param option The account option. - * @param masked The masking. - */ -void -purple_account_option_set_masked(PurpleAccountOption *option, gboolean masked); - -/** - * Sets the list values for an account option. - * - * The list passed will be owned by the account option, and the - * strings inside will be freed automatically. - * - * The list is in key, value pairs. The key is the ID stored and used - * internally, and the value is the label displayed. - * - * @param option The account option. - * @param values The default list value. - */ -void purple_account_option_set_list(PurpleAccountOption *option, GList *values); - -/** - * Adds an item to a list account option. - * - * @param option The account option. - * @param key The key. - * @param value The value. - */ -void purple_account_option_add_list_item(PurpleAccountOption *option, - const char *key, const char *value); - -/** - * Returns the specified account option's type. - * - * @param option The account option. - * - * @return The account option's type. - */ -PurplePrefType purple_account_option_get_type(const PurpleAccountOption *option); - -/** - * Returns the text for an account option. - * - * @param option The account option. - * - * @return The account option's text. - */ -const char *purple_account_option_get_text(const PurpleAccountOption *option); - -/** - * Returns the name of an account option. This corresponds to the @c pref_name - * parameter supplied to purple_account_option_new() or one of the - * type-specific constructors. - * - * @param option The account option. - * - * @return The option's name. - */ -const char *purple_account_option_get_setting(const PurpleAccountOption *option); - -/** - * Returns the default boolean value for an account option. - * - * @param option The account option. - * - * @return The default boolean value. - */ -gboolean purple_account_option_get_default_bool(const PurpleAccountOption *option); - -/** - * Returns the default integer value for an account option. - * - * @param option The account option. - * - * @return The default integer value. - */ -int purple_account_option_get_default_int(const PurpleAccountOption *option); - -/** - * Returns the default string value for an account option. - * - * @param option The account option. - * - * @return The default string value. - */ -const char *purple_account_option_get_default_string( - const PurpleAccountOption *option); - -/** - * Returns the default string value for a list account option. - * - * @param option The account option. - * - * @return The default list string value. - */ -const char *purple_account_option_get_default_list_value( - const PurpleAccountOption *option); - -/** - * Returns whether an option's value should be masked from view, like a - * password. If so, the UI might display each character of the option - * as a '*' (for example). - * - * @param option The account option. - * - * @return %TRUE if the option's value should be obscured. - */ -gboolean -purple_account_option_get_masked(const PurpleAccountOption *option); - -/** - * Returns the list values for an account option. - * - * @param option The account option. - * - * @constreturn A list of #PurpleKeyValuePair, mapping the human-readable - * description of the value to the (const char *) that - * should be passed to purple_account_set_string() to set the - * option. - */ -GList *purple_account_option_get_list(const PurpleAccountOption *option); - -/*@}*/ - - -/**************************************************************************/ -/** @name Account User Split API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new account username split. - * - * @param text The text of the option. - * @param default_value The default value. - * @param sep The field separator. - * - * @return The new user split. - */ -PurpleAccountUserSplit *purple_account_user_split_new(const char *text, - const char *default_value, - char sep); - -/** - * Destroys an account username split. - * - * @param split The split to destroy. - */ -void purple_account_user_split_destroy(PurpleAccountUserSplit *split); - -/** - * Returns the text for an account username split. - * - * @param split The account username split. - * - * @return The account username split's text. - */ -const char *purple_account_user_split_get_text(const PurpleAccountUserSplit *split); - -/** - * Returns the default string value for an account split. - * - * @param split The account username split. - * - * @return The default string. - */ -const char *purple_account_user_split_get_default_value( - const PurpleAccountUserSplit *split); - -/** - * Returns the field separator for an account split. - * - * @param split The account username split. - * - * @return The field separator. - */ -char purple_account_user_split_get_separator(const PurpleAccountUserSplit *split); - -/** - * Returns the 'reverse' value for an account split. - * - * @param split The account username split. - * - * @return The 'reverse' value. - */ -gboolean purple_account_user_split_get_reverse(const PurpleAccountUserSplit *split); - -/** - * Sets the 'reverse' value for an account split. - * - * @param split The account username split. - * @param reverse The 'reverse' value - */ -void purple_account_user_split_set_reverse(PurpleAccountUserSplit *split, gboolean reverse); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_ACCOUNTOPT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/auth.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/auth.h deleted file mode 100644 index b226fb5..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/auth.h +++ /dev/null @@ -1,67 +0,0 @@ -/** - * @file auth.h Authentication routines - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_AUTH_H_ -#define PURPLE_JABBER_AUTH_H_ - -typedef struct _JabberSaslMech JabberSaslMech; - -#include "jabber.h" -#include "xmlnode.h" - -typedef enum { - JABBER_SASL_STATE_FAIL = -1, /* Abort, Retry, Fail? */ - JABBER_SASL_STATE_OK = 0, /* Hooray! */ - JABBER_SASL_STATE_CONTINUE = 1 /* More authentication required */ -} JabberSaslState; - -struct _JabberSaslMech { - gint8 priority; /* Higher priority will be tried before lower priority */ - const gchar *name; - JabberSaslState (*start)(JabberStream *js, xmlnode *mechanisms, xmlnode **reply, char **msg); - JabberSaslState (*handle_challenge)(JabberStream *js, xmlnode *packet, xmlnode **reply, char **msg); - JabberSaslState (*handle_success)(JabberStream *js, xmlnode *packet, char **msg); - JabberSaslState (*handle_failure)(JabberStream *js, xmlnode *packet, xmlnode **reply, char **msg); - void (*dispose)(JabberStream *js); -}; - -void jabber_auth_start(JabberStream *js, xmlnode *packet); -void jabber_auth_start_old(JabberStream *js); -void jabber_auth_handle_challenge(JabberStream *js, xmlnode *packet); -void jabber_auth_handle_success(JabberStream *js, xmlnode *packet); -void jabber_auth_handle_failure(JabberStream *js, xmlnode *packet); - -JabberSaslMech *jabber_auth_get_plain_mech(void); -JabberSaslMech *jabber_auth_get_digest_md5_mech(void); -JabberSaslMech **jabber_auth_get_scram_mechs(gint *count); -#ifdef HAVE_CYRUS_SASL -JabberSaslMech *jabber_auth_get_cyrus_mech(void); -#endif - -void jabber_auth_add_mech(JabberSaslMech *); -void jabber_auth_remove_mech(JabberSaslMech *); - -void jabber_auth_init(void); -void jabber_auth_uninit(void); - -#endif /* PURPLE_JABBER_AUTH_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/blist.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/blist.h deleted file mode 100644 index a053d08..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/blist.h +++ /dev/null @@ -1,1278 +0,0 @@ -/** - * @file blist.h Buddy List API - * @ingroup core - * @see @ref blist-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_BLIST_H_ -#define _PURPLE_BLIST_H_ - -/* I can't believe I let ChipX86 inspire me to write good code. -Sean */ - -#include - -/** @copydoc _PurpleBuddyList */ -typedef struct _PurpleBuddyList PurpleBuddyList; -/** @copydoc _PurpleBlistUiOps */ -typedef struct _PurpleBlistUiOps PurpleBlistUiOps; -/** @copydoc _PurpleBlistNode */ -typedef struct _PurpleBlistNode PurpleBlistNode; - -/** @copydoc _PurpleChat */ -typedef struct _PurpleChat PurpleChat; -/** @copydoc _PurpleGroup */ -typedef struct _PurpleGroup PurpleGroup; -/** @copydoc _PurpleContact */ -typedef struct _PurpleContact PurpleContact; -/** @copydoc _PurpleBuddy */ -typedef struct _PurpleBuddy PurpleBuddy; - -/**************************************************************************/ -/* Enumerations */ -/**************************************************************************/ -typedef enum -{ - PURPLE_BLIST_GROUP_NODE, - PURPLE_BLIST_CONTACT_NODE, - PURPLE_BLIST_BUDDY_NODE, - PURPLE_BLIST_CHAT_NODE, - PURPLE_BLIST_OTHER_NODE - -} PurpleBlistNodeType; - -#define PURPLE_BLIST_NODE_IS_CHAT(n) (purple_blist_node_get_type(n) == PURPLE_BLIST_CHAT_NODE) -#define PURPLE_BLIST_NODE_IS_BUDDY(n) (purple_blist_node_get_type(n) == PURPLE_BLIST_BUDDY_NODE) -#define PURPLE_BLIST_NODE_IS_CONTACT(n) (purple_blist_node_get_type(n) == PURPLE_BLIST_CONTACT_NODE) -#define PURPLE_BLIST_NODE_IS_GROUP(n) (purple_blist_node_get_type(n) == PURPLE_BLIST_GROUP_NODE) - -#define PURPLE_BUDDY_IS_ONLINE(b) \ - ((b) != NULL && purple_account_is_connected(purple_buddy_get_account(b)) && \ - purple_presence_is_online(purple_buddy_get_presence(b))) - -typedef enum -{ - PURPLE_BLIST_NODE_FLAG_NO_SAVE = 1 << 0 /**< node should not be saved with the buddy list */ - -} PurpleBlistNodeFlags; - -/** - * @since 2.6.0 - */ -#define PURPLE_BLIST_NODE(obj) ((PurpleBlistNode *)(obj)) - -#define PURPLE_BLIST_NODE_HAS_FLAG(b, f) (purple_blist_node_get_flags((PurpleBlistNode*)(b)) & (f)) -#define PURPLE_BLIST_NODE_SHOULD_SAVE(b) (! PURPLE_BLIST_NODE_HAS_FLAG(b, PURPLE_BLIST_NODE_FLAG_NO_SAVE)) - -#define PURPLE_BLIST_NODE_NAME(n) (purple_blist_node_get_type(n) == PURPLE_BLIST_CHAT_NODE ? purple_chat_get_name((PurpleChat*)n) : \ - purple_blist_node_get_type(n) == PURPLE_BLIST_BUDDY_NODE ? purple_buddy_get_name((PurpleBuddy*)n) : NULL) - -/** - * @since 2.6.0 - */ -#define PURPLE_GROUP(obj) ((PurpleGroup *)(obj)) - -/** - * @since 2.6.0 - */ -#define PURPLE_CONTACT(obj) ((PurpleContact *)(obj)) - -/** - * @since 2.6.0 - */ -#define PURPLE_BUDDY(obj) ((PurpleBuddy *)(obj)) - -/** - * @since 2.6.0 - */ -#define PURPLE_CHAT(obj) ((PurpleChat *)(obj)) - -#include "account.h" -#include "buddyicon.h" -#include "media.h" -#include "status.h" - -/**************************************************************************/ -/* Data Structures */ -/**************************************************************************/ - -#if !(defined PURPLE_HIDE_STRUCTS) || (defined _PURPLE_BLIST_C_) - -/** - * A Buddy list node. This can represent a group, a buddy, or anything else. - * This is a base class for PurpleBuddy, PurpleContact, PurpleGroup, and for - * anything else that wants to put itself in the buddy list. */ -struct _PurpleBlistNode { - PurpleBlistNodeType type; /**< The type of node this is */ - PurpleBlistNode *prev; /**< The sibling before this buddy. */ - PurpleBlistNode *next; /**< The sibling after this buddy. */ - PurpleBlistNode *parent; /**< The parent of this node */ - PurpleBlistNode *child; /**< The child of this node */ - GHashTable *settings; /**< per-node settings */ - void *ui_data; /**< The UI can put data here. */ - PurpleBlistNodeFlags flags; /**< The buddy flags */ -}; - -/** - * A buddy. This contains everything Purple will ever need to know about someone on the buddy list. Everything. - */ -struct _PurpleBuddy { - PurpleBlistNode node; /**< The node that this buddy inherits from */ - char *name; /**< The name of the buddy. */ - char *alias; /**< The user-set alias of the buddy */ - char *server_alias; /**< The server-specified alias of the buddy. (i.e. MSN "Friendly Names") */ - void *proto_data; /**< This allows the prpl to associate whatever data it wants with a buddy */ - PurpleBuddyIcon *icon; /**< The buddy icon. */ - PurpleAccount *account; /**< the account this buddy belongs to */ - PurplePresence *presence; - PurpleMediaCaps media_caps; /**< The media capabilities of the buddy. */ -}; - -/** - * A contact. This contains everything Purple will ever need to know about a contact. - */ -struct _PurpleContact { - PurpleBlistNode node; /**< The node that this contact inherits from. */ - char *alias; /**< The user-set alias of the contact */ - int totalsize; /**< The number of buddies in this contact */ - int currentsize; /**< The number of buddies in this contact corresponding to online accounts */ - int online; /**< The number of buddies in this contact who are currently online */ - PurpleBuddy *priority; /**< The "top" buddy for this contact */ - gboolean priority_valid; /**< Is priority valid? */ -}; - - -/** - * A group. This contains everything Purple will ever need to know about a group. - */ -struct _PurpleGroup { - PurpleBlistNode node; /**< The node that this group inherits from */ - char *name; /**< The name of this group. */ - int totalsize; /**< The number of chats and contacts in this group */ - int currentsize; /**< The number of chats and contacts in this group corresponding to online accounts */ - int online; /**< The number of chats and contacts in this group who are currently online */ -}; - -/** - * A chat. This contains everything Purple needs to put a chat room in the - * buddy list. - */ -struct _PurpleChat { - PurpleBlistNode node; /**< The node that this chat inherits from */ - char *alias; /**< The display name of this chat. */ - GHashTable *components; /**< the stuff the protocol needs to know to join the chat */ - PurpleAccount *account; /**< The account this chat is attached to */ -}; - -/** - * The Buddy List - */ -struct _PurpleBuddyList { - PurpleBlistNode *root; /**< The first node in the buddy list */ - GHashTable *buddies; /**< Every buddy in this list */ - void *ui_data; /**< UI-specific data. */ -}; - -#endif /* PURPLE_HIDE_STRUCTS && PURPLE_BLIST_STRUCTS */ - -/** - * Buddy list UI operations. - * - * Any UI representing a buddy list must assign a filled-out PurpleBlistUiOps - * structure to the buddy list core. - */ -struct _PurpleBlistUiOps -{ - void (*new_list)(PurpleBuddyList *list); /**< Sets UI-specific data on a buddy list. */ - void (*new_node)(PurpleBlistNode *node); /**< Sets UI-specific data on a node. */ - void (*show)(PurpleBuddyList *list); /**< The core will call this when it's finished doing its core stuff */ - void (*update)(PurpleBuddyList *list, - PurpleBlistNode *node); /**< This will update a node in the buddy list. */ - void (*remove)(PurpleBuddyList *list, - PurpleBlistNode *node); /**< This removes a node from the list */ - void (*destroy)(PurpleBuddyList *list); /**< When the list is destroyed, this is called to destroy the UI. */ - void (*set_visible)(PurpleBuddyList *list, - gboolean show); /**< Hides or unhides the buddy list */ - void (*request_add_buddy)(PurpleAccount *account, const char *username, - const char *group, const char *alias); - void (*request_add_chat)(PurpleAccount *account, PurpleGroup *group, - const char *alias, const char *name); - void (*request_add_group)(void); - - /** - * This is called when a node has been modified and should be saved. - * - * Implementation of this UI op is OPTIONAL. If not implemented, it will - * be set to a fallback function that saves data to blist.xml like in - * previous libpurple versions. - * - * @param node The node which has been modified. - * - * @since 2.6.0. - */ - void (*save_node)(PurpleBlistNode *node); - - /** - * Called when a node is about to be removed from the buddy list. - * The UI op should update the relevant data structures to remove this - * node (for example, removing a buddy from the group this node is in). - * - * Implementation of this UI op is OPTIONAL. If not implemented, it will - * be set to a fallback function that saves data to blist.xml like in - * previous libpurple versions. - * - * @param node The node which has been modified. - * @since 2.6.0. - */ - void (*remove_node)(PurpleBlistNode *node); - - /** - * Called to save all the data for an account. If the UI sets this, - * the callback must save the privacy and buddy list data for an account. - * If the account is NULL, save the data for all accounts. - * - * Implementation of this UI op is OPTIONAL. If not implemented, it will - * be set to a fallback function that saves data to blist.xml like in - * previous libpurple versions. - * - * @param account The account whose data to save. If NULL, save all data - * for all accounts. - * @since 2.6.0. - */ - void (*save_account)(PurpleAccount *account); - - void (*_purple_reserved1)(void); -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Buddy List API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new buddy list - * - * @return The new buddy list. - * @deprecated In 3.0.0, this will be handled by purple_blist_init() - */ -PurpleBuddyList *purple_blist_new(void); - -/** - * Sets the main buddy list. - * - * @param blist The buddy list you want to use. - * @deprecated In 3.0.0, this will be handled by purple_blist_init() - */ -void purple_set_blist(PurpleBuddyList *blist); - -/** - * Returns the main buddy list. - * - * @return The main buddy list. - */ -PurpleBuddyList *purple_get_blist(void); - -/** - * Returns the root node of the main buddy list. - * - * @return The root node. - */ -PurpleBlistNode *purple_blist_get_root(void); - -/** - * Returns a list of every buddy in the list. Use of this function is - * discouraged if you do not actually need every buddy in the list. Use - * purple_find_buddies instead. - * - * @return A list of every buddy in the list. Caller is responsible for - * freeing the list. - * - * @see purple_find_buddies - * @since 2.6.0 - */ -GSList *purple_blist_get_buddies(void); - -/** - * Returns the UI data for the list. - * - * @return The UI data for the list. - * - * @since 2.6.0 - */ -gpointer purple_blist_get_ui_data(void); - -/** - * Sets the UI data for the list. - * - * @param ui_data The UI data for the list. - * - * @since 2.6.0 - */ -void purple_blist_set_ui_data(gpointer ui_data); - -/** - * Returns the next node of a given node. This function is to be used to iterate - * over the tree returned by purple_get_blist. - * - * @param node A node. - * @param offline Whether to include nodes for offline accounts - * @return The next node - * @see purple_blist_node_get_parent - * @see purple_blist_node_get_first_child - * @see purple_blist_node_get_sibling_next - * @see purple_blist_node_get_sibling_prev - */ -PurpleBlistNode *purple_blist_node_next(PurpleBlistNode *node, gboolean offline); - -/** - * Returns the parent node of a given node. - * - * @param node A node. - * @return The parent node. - * @since 2.4.0 - * @see purple_blist_node_get_first_child - * @see purple_blist_node_get_sibling_next - * @see purple_blist_node_get_sibling_prev - * @see purple_blist_node_next - */ -PurpleBlistNode *purple_blist_node_get_parent(PurpleBlistNode *node); - -/** - * Returns the the first child node of a given node. - * - * @param node A node. - * @return The child node. - * @since 2.4.0 - * @see purple_blist_node_get_parent - * @see purple_blist_node_get_sibling_next - * @see purple_blist_node_get_sibling_prev - * @see purple_blist_node_next - */ -PurpleBlistNode *purple_blist_node_get_first_child(PurpleBlistNode *node); - -/** - * Returns the sibling node of a given node. - * - * @param node A node. - * @return The sibling node. - * @since 2.4.0 - * @see purple_blist_node_get_parent - * @see purple_blist_node_get_first_child - * @see purple_blist_node_get_sibling_prev - * @see purple_blist_node_next - */ -PurpleBlistNode *purple_blist_node_get_sibling_next(PurpleBlistNode *node); - -/** - * Returns the previous sibling node of a given node. - * - * @param node A node. - * @return The sibling node. - * @since 2.4.0 - * @see purple_blist_node_get_parent - * @see purple_blist_node_get_first_child - * @see purple_blist_node_get_sibling_next - * @see purple_blist_node_next - */ -PurpleBlistNode *purple_blist_node_get_sibling_prev(PurpleBlistNode *node); - -/** - * Returns the UI data of a given node. - * - * @param node The node. - * @return The UI data. - * @since 2.6.0 - */ -gpointer purple_blist_node_get_ui_data(const PurpleBlistNode *node); - -/** - * Sets the UI data of a given node. - * - * @param node The node. - * @param ui_data The UI data. - * - * @since 2.6.0 - */ -void purple_blist_node_set_ui_data(PurpleBlistNode *node, gpointer ui_data); - -/** - * Shows the buddy list, creating a new one if necessary. - */ -void purple_blist_show(void); - - -/** - * Destroys the buddy list window. - * - * @deprecated The UI is responsible for cleaning up the - * PurpleBuddyList->ui_data. purple_blist_uninit() will free the - * PurpleBuddyList* itself. - */ -void purple_blist_destroy(void); - -/** - * Hides or unhides the buddy list. - * - * @param show Whether or not to show the buddy list - */ -void purple_blist_set_visible(gboolean show); - -/** - * Updates a buddy's status. - * - * This should only be called from within Purple. - * - * @param buddy The buddy whose status has changed. - * @param old_status The status from which we are changing. - */ -void purple_blist_update_buddy_status(PurpleBuddy *buddy, PurpleStatus *old_status); - -/** - * Updates a node's custom icon. - * - * @param node The PurpleBlistNode whose custom icon has changed. - * - * @since 2.5.0 - */ -void purple_blist_update_node_icon(PurpleBlistNode *node); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_BLIST_C_) -/** - * Updates a buddy's icon. - * - * @param buddy The buddy whose buddy icon has changed - * @deprecated Use purple_blist_update_node_icon() instead. - */ -void purple_blist_update_buddy_icon(PurpleBuddy *buddy); -#endif - -/** - * Renames a buddy in the buddy list. - * - * @param buddy The buddy whose name will be changed. - * @param name The new name of the buddy. - */ -void purple_blist_rename_buddy(PurpleBuddy *buddy, const char *name); - -/** - * Aliases a contact in the buddy list. - * - * @param contact The contact whose alias will be changed. - * @param alias The contact's alias. - */ -void purple_blist_alias_contact(PurpleContact *contact, const char *alias); - -/** - * Aliases a buddy in the buddy list. - * - * @param buddy The buddy whose alias will be changed. - * @param alias The buddy's alias. - */ -void purple_blist_alias_buddy(PurpleBuddy *buddy, const char *alias); - -/** - * Sets the server-sent alias of a buddy in the buddy list. - * PRPLs should call serv_got_alias() instead of this. - * - * @param buddy The buddy whose alias will be changed. - * @param alias The buddy's "official" alias. - */ -void purple_blist_server_alias_buddy(PurpleBuddy *buddy, const char *alias); - -/** - * Aliases a chat in the buddy list. - * - * @param chat The chat whose alias will be changed. - * @param alias The chat's new alias. - */ -void purple_blist_alias_chat(PurpleChat *chat, const char *alias); - -/** - * Renames a group - * - * @param group The group to rename - * @param name The new name - */ -void purple_blist_rename_group(PurpleGroup *group, const char *name); - -/** - * Creates a new chat for the buddy list - * - * @param account The account this chat will get added to - * @param alias The alias of the new chat - * @param components The info the prpl needs to join the chat. The - * hash function should be g_str_hash() and the - * equal function should be g_str_equal(). - * @return A newly allocated chat - */ -PurpleChat *purple_chat_new(PurpleAccount *account, const char *alias, GHashTable *components); - -/** - * Destroys a chat - * - * @param chat The chat to destroy - */ -void purple_chat_destroy(PurpleChat *chat); - -/** - * Adds a new chat to the buddy list. - * - * The chat will be inserted right after node or appended to the end - * of group if node is NULL. If both are NULL, the buddy will be added to - * the "Chats" group. - * - * @param chat The new chat who gets added - * @param group The group to add the new chat to. - * @param node The insertion point - */ -void purple_blist_add_chat(PurpleChat *chat, PurpleGroup *group, PurpleBlistNode *node); - -/** - * Creates a new buddy. - * - * This function only creates the PurpleBuddy. Use purple_blist_add_buddy - * to add the buddy to the list and purple_account_add_buddy to sync up - * with the server. - * - * @param account The account this buddy will get added to - * @param name The name of the new buddy - * @param alias The alias of the new buddy (or NULL if unaliased) - * @return A newly allocated buddy - * - * @see purple_account_add_buddy - * @see purple_blist_add_buddy - */ -PurpleBuddy *purple_buddy_new(PurpleAccount *account, const char *name, const char *alias); - -/** - * Destroys a buddy - * - * @param buddy The buddy to destroy - */ -void purple_buddy_destroy(PurpleBuddy *buddy); - -/** - * Sets a buddy's icon. - * - * This should only be called from within Purple. You probably want to - * call purple_buddy_icon_set_data(). - * - * @param buddy The buddy. - * @param icon The buddy icon. - * - * @see purple_buddy_icon_set_data() - */ -void purple_buddy_set_icon(PurpleBuddy *buddy, PurpleBuddyIcon *icon); - -/** - * Returns a buddy's account. - * - * @param buddy The buddy. - * - * @return The account - */ -PurpleAccount *purple_buddy_get_account(const PurpleBuddy *buddy); - -/** - * Returns a buddy's name - * - * @param buddy The buddy. - * - * @return The name. - */ -const char *purple_buddy_get_name(const PurpleBuddy *buddy); - -/** - * Returns a buddy's icon. - * - * @param buddy The buddy. - * - * @return The buddy icon. - */ -PurpleBuddyIcon *purple_buddy_get_icon(const PurpleBuddy *buddy); - -/** - * Returns a buddy's protocol-specific data. - * - * This should only be called from the associated prpl. - * - * @param buddy The buddy. - * @return The protocol data. - * - * @see purple_buddy_set_protocol_data() - * @since 2.6.0 - */ -gpointer purple_buddy_get_protocol_data(const PurpleBuddy *buddy); - -/** - * Sets a buddy's protocol-specific data. - * - * This should only be called from the associated prpl. - * - * @param buddy The buddy. - * @param data The data. - * - * @see purple_buddy_get_protocol_data() - * @since 2.6.0 - */ -void purple_buddy_set_protocol_data(PurpleBuddy *buddy, gpointer data); - -/** - * Returns a buddy's contact. - * - * @param buddy The buddy. - * - * @return The buddy's contact. - */ -PurpleContact *purple_buddy_get_contact(PurpleBuddy *buddy); - -/** - * Returns a buddy's presence. - * - * @param buddy The buddy. - * - * @return The buddy's presence. - */ -PurplePresence *purple_buddy_get_presence(const PurpleBuddy *buddy); - -/** - * Gets the media caps from a buddy. - * - * @param buddy The buddy. - * @return The media caps. - * - * @since 2.7.0 - */ -PurpleMediaCaps purple_buddy_get_media_caps(const PurpleBuddy *buddy); - -/** - * Sets the media caps for a buddy. - * - * @param buddy The PurpleBuddy. - * @param media_caps The PurpleMediaCaps. - */ -void purple_buddy_set_media_caps(PurpleBuddy *buddy, PurpleMediaCaps media_caps); - -/** - * Adds a new buddy to the buddy list. - * - * The buddy will be inserted right after node or prepended to the - * group if node is NULL. If both are NULL, the buddy will be added to - * the "Buddies" group. - * - * @param buddy The new buddy who gets added - * @param contact The optional contact to place the buddy in. - * @param group The group to add the new buddy to. - * @param node The insertion point. Pass in NULL to add the node as - * the first child in the given group. - */ -void purple_blist_add_buddy(PurpleBuddy *buddy, PurpleContact *contact, PurpleGroup *group, PurpleBlistNode *node); - -/** - * Creates a new group - * - * You can't have more than one group with the same name. Sorry. If you pass - * this the name of a group that already exists, it will return that group. - * - * @param name The name of the new group - * @return A new group struct -*/ -PurpleGroup *purple_group_new(const char *name); - -/** - * Destroys a group - * - * @param group The group to destroy -*/ -void purple_group_destroy(PurpleGroup *group); - -/** - * Adds a new group to the buddy list. - * - * The new group will be inserted after insert or prepended to the list if - * node is NULL. - * - * @param group The group - * @param node The insertion point - */ -void purple_blist_add_group(PurpleGroup *group, PurpleBlistNode *node); - -/** - * Creates a new contact - * - * @return A new contact struct - */ -PurpleContact *purple_contact_new(void); - -/** - * Destroys a contact - * - * @param contact The contact to destroy - */ -void purple_contact_destroy(PurpleContact *contact); - -/** - * Gets the PurpleGroup from a PurpleContact - * - * @param contact The contact - * @return The group - * - * @since 2.7.0 - */ -PurpleGroup *purple_contact_get_group(const PurpleContact *contact); - -/** - * Adds a new contact to the buddy list. - * - * The new contact will be inserted after insert or prepended to the list if - * node is NULL. - * - * @param contact The contact - * @param group The group to add the contact to - * @param node The insertion point - */ -void purple_blist_add_contact(PurpleContact *contact, PurpleGroup *group, PurpleBlistNode *node); - -/** - * Merges two contacts - * - * All of the buddies from source will be moved to target - * - * @param source The contact to merge - * @param node The place to merge to (a buddy or contact) - */ -void purple_blist_merge_contact(PurpleContact *source, PurpleBlistNode *node); - -/** - * Returns the highest priority buddy for a given contact. - * - * @param contact The contact - * @return The highest priority buddy - */ -PurpleBuddy *purple_contact_get_priority_buddy(PurpleContact *contact); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_BLIST_C_) -/** - * Sets the alias for a contact. - * - * @param contact The contact - * @param alias The alias to set, or NULL to unset - * - * @deprecated Use purple_blist_alias_contact() instead. - */ -void purple_contact_set_alias(PurpleContact *contact, const char *alias); -#endif - -/** - * Gets the alias for a contact. - * - * @param contact The contact - * @return The alias, or NULL if it is not set. - */ -const char *purple_contact_get_alias(PurpleContact *contact); - -/** - * Determines whether an account owns any buddies in a given contact - * - * @param contact The contact to search through. - * @param account The account. - * - * @return TRUE if there are any buddies from account in the contact, or FALSE otherwise. - */ -gboolean purple_contact_on_account(PurpleContact *contact, PurpleAccount *account); - -/** - * Invalidates the priority buddy so that the next call to - * purple_contact_get_priority_buddy recomputes it. - * - * @param contact The contact - */ -void purple_contact_invalidate_priority_buddy(PurpleContact *contact); - -/** - * Removes a buddy from the buddy list and frees the memory allocated to it. - * This doesn't actually try to remove the buddy from the server list. - * - * @param buddy The buddy to be removed - * - * @see purple_account_remove_buddy - */ -void purple_blist_remove_buddy(PurpleBuddy *buddy); - -/** - * Removes a contact, and any buddies it contains, and frees the memory - * allocated to it. This calls purple_blist_remove_buddy and therefore - * doesn't remove the buddies from the server list. - * - * @param contact The contact to be removed - * - * @see purple_blist_remove_buddy - */ -void purple_blist_remove_contact(PurpleContact *contact); - -/** - * Removes a chat from the buddy list and frees the memory allocated to it. - * - * @param chat The chat to be removed - */ -void purple_blist_remove_chat(PurpleChat *chat); - -/** - * Removes a group from the buddy list and frees the memory allocated to it and to - * its children - * - * @param group The group to be removed - */ -void purple_blist_remove_group(PurpleGroup *group); - -/** - * Returns the alias of a buddy. - * - * @param buddy The buddy whose name will be returned. - * @return The alias (if set), server alias (if set), - * or NULL. - */ -const char *purple_buddy_get_alias_only(PurpleBuddy *buddy); - -/** - * Gets the server alias for a buddy. - * - * @param buddy The buddy whose name will be returned - * @return The server alias, or NULL if it is not set. - */ -const char *purple_buddy_get_server_alias(PurpleBuddy *buddy); - -/** - * Returns the correct name to display for a buddy, taking the contact alias - * into account. In order of precedence: the buddy's alias; the buddy's - * contact alias; the buddy's server alias; the buddy's user name. - * - * @param buddy The buddy whose name will be returned - * @return The appropriate name or alias, or NULL. - * - */ -const char *purple_buddy_get_contact_alias(PurpleBuddy *buddy); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_BLIST_C_) -/** - * Returns the correct alias for this user, ignoring server aliases. Used - * when a user-recognizable name is required. In order: buddy's alias; buddy's - * contact alias; buddy's user name. - * - * @param buddy The buddy whose alias will be returned. - * @return The appropriate name or alias. - * @deprecated Try purple_buddy_get_alias(), if server aliases are okay. - */ -const char *purple_buddy_get_local_alias(PurpleBuddy *buddy); -#endif - -/** - * Returns the correct name to display for a buddy. In order of precedence: - * the buddy's alias; the buddy's server alias; the buddy's contact alias; - * the buddy's user name. - * - * @param buddy The buddy whose name will be returned. - * @return The appropriate name or alias, or NULL - */ -const char *purple_buddy_get_alias(PurpleBuddy *buddy); - -/** - * Returns the local alias for the buddy, or @c NULL if none exists. - * - * @param buddy The buddy - * @return The local alias for the buddy - * - * @since 2.6.0 - */ -const char *purple_buddy_get_local_buddy_alias(PurpleBuddy *buddy); - -/** - * Returns the correct name to display for a blist chat. - * - * @param chat The chat whose name will be returned. - * @return The alias (if set), or first component value. - */ -const char *purple_chat_get_name(PurpleChat *chat); - -/** - * Finds the buddy struct given a name and an account - * - * @param account The account this buddy belongs to - * @param name The buddy's name - * @return The buddy or NULL if the buddy does not exist - */ -PurpleBuddy *purple_find_buddy(PurpleAccount *account, const char *name); - -/** - * Finds the buddy struct given a name, an account, and a group - * - * @param account The account this buddy belongs to - * @param name The buddy's name - * @param group The group to look in - * @return The buddy or NULL if the buddy does not exist in the group - */ -PurpleBuddy *purple_find_buddy_in_group(PurpleAccount *account, const char *name, - PurpleGroup *group); - -/** - * Finds all PurpleBuddy structs given a name and an account - * - * @param account The account this buddy belongs to - * @param name The buddy's name (or NULL to return all buddies for the account) - * - * @return A GSList of buddies (which must be freed), or NULL if the buddy doesn't exist - */ -GSList *purple_find_buddies(PurpleAccount *account, const char *name); - - -/** - * Finds a group by name - * - * @param name The group's name - * @return The group or NULL if the group does not exist - */ -PurpleGroup *purple_find_group(const char *name); - -/** - * Finds a chat by name. - * - * @param account The chat's account. - * @param name The chat's name. - * - * @return The chat, or @c NULL if the chat does not exist. - */ -PurpleChat *purple_blist_find_chat(PurpleAccount *account, const char *name); - -/** - * Returns the group of which the chat is a member. - * - * @param chat The chat. - * - * @return The parent group, or @c NULL if the chat is not in a group. - */ -PurpleGroup *purple_chat_get_group(PurpleChat *chat); - -/** - * Returns the account the chat belongs to. - * - * @param chat The chat. - * - * @return The account the chat belongs to. - * - * @since 2.4.0 - */ -PurpleAccount *purple_chat_get_account(PurpleChat *chat); - -/** - * Get a hashtable containing information about a chat. - * - * @param chat The chat. - * - * @constreturn The hashtable. - * - * @since 2.4.0 - */ -GHashTable *purple_chat_get_components(PurpleChat *chat); - -/** - * Returns the group of which the buddy is a member. - * - * @param buddy The buddy - * @return The group or NULL if the buddy is not in a group - */ -PurpleGroup *purple_buddy_get_group(PurpleBuddy *buddy); - - -/** - * Returns a list of accounts that have buddies in this group - * - * @param g The group - * - * @return A GSList of accounts (which must be freed), or NULL if the group - * has no accounts. - */ -GSList *purple_group_get_accounts(PurpleGroup *g); - -/** - * Determines whether an account owns any buddies in a given group - * - * @param g The group to search through. - * @param account The account. - * - * @return TRUE if there are any buddies in the group, or FALSE otherwise. - */ -gboolean purple_group_on_account(PurpleGroup *g, PurpleAccount *account); - -/** - * Returns the name of a group. - * - * @param group The group. - * - * @return The name of the group. - */ -const char *purple_group_get_name(PurpleGroup *group); - -/** - * Called when an account connects. Tells the UI to update all the - * buddies. - * - * @param account The account - */ -void purple_blist_add_account(PurpleAccount *account); - - -/** - * Called when an account disconnects. Sets the presence of all the buddies to 0 - * and tells the UI to update them. - * - * @param account The account - */ -void purple_blist_remove_account(PurpleAccount *account); - - -/** - * Determines the total size of a group - * - * @param group The group - * @param offline Count buddies in offline accounts - * @return The number of buddies in the group - */ -int purple_blist_get_group_size(PurpleGroup *group, gboolean offline); - -/** - * Determines the number of online buddies in a group - * - * @param group The group - * @return The number of online buddies in the group, or 0 if the group is NULL - */ -int purple_blist_get_group_online_count(PurpleGroup *group); - -/*@}*/ - -/****************************************************************************************/ -/** @name Buddy list file management API */ -/****************************************************************************************/ - -/** - * Loads the buddy list from ~/.purple/blist.xml. - */ -void purple_blist_load(void); - -/** - * Schedule a save of the blist.xml file. This is used by the privacy - * API whenever the privacy settings are changed. If you make a change - * to blist.xml using one of the functions in the buddy list API, then - * the buddy list is saved automatically, so you should not need to - * call this. - */ -void purple_blist_schedule_save(void); - -/** - * Requests from the user information needed to add a buddy to the - * buddy list. - * - * @param account The account the buddy is added to. - * @param username The username of the buddy. - * @param group The name of the group to place the buddy in. - * @param alias The optional alias for the buddy. - */ -void purple_blist_request_add_buddy(PurpleAccount *account, const char *username, - const char *group, const char *alias); - -/** - * Requests from the user information needed to add a chat to the - * buddy list. - * - * @param account The account the buddy is added to. - * @param group The optional group to add the chat to. - * @param alias The optional alias for the chat. - * @param name The required chat name. - */ -void purple_blist_request_add_chat(PurpleAccount *account, PurpleGroup *group, - const char *alias, const char *name); - -/** - * Requests from the user information needed to add a group to the - * buddy list. - */ -void purple_blist_request_add_group(void); - -/** - * Associates a boolean with a node in the buddy list - * - * @param node The node to associate the data with - * @param key The identifier for the data - * @param value The value to set - */ -void purple_blist_node_set_bool(PurpleBlistNode *node, const char *key, gboolean value); - -/** - * Retrieves a named boolean setting from a node in the buddy list - * - * @param node The node to retrieve the data from - * @param key The identifier of the data - * - * @return The value, or FALSE if there is no setting - */ -gboolean purple_blist_node_get_bool(PurpleBlistNode *node, const char *key); - -/** - * Associates an integer with a node in the buddy list - * - * @param node The node to associate the data with - * @param key The identifier for the data - * @param value The value to set - */ -void purple_blist_node_set_int(PurpleBlistNode *node, const char *key, int value); - -/** - * Retrieves a named integer setting from a node in the buddy list - * - * @param node The node to retrieve the data from - * @param key The identifier of the data - * - * @return The value, or 0 if there is no setting - */ -int purple_blist_node_get_int(PurpleBlistNode *node, const char *key); - -/** - * Associates a string with a node in the buddy list - * - * @param node The node to associate the data with - * @param key The identifier for the data - * @param value The value to set - */ -void purple_blist_node_set_string(PurpleBlistNode *node, const char *key, - const char *value); - -/** - * Retrieves a named string setting from a node in the buddy list - * - * @param node The node to retrieve the data from - * @param key The identifier of the data - * - * @return The value, or NULL if there is no setting - */ -const char *purple_blist_node_get_string(PurpleBlistNode *node, const char *key); - -/** - * Removes a named setting from a blist node - * - * @param node The node from which to remove the setting - * @param key The name of the setting - */ -void purple_blist_node_remove_setting(PurpleBlistNode *node, const char *key); - -/** - * Set the flags for the given node. Setting a node's flags will overwrite - * the old flags, so if you want to save them, you must first call - * purple_blist_node_get_flags and modify that appropriately. - * - * @param node The node on which to set the flags. - * @param flags The flags to set. This is a bitmask. - */ -void purple_blist_node_set_flags(PurpleBlistNode *node, PurpleBlistNodeFlags flags); - -/** - * Get the current flags on a given node. - * - * @param node The node from which to get the flags. - * - * @return The flags on the node. This is a bitmask. - */ -PurpleBlistNodeFlags purple_blist_node_get_flags(PurpleBlistNode *node); - -/** - * Get the type of a given node. - * - * @param node The node. - * - * @return The type of the node. - * - * @since 2.1.0 - */ -PurpleBlistNodeType purple_blist_node_get_type(PurpleBlistNode *node); - -/*@}*/ - -/** - * Retrieves the extended menu items for a buddy list node. - * @param n The blist node for which to obtain the extended menu items. - * @return A list of PurpleMenuAction items, as harvested by the - * blist-node-extended-menu signal. - */ -GList *purple_blist_node_get_extended_menu(PurpleBlistNode *n); - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used for the buddy list. - * - * @param ops The ops struct. - */ -void purple_blist_set_ui_ops(PurpleBlistUiOps *ops); - -/** - * Returns the UI operations structure to be used for the buddy list. - * - * @return The UI operations structure. - */ -PurpleBlistUiOps *purple_blist_get_ui_ops(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Buddy List Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the handle for the buddy list subsystem. - * - * @return The buddy list subsystem handle. - */ -void *purple_blist_get_handle(void); - -/** - * Initializes the buddy list subsystem. - */ -void purple_blist_init(void); - -/** - * Uninitializes the buddy list subsystem. - */ -void purple_blist_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_BLIST_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/bosh.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/bosh.h deleted file mode 100644 index 0648ec0..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/bosh.h +++ /dev/null @@ -1,43 +0,0 @@ -/** - * @file bosh.h Bidirectional-streams over Synchronous HTTP (BOSH) (XEP-0124 and XEP-0206) - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_BOSH_H_ -#define PURPLE_JABBER_BOSH_H_ - -typedef struct _PurpleBOSHConnection PurpleBOSHConnection; - -#include "jabber.h" - -void jabber_bosh_init(void); -void jabber_bosh_uninit(void); - -PurpleBOSHConnection* jabber_bosh_connection_init(JabberStream *js, const char *url); -void jabber_bosh_connection_destroy(PurpleBOSHConnection *conn); - -gboolean jabber_bosh_connection_is_ssl(PurpleBOSHConnection *conn); -void jabber_bosh_connection_send_keepalive(PurpleBOSHConnection *conn); - -void jabber_bosh_connection_connect(PurpleBOSHConnection *conn); -void jabber_bosh_connection_close(PurpleBOSHConnection *conn); -void jabber_bosh_connection_send_raw(PurpleBOSHConnection *conn, const char *data); -#endif /* PURPLE_JABBER_BOSH_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddy.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddy.h deleted file mode 100644 index 3574c8e..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddy.h +++ /dev/null @@ -1,125 +0,0 @@ -/** - * @file buddy.h Buddy handlers - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_BUDDY_H_ -#define PURPLE_JABBER_BUDDY_H_ - -typedef struct _JabberBuddy JabberBuddy; - -#include "jabber.h" -#include "caps.h" -#include "jutil.h" - -struct _JabberBuddy { - /** - * A sorted list of resources in priority descending order. - * This means that the first resource in the list is the - * "most available" (see resource_compare_cb in buddy.c for - * details). Don't play with this yourself, let - * jabber_buddy_track_resource and jabber_buddy_remove_resource do it. - */ - GList *resources; - char *error_msg; - enum { - JABBER_INVISIBLE_NONE = 0, - JABBER_INVISIBLE_SERVER = 1 << 1, - JABBER_INVIS_BUDDY = 1 << 2 - } invisible; - enum { - JABBER_SUB_NONE = 0, - JABBER_SUB_PENDING = 1 << 1, - JABBER_SUB_TO = 1 << 2, - JABBER_SUB_FROM = 1 << 3, - JABBER_SUB_BOTH = (JABBER_SUB_TO | JABBER_SUB_FROM), - JABBER_SUB_REMOVE = 1 << 4 - } subscription; -}; - -typedef struct _JabberAdHocCommands { - char *jid; - char *node; - char *name; -} JabberAdHocCommands; - -typedef struct _JabberBuddyResource { - JabberBuddy *jb; - char *name; - int priority; - JabberBuddyState state; - char *status; - time_t idle; - JabberCapabilities capabilities; - char *thread_id; - enum { - JABBER_CHAT_STATES_UNKNOWN, - JABBER_CHAT_STATES_UNSUPPORTED, - JABBER_CHAT_STATES_SUPPORTED - } chat_states; - struct { - char *version; - char *name; - char *os; - } client; - /* tz_off == PURPLE_NO_TZ_OFF when unset */ - long tz_off; - struct { - JabberCapsClientInfo *info; - GList *exts; - } caps; - GList *commands; - gboolean commands_fetched; -} JabberBuddyResource; - -void jabber_buddy_free(JabberBuddy *jb); -JabberBuddy *jabber_buddy_find(JabberStream *js, const char *name, - gboolean create); -JabberBuddyResource *jabber_buddy_find_resource(JabberBuddy *jb, - const char *resource); -JabberBuddyResource *jabber_buddy_track_resource(JabberBuddy *jb, const char *resource, - int priority, JabberBuddyState state, const char *status); -void jabber_buddy_remove_resource(JabberBuddy *jb, const char *resource); -void jabber_buddy_get_info(PurpleConnection *gc, const char *who); - -GList *jabber_blist_node_menu(PurpleBlistNode *node); - -void jabber_set_info(PurpleConnection *gc, const char *info); -void jabber_setup_set_info(PurplePluginAction *action); -void jabber_set_buddy_icon(PurpleConnection *gc, PurpleStoredImage *img); - -void jabber_user_search(JabberStream *js, const char *directory); -void jabber_user_search_begin(PurplePluginAction *); - -void jabber_buddy_remove_all_pending_buddy_info_requests(JabberStream *js); - -void jabber_vcard_fetch_mine(JabberStream *js); - -gboolean jabber_resource_know_capabilities(const JabberBuddyResource *jbr); -gboolean jabber_resource_has_capability(const JabberBuddyResource *jbr, - const gchar *cap); -gboolean jabber_buddy_has_capability(const JabberBuddy *jb, const gchar *cap); - -const gchar * -jabber_resource_get_identity_category_type(const JabberBuddyResource *jbr, - const gchar *category); - -#endif /* PURPLE_JABBER_BUDDY_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddyicon.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddyicon.h deleted file mode 100644 index 7fbecbb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddyicon.h +++ /dev/null @@ -1,441 +0,0 @@ -/** - * @file buddyicon.h Buddy Icon API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_BUDDYICON_H_ -#define _PURPLE_BUDDYICON_H_ - -/** An opaque structure representing a buddy icon for a particular user on a - * particular #PurpleAccount. Instances are reference-counted; use - * purple_buddy_icon_ref() and purple_buddy_icon_unref() to take and release - * references. - */ -typedef struct _PurpleBuddyIcon PurpleBuddyIcon; - -#include "account.h" -#include "blist.h" -#include "imgstore.h" -#include "prpl.h" -#include "util.h" - -#ifdef __cplusplus -extern "C" { -#endif - - -/**************************************************************************/ -/** @name Buddy Icon API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new buddy icon structure and populates it. - * - * If the buddy icon already exists, you'll get a reference to that structure, - * which will have been updated with the data supplied. - * - * @param account The account the user is on. - * @param username The username the icon belongs to. - * @param icon_data The buddy icon data. - * @param icon_len The buddy icon length. - * @param checksum A protocol checksum from the prpl or @c NULL. - * - * @return The buddy icon structure, with a reference for the caller. - */ -PurpleBuddyIcon *purple_buddy_icon_new(PurpleAccount *account, const char *username, - void *icon_data, size_t icon_len, - const char *checksum); - -/** - * Increments the reference count on a buddy icon. - * - * @param icon The buddy icon. - * - * @return @a icon. - */ -PurpleBuddyIcon *purple_buddy_icon_ref(PurpleBuddyIcon *icon); - -/** - * Decrements the reference count on a buddy icon. - * - * If the reference count reaches 0, the icon will be destroyed. - * - * @param icon The buddy icon. - * - * @return @a icon, or @c NULL if the reference count reached 0. - */ -PurpleBuddyIcon *purple_buddy_icon_unref(PurpleBuddyIcon *icon); - -/** - * Updates every instance of this icon. - * - * @param icon The buddy icon. - */ -void purple_buddy_icon_update(PurpleBuddyIcon *icon); - -/** - * Sets the buddy icon's data. - * - * @param icon The buddy icon. - * @param data The buddy icon data, which the buddy icon code - * takes ownership of and will free. - * @param len The length of the data in @a data. - * @param checksum A protocol checksum from the prpl or @c NULL. - */ -void -purple_buddy_icon_set_data(PurpleBuddyIcon *icon, guchar *data, - size_t len, const char *checksum); - -/** - * Returns the buddy icon's account. - * - * @param icon The buddy icon. - * - * @return The account. - */ -PurpleAccount *purple_buddy_icon_get_account(const PurpleBuddyIcon *icon); - -/** - * Returns the buddy icon's username. - * - * @param icon The buddy icon. - * - * @return The username. - */ -const char *purple_buddy_icon_get_username(const PurpleBuddyIcon *icon); - -/** - * Returns the buddy icon's checksum. - * - * This function is really only for prpl use. - * - * @param icon The buddy icon. - * - * @return The checksum. - */ -const char *purple_buddy_icon_get_checksum(const PurpleBuddyIcon *icon); - -/** - * Returns the buddy icon's data. - * - * @param icon The buddy icon. - * @param len If not @c NULL, the length of the icon data returned will be - * set in the location pointed to by this. - * - * @return A pointer to the icon data. - */ -gconstpointer purple_buddy_icon_get_data(const PurpleBuddyIcon *icon, size_t *len); - -/** - * Returns an extension corresponding to the buddy icon's file type. - * - * @param icon The buddy icon. - * - * @return The icon's extension, "icon" if unknown, or @c NULL if - * the image data has disappeared. - */ -const char *purple_buddy_icon_get_extension(const PurpleBuddyIcon *icon); - -/** - * Returns a full path to an icon. - * - * If the icon has data and the file exists in the cache, this will return - * a full path to the cache file. - * - * In general, it is not appropriate to be poking in the icon cache - * directly. If you find yourself wanting to use this function, think - * very long and hard about it, and then don't. - * - * @param icon The buddy icon - * - * @return A full path to the file, or @c NULL under various conditions. - */ -char *purple_buddy_icon_get_full_path(PurpleBuddyIcon *icon); - -/*@}*/ - -/**************************************************************************/ -/** @name Buddy Icon Subsystem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets a buddy icon for a user. - * - * @param account The account the user is on. - * @param username The username of the user. - * @param icon_data The buddy icon data, which the buddy icon code - * takes ownership of and will free. - * @param icon_len The length of the icon data. - * @param checksum A protocol checksum from the prpl or @c NULL. - */ -void -purple_buddy_icons_set_for_user(PurpleAccount *account, const char *username, - void *icon_data, size_t icon_len, - const char *checksum); - -/** - * Returns the checksum for the buddy icon of a specified buddy. - * - * This avoids loading the icon image data from the cache if it's - * not already loaded for some other reason. - * - * @param buddy The buddy - * - * @return The checksum. - */ -const char * -purple_buddy_icons_get_checksum_for_user(PurpleBuddy *buddy); - -/** - * Returns the buddy icon information for a user. - * - * @param account The account the user is on. - * @param username The username of the user. - * - * @return The icon (with a reference for the caller) if found, or @c NULL if - * not found. - */ -PurpleBuddyIcon * -purple_buddy_icons_find(PurpleAccount *account, const char *username); - -/** - * Returns the buddy icon image for an account. - * - * The caller owns a reference to the image in the store, and must dereference - * the image with purple_imgstore_unref() for it to be freed. - * - * This function deals with loading the icon from the cache, if - * needed, so it should be called in any case where you want the - * appropriate icon. - * - * @param account The account - * - * @return The account's buddy icon image. - */ -PurpleStoredImage * -purple_buddy_icons_find_account_icon(PurpleAccount *account); - -/** - * Sets a buddy icon for an account. - * - * This function will deal with saving a record of the icon, - * caching the data, etc. - * - * @param account The account for which to set a custom icon. - * @param icon_data The image data of the icon, which the - * buddy icon code will free. - * @param icon_len The length of the data in @a icon_data. - * - * @return The icon that was set. The caller does NOT own - * a reference to this, and must call purple_imgstore_ref() - * if it wants one. - */ -PurpleStoredImage * -purple_buddy_icons_set_account_icon(PurpleAccount *account, - guchar *icon_data, size_t icon_len); - -/** - * Returns the timestamp of when the icon was set. - * - * This is intended for use in protocols that require a timestamp for - * buddy icon update reasons. - * - * @param account The account - * - * @return The time the icon was set, or 0 if an error occurred. - */ -time_t -purple_buddy_icons_get_account_icon_timestamp(PurpleAccount *account); - -/** - * Returns a boolean indicating if a given blist node has a custom buddy icon. - * - * @param node The blist node. - * - * @return A boolean indicating if @a node has a custom buddy icon. - * @since 2.5.0 - */ -gboolean -purple_buddy_icons_node_has_custom_icon(PurpleBlistNode *node); - -/** - * Returns the custom buddy icon image for a blist node. - * - * The caller owns a reference to the image in the store, and must dereference - * the image with purple_imgstore_unref() for it to be freed. - * - * This function deals with loading the icon from the cache, if - * needed, so it should be called in any case where you want the - * appropriate icon. - * - * @param node The node. - * - * @return The custom buddy icon. - * @since 2.5.0 - */ -PurpleStoredImage * -purple_buddy_icons_node_find_custom_icon(PurpleBlistNode *node); - -/** - * Sets a custom buddy icon for a blist node. - * - * This function will deal with saving a record of the icon, caching the data, - * etc. - * - * @param node The blist node for which to set a custom icon. - * @param icon_data The image data of the icon, which the buddy icon code will - * free. Use NULL to unset the icon. - * @param icon_len The length of the data in @a icon_data. - * - * @return The icon that was set. The caller does NOT own a reference to this, - * and must call purple_imgstore_ref() if it wants one. - * @since 2.5.0 - */ -PurpleStoredImage * -purple_buddy_icons_node_set_custom_icon(PurpleBlistNode *node, - guchar *icon_data, size_t icon_len); - -/** - * Sets a custom buddy icon for a blist node. - * - * Convenience wrapper around purple_buddy_icons_node_set_custom_icon. - * @see purple_buddy_icons_node_set_custom_icon() - * - * @param node The blist node for which to set a custom icon. - * @param filename The path to the icon to set for the blist node. Use NULL - * to unset the custom icon. - * - * @return The icon that was set. The caller does NOT own a reference to this, - * and must call purple_imgstore_ref() if it wants one. - * @since 2.5.0 - */ -PurpleStoredImage * -purple_buddy_icons_node_set_custom_icon_from_file(PurpleBlistNode *node, - const gchar *filename); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_BUDDYICON_C_) -/** - * PurpleContact version of purple_buddy_icons_node_has_custom_icon. - * - * @copydoc purple_buddy_icons_node_has_custom_icon() - * - * @deprecated Use purple_buddy_icons_node_has_custom_icon instead. - */ -gboolean -purple_buddy_icons_has_custom_icon(PurpleContact *contact); - -/** - * PurpleContact version of purple_buddy_icons_node_find_custom_icon. - * - * @copydoc purple_buddy_icons_node_find_custom_icon() - * - * @deprecated Use purple_buddy_icons_node_find_custom_icon instead. - */ -PurpleStoredImage * -purple_buddy_icons_find_custom_icon(PurpleContact *contact); - -/** - * PurpleContact version of purple_buddy_icons_node_set_custom_icon. - * - * @copydoc purple_buddy_icons_node_set_custom_icon() - * - * @deprecated Use purple_buddy_icons_node_set_custom_icon instead. - */ -PurpleStoredImage * -purple_buddy_icons_set_custom_icon(PurpleContact *contact, - guchar *icon_data, size_t icon_len); -#endif - -/** - * Sets whether or not buddy icon caching is enabled. - * - * @param caching TRUE of buddy icon caching should be enabled, or - * FALSE otherwise. - */ -void purple_buddy_icons_set_caching(gboolean caching); - -/** - * Returns whether or not buddy icon caching should be enabled. - * - * The default is TRUE, unless otherwise specified by - * purple_buddy_icons_set_caching(). - * - * @return TRUE if buddy icon caching is enabled, or FALSE otherwise. - */ -gboolean purple_buddy_icons_is_caching(void); - -/** - * Sets the directory used to store buddy icon cache files. - * - * @param cache_dir The directory to store buddy icon cache files to. - */ -void purple_buddy_icons_set_cache_dir(const char *cache_dir); - -/** - * Returns the directory used to store buddy icon cache files. - * - * The default directory is PURPLEDIR/icons, unless otherwise specified - * by purple_buddy_icons_set_cache_dir(). - * - * @return The directory to store buddy icon cache files to. - */ -const char *purple_buddy_icons_get_cache_dir(void); - -/** - * Returns the buddy icon subsystem handle. - * - * @return The subsystem handle. - */ -void *purple_buddy_icons_get_handle(void); - -/** - * Initializes the buddy icon subsystem. - */ -void purple_buddy_icons_init(void); - -/** - * Uninitializes the buddy icon subsystem. - */ -void purple_buddy_icons_uninit(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Buddy Icon Helper API */ -/**************************************************************************/ -/*@{*/ - -/** - * Gets display size for a buddy icon - */ -void purple_buddy_icon_get_scale_size(PurpleBuddyIconSpec *spec, int *width, int *height); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_BUDDYICON_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddylist.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddylist.h deleted file mode 100644 index d1a16df..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/buddylist.h +++ /dev/null @@ -1,57 +0,0 @@ -/** - * @file buddylist.h - * - * purple - * - * Copyright (C) 2005 Bartosz Oler - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - - -#ifndef _PURPLE_GG_BUDDYLIST_H -#define _PURPLE_GG_BUDDYLIST_H - -#include "connection.h" -#include "account.h" - -void -ggp_buddylist_send(PurpleConnection *gc); - -/** - * Load buddylist from server into the roster. - * - * @param gc PurpleConnection - * @param buddylist Pointer to the buddylist that will be loaded. - */ -/* void ggp_buddylist_load(PurpleConnection *gc, char *buddylist) {{{ */ -void -ggp_buddylist_load(PurpleConnection *gc, char *buddylist); - -/** - * Get all the buddies in the current account. - * - * @param account Current account. - * - * @return List of buddies. - */ -char * -ggp_buddylist_dump(PurpleAccount *account); - - -#endif /* _PURPLE_GG_BUDDYLIST_H */ - - -/* vim: set ts=8 sts=0 sw=8 noet: */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/caps.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/caps.h deleted file mode 100644 index 897754f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/caps.h +++ /dev/null @@ -1,129 +0,0 @@ -/* - * purple - Jabber Protocol Plugin - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - -#ifndef PURPLE_JABBER_CAPS_H_ -#define PURPLE_JABBER_CAPS_H_ - -typedef struct _JabberCapsClientInfo JabberCapsClientInfo; - -#include "jabber.h" - -/* Implementation of XEP-0115 - Entity Capabilities */ - -typedef struct _JabberCapsNodeExts JabberCapsNodeExts; - -typedef struct _JabberCapsTuple { - const char *node; - const char *ver; - const char *hash; -} JabberCapsTuple; - -struct _JabberCapsClientInfo { - GList *identities; /* JabberIdentity */ - GList *features; /* char * */ - GList *forms; /* xmlnode * */ - JabberCapsNodeExts *exts; - - const JabberCapsTuple tuple; -}; - -/* - * This stores a set of exts "known" for a specific node (which indicates - * a specific client -- for reference, Pidgin, Finch, Meebo, et al share one - * node.) In XEP-0115 v1.3, exts are used for features that may or may not be - * present at a given time (PEP things, buzz might be disabled, etc). - * - * This structure is shared among all JabberCapsClientInfo instances matching - * a specific node (if the capstable key->hash == NULL, which indicates that - * the ClientInfo is using v1.3 caps as opposed to v1.5 caps). - * - * It's only exposed so that jabber_resource_has_capability can use it. - * Everyone else, STAY AWAY! - */ -struct _JabberCapsNodeExts { - guint ref; - GHashTable *exts; /* char *ext_name -> GList *features */ -}; - -typedef void (*jabber_caps_get_info_cb)(JabberCapsClientInfo *info, GList *exts, gpointer user_data); - -void jabber_caps_init(void); -void jabber_caps_uninit(void); - -/** - * Check whether all of the exts in a char* array are known to the given info. - */ -gboolean jabber_caps_exts_known(const JabberCapsClientInfo *info, char **exts); - -/** - * Main entity capabilites function to get the capabilities of a contact. - * - * The callback will be called synchronously if we already have the - * capabilities for the specified (node,ver,hash) (and, if exts are specified, - * if we know what each means) - * - * @param exts A g_strsplit'd (NULL-terminated) array of strings. This - * function is responsible for freeing it. - */ -void jabber_caps_get_info(JabberStream *js, const char *who, const char *node, - const char *ver, const char *hash, - char **exts, jabber_caps_get_info_cb cb, - gpointer user_data); - -/** - * Takes a JabberCapsClientInfo pointer and returns the caps hash according to - * XEP-0115 Version 1.5. - * - * @param info A JabberCapsClientInfo pointer. - * @param hash Hash cipher to be used. Either sha-1 or md5. - * @return The base64 encoded SHA-1 hash; must be freed by caller - */ -gchar *jabber_caps_calculate_hash(JabberCapsClientInfo *info, const char *hash); - -/** - * Calculate SHA1 hash for own featureset. - */ -void jabber_caps_calculate_own_hash(JabberStream *js); - -/** Get the current caps hash. - * @ret hash -**/ -const gchar* jabber_caps_get_own_hash(JabberStream *js); - -/** - * Broadcast a new calculated hash using a stanza. - */ -void jabber_caps_broadcast_change(void); - -/** - * Parse the element from an IQ stanza into a JabberCapsClientInfo - * struct. - * - * Exposed for tests - * - * @param query The 'query' element from an IQ reply stanza. - * @returns A JabberCapsClientInfo struct, or NULL on error - */ -JabberCapsClientInfo *jabber_caps_parse_client_info(xmlnode *query); - -#endif /* PURPLE_JABBER_CAPS_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/certificate.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/certificate.h deleted file mode 100644 index 66d9617..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/certificate.h +++ /dev/null @@ -1,843 +0,0 @@ -/** - * @file certificate.h Public-Key Certificate API - * @ingroup core - * @see @ref certificate-signals - * @since 2.2.0 - */ - -/* - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_CERTIFICATE_H -#define _PURPLE_CERTIFICATE_H - -#include - -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - - -typedef enum -{ - PURPLE_CERTIFICATE_INVALID = 0, - PURPLE_CERTIFICATE_VALID = 1 -} PurpleCertificateVerificationStatus; - -typedef struct _PurpleCertificate PurpleCertificate; -typedef struct _PurpleCertificatePool PurpleCertificatePool; -typedef struct _PurpleCertificateScheme PurpleCertificateScheme; -typedef struct _PurpleCertificateVerifier PurpleCertificateVerifier; -typedef struct _PurpleCertificateVerificationRequest PurpleCertificateVerificationRequest; - -/** - * Callback function for the results of a verification check - * @param st Status code - * @param userdata User-defined data - */ -typedef void (*PurpleCertificateVerifiedCallback) - (PurpleCertificateVerificationStatus st, - gpointer userdata); - -/** A certificate instance - * - * An opaque data structure representing a single certificate under some - * CertificateScheme - */ -struct _PurpleCertificate -{ - /** Scheme this certificate is under */ - PurpleCertificateScheme * scheme; - /** Opaque pointer to internal data */ - gpointer data; -}; - -/** - * Database for retrieval or storage of Certificates - * - * More or less a hash table; all lookups and writes are controlled by a string - * key. - */ -struct _PurpleCertificatePool -{ - /** Scheme this Pool operates for */ - gchar *scheme_name; - /** Internal name to refer to the pool by */ - gchar *name; - - /** User-friendly name for this type - * ex: N_("SSL Servers") - * When this is displayed anywhere, it should be i18ned - * ex: _(pool->fullname) - */ - gchar *fullname; - - /** Internal pool data */ - gpointer data; - - /** - * Set up the Pool's internal state - * - * Upon calling purple_certificate_register_pool() , this function will - * be called. May be NULL. - * @return TRUE if the initialization succeeded, otherwise FALSE - */ - gboolean (* init)(void); - - /** - * Uninit the Pool's internal state - * - * Will be called by purple_certificate_unregister_pool() . May be NULL - */ - void (* uninit)(void); - - /** Check for presence of a certificate in the pool using unique ID */ - gboolean (* cert_in_pool)(const gchar *id); - /** Retrieve a PurpleCertificate from the pool */ - PurpleCertificate * (* get_cert)(const gchar *id); - /** Add a certificate to the pool. Must overwrite any other - * certificates sharing the same ID in the pool. - * @return TRUE if the operation succeeded, otherwise FALSE - */ - gboolean (* put_cert)(const gchar *id, PurpleCertificate *crt); - /** Delete a certificate from the pool */ - gboolean (* delete_cert)(const gchar *id); - - /** Returns a list of IDs stored in the pool */ - GList * (* get_idlist)(void); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** A certificate type - * - * A CertificateScheme must implement all of the fields in the structure, - * and register it using purple_certificate_register_scheme() - * - * There may be only ONE CertificateScheme provided for each certificate - * type, as specified by the "name" field. - */ -struct _PurpleCertificateScheme -{ - /** Name of the certificate type - * ex: "x509", "pgp", etc. - * This must be globally unique - you may not register more than one - * CertificateScheme of the same name at a time. - */ - gchar * name; - - /** User-friendly name for this type - * ex: N_("X.509 Certificates") - * When this is displayed anywhere, it should be i18ned - * ex: _(scheme->fullname) - */ - gchar * fullname; - - /** Imports a certificate from a file - * - * @param filename File to import the certificate from - * @return Pointer to the newly allocated Certificate struct - * or NULL on failure. - */ - PurpleCertificate * (* import_certificate)(const gchar * filename); - - /** - * Exports a certificate to a file - * - * @param filename File to export the certificate to - * @param crt Certificate to export - * @return TRUE if the export succeeded, otherwise FALSE - * @see purple_certificate_export() - */ - gboolean (* export_certificate)(const gchar *filename, PurpleCertificate *crt); - - /** - * Duplicates a certificate - * - * Certificates are generally assumed to be read-only, so feel free to - * do any sort of reference-counting magic you want here. If this ever - * changes, please remember to change the magic accordingly. - * @return Reference to the new copy - */ - PurpleCertificate * (* copy_certificate)(PurpleCertificate *crt); - - /** Destroys and frees a Certificate structure - * - * Destroys a Certificate's internal data structures and calls - * free(crt) - * - * @param crt Certificate instance to be destroyed. It WILL NOT be - * destroyed if it is not of the correct - * CertificateScheme. Can be NULL - */ - void (* destroy_certificate)(PurpleCertificate * crt); - - /** Find whether "crt" has a valid signature from issuer "issuer" - * @see purple_certificate_signed_by() */ - gboolean (*signed_by)(PurpleCertificate *crt, PurpleCertificate *issuer); - /** - * Retrieves the certificate public key fingerprint using SHA1 - * - * @param crt Certificate instance - * @return Binary representation of SHA1 hash - must be freed using - * g_byte_array_free() - */ - GByteArray * (* get_fingerprint_sha1)(PurpleCertificate *crt); - - /** - * Retrieves a unique certificate identifier - * - * @param crt Certificate instance - * @return Newly allocated string that can be used to uniquely - * identify the certificate. - */ - gchar * (* get_unique_id)(PurpleCertificate *crt); - - /** - * Retrieves a unique identifier for the certificate's issuer - * - * @param crt Certificate instance - * @return Newly allocated string that can be used to uniquely - * identify the issuer's certificate. - */ - gchar * (* get_issuer_unique_id)(PurpleCertificate *crt); - - /** - * Gets the certificate subject's name - * - * For X.509, this is the "Common Name" field, as we're only using it - * for hostname verification at the moment - * - * @see purple_certificate_get_subject_name() - * - * @param crt Certificate instance - * @return Newly allocated string with the certificate subject. - */ - gchar * (* get_subject_name)(PurpleCertificate *crt); - - /** - * Check the subject name against that on the certificate - * @see purple_certificate_check_subject_name() - * @return TRUE if it is a match, else FALSE - */ - gboolean (* check_subject_name)(PurpleCertificate *crt, const gchar *name); - - /** Retrieve the certificate activation/expiration times */ - gboolean (* get_times)(PurpleCertificate *crt, time_t *activation, time_t *expiration); - - /** Imports certificates from a file - * - * @param filename File to import the certificates from - * @return GSList of pointers to the newly allocated Certificate structs - * or NULL on failure. - */ - GSList * (* import_certificates)(const gchar * filename); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); -}; - -/** A set of operations used to provide logic for verifying a Certificate's - * authenticity. - * - * A Verifier provider must fill out these fields, then register it using - * purple_certificate_register_verifier() - * - * The (scheme_name, name) value must be unique for each Verifier - you may not - * register more than one Verifier of the same name for each Scheme - */ -struct _PurpleCertificateVerifier -{ - /** Name of the scheme this Verifier operates on - * - * The scheme will be looked up by name when a Request is generated - * using this Verifier - */ - gchar *scheme_name; - - /** Name of the Verifier - case insensitive */ - gchar *name; - - /** - * Start the verification process - * - * To be called from purple_certificate_verify once it has - * constructed the request. This will use the information in the - * given VerificationRequest to check the certificate and callback - * the requester with the verification results. - * - * @param vrq Request to process - */ - void (* start_verification)(PurpleCertificateVerificationRequest *vrq); - - /** - * Destroy a completed Request under this Verifier - * The function pointed to here is only responsible for cleaning up - * whatever PurpleCertificateVerificationRequest::data points to. - * It should not call free(vrq) - * - * @param vrq Request to destroy - */ - void (* destroy_request)(PurpleCertificateVerificationRequest *vrq); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** Structure for a single certificate request - * - * Useful for keeping track of the state of a verification that involves - * several steps - */ -struct _PurpleCertificateVerificationRequest -{ - /** Reference to the verification logic used */ - PurpleCertificateVerifier *verifier; - /** Reference to the scheme used. - * - * This is looked up from the Verifier when the Request is generated - */ - PurpleCertificateScheme *scheme; - - /** - * Name to check that the certificate is issued to - * - * For X.509 certificates, this is the Common Name - */ - gchar *subject_name; - - /** List of certificates in the chain to be verified (such as that returned by purple_ssl_get_peer_certificates ) - * - * This is most relevant for X.509 certificates used in SSL sessions. - * The list order should be: certificate, issuer, issuer's issuer, etc. - */ - GList *cert_chain; - - /** Internal data used by the Verifier code */ - gpointer data; - - /** Function to call with the verification result */ - PurpleCertificateVerifiedCallback cb; - /** Data to pass to the post-verification callback */ - gpointer cb_data; -}; - -/*****************************************************************************/ -/** @name Certificate Verification Functions */ -/*****************************************************************************/ -/*@{*/ - -/** - * Constructs a verification request and passed control to the specified Verifier - * - * It is possible that the callback will be called immediately upon calling - * this function. Plan accordingly. - * - * @param verifier Verification logic to use. - * @see purple_certificate_find_verifier() - * - * @param subject_name Name that should match the first certificate in the - * chain for the certificate to be valid. Will be strdup'd - * into the Request struct - * - * @param cert_chain Certificate chain to check. If there is more than one - * certificate in the chain (X.509), the peer's - * certificate comes first, then the issuer/signer's - * certificate, etc. The whole list is duplicated into the - * Request struct. - * - * @param cb Callback function to be called with whether the - * certificate was approved or not. - * @param cb_data User-defined data for the above. - */ -void -purple_certificate_verify (PurpleCertificateVerifier *verifier, - const gchar *subject_name, GList *cert_chain, - PurpleCertificateVerifiedCallback cb, - gpointer cb_data); - -/** - * Completes and destroys a VerificationRequest - * - * @param vrq Request to conclude - * @param st Success/failure code to pass to the request's - * completion callback. - */ -void -purple_certificate_verify_complete(PurpleCertificateVerificationRequest *vrq, - PurpleCertificateVerificationStatus st); - -/*@}*/ - -/*****************************************************************************/ -/** @name Certificate Functions */ -/*****************************************************************************/ -/*@{*/ - -/** - * Makes a duplicate of a certificate - * - * @param crt Instance to duplicate - * @return Pointer to new instance - */ -PurpleCertificate * -purple_certificate_copy(PurpleCertificate *crt); - -/** - * Duplicates an entire list of certificates - * - * @param crt_list List to duplicate - * @return New list copy - */ -GList * -purple_certificate_copy_list(GList *crt_list); - -/** - * Destroys and free()'s a Certificate - * - * @param crt Instance to destroy. May be NULL. - */ -void -purple_certificate_destroy (PurpleCertificate *crt); - -/** - * Destroy an entire list of Certificate instances and the containing list - * - * @param crt_list List of certificates to destroy. May be NULL. - */ -void -purple_certificate_destroy_list (GList * crt_list); - -/** - * Check whether 'crt' has a valid signature made by 'issuer' - * - * @param crt Certificate instance to check signature of - * @param issuer Certificate thought to have signed 'crt' - * - * @return TRUE if 'crt' has a valid signature made by 'issuer', - * otherwise FALSE - * @todo Find a way to give the reason (bad signature, not the issuer, etc.) - */ -gboolean -purple_certificate_signed_by(PurpleCertificate *crt, PurpleCertificate *issuer); - -/** - * Check that a certificate chain is valid and, if not, the failing certificate. - * - * Uses purple_certificate_signed_by() to verify that each PurpleCertificate - * in the chain carries a valid signature from the next. A single-certificate - * chain is considered to be valid. - * - * @param chain List of PurpleCertificate instances comprising the chain, - * in the order certificate, issuer, issuer's issuer, etc. - * @param failing A pointer to a PurpleCertificate*. If not NULL, if the - * chain fails to validate, this will be set to the - * certificate whose signature could not be validated. - * @return TRUE if the chain is valid. See description. - * - * @since 2.6.0 - * @deprecated This function will become - * purple_certificate_check_signature_chain in 3.0.0 - */ -gboolean -purple_certificate_check_signature_chain_with_failing(GList *chain, - PurpleCertificate **failing); - -/** - * Check that a certificate chain is valid - * - * Uses purple_certificate_signed_by() to verify that each PurpleCertificate - * in the chain carries a valid signature from the next. A single-certificate - * chain is considered to be valid. - * - * @param chain List of PurpleCertificate instances comprising the chain, - * in the order certificate, issuer, issuer's issuer, etc. - * @return TRUE if the chain is valid. See description. - * @todo Specify which certificate in the chain caused a failure - * @deprecated This function will be removed in 3.0.0 and replaced with - * purple_certificate_check_signature_chain_with_failing - */ -gboolean -purple_certificate_check_signature_chain(GList *chain); - -/** - * Imports a PurpleCertificate from a file - * - * @param scheme Scheme to import under - * @param filename File path to import from - * @return Pointer to a new PurpleCertificate, or NULL on failure - */ -PurpleCertificate * -purple_certificate_import(PurpleCertificateScheme *scheme, const gchar *filename); - -/** - * Imports a list of PurpleCertificates from a file - * - * @param scheme Scheme to import under - * @param filename File path to import from - * @return Pointer to a GSList of new PurpleCertificates, or NULL on failure - */ -GSList * -purple_certificates_import(PurpleCertificateScheme *scheme, const gchar *filename); - -/** - * Exports a PurpleCertificate to a file - * - * @param filename File to export the certificate to - * @param crt Certificate to export - * @return TRUE if the export succeeded, otherwise FALSE - */ -gboolean -purple_certificate_export(const gchar *filename, PurpleCertificate *crt); - - -/** - * Retrieves the certificate public key fingerprint using SHA1. - * - * @param crt Certificate instance - * @return Binary representation of the hash. You are responsible for free()ing - * this. - * @see purple_base16_encode_chunked() - */ -GByteArray * -purple_certificate_get_fingerprint_sha1(PurpleCertificate *crt); - -/** - * Get a unique identifier for the certificate - * - * @param crt Certificate instance - * @return String representing the certificate uniquely. Must be g_free()'ed - */ -gchar * -purple_certificate_get_unique_id(PurpleCertificate *crt); - -/** - * Get a unique identifier for the certificate's issuer - * - * @param crt Certificate instance - * @return String representing the certificate's issuer uniquely. Must be - * g_free()'ed - */ -gchar * -purple_certificate_get_issuer_unique_id(PurpleCertificate *crt); - -/** - * Gets the certificate subject's name - * - * For X.509, this is the "Common Name" field, as we're only using it - * for hostname verification at the moment - * - * @param crt Certificate instance - * @return Newly allocated string with the certificate subject. - */ -gchar * -purple_certificate_get_subject_name(PurpleCertificate *crt); - -/** - * Check the subject name against that on the certificate - * @param crt Certificate instance - * @param name Name to check. - * @return TRUE if it is a match, else FALSE - */ -gboolean -purple_certificate_check_subject_name(PurpleCertificate *crt, const gchar *name); - -/** - * Get the expiration/activation times. - * - * @param crt Certificate instance - * @param activation Reference to store the activation time at. May be NULL - * if you don't actually want it. - * @param expiration Reference to store the expiration time at. May be NULL - * if you don't actually want it. - * @return TRUE if the requested values were obtained, otherwise FALSE. - */ -gboolean -purple_certificate_get_times(PurpleCertificate *crt, time_t *activation, time_t *expiration); - -/*@}*/ - -/*****************************************************************************/ -/** @name Certificate Pool Functions */ -/*****************************************************************************/ -/*@{*/ -/** - * Helper function for generating file paths in ~/.purple/certificates for - * CertificatePools that use them. - * - * All components will be escaped for filesystem friendliness. - * - * @param pool CertificatePool to build a path for - * @param id Key to look up a Certificate by. May be NULL. - * @return A newly allocated path of the form - * ~/.purple/certificates/scheme_name/pool_name/unique_id - */ -gchar * -purple_certificate_pool_mkpath(PurpleCertificatePool *pool, const gchar *id); - -/** - * Determines whether a pool can be used. - * - * Checks whether the associated CertificateScheme is loaded. - * - * @param pool Pool to check - * - * @return TRUE if the pool can be used, otherwise FALSE - */ -gboolean -purple_certificate_pool_usable(PurpleCertificatePool *pool); - -/** - * Looks up the scheme the pool operates under - * - * @param pool Pool to get the scheme of - * - * @return Pointer to the pool's scheme, or NULL if it isn't loaded. - * @see purple_certificate_pool_usable() - */ -PurpleCertificateScheme * -purple_certificate_pool_get_scheme(PurpleCertificatePool *pool); - -/** - * Check for presence of an ID in a pool. - * @param pool Pool to look in - * @param id ID to look for - * @return TRUE if the ID is in the pool, else FALSE - */ -gboolean -purple_certificate_pool_contains(PurpleCertificatePool *pool, const gchar *id); - -/** - * Retrieve a certificate from a pool. - * @param pool Pool to fish in - * @param id ID to look up - * @return Retrieved certificate, or NULL if it wasn't there - */ -PurpleCertificate * -purple_certificate_pool_retrieve(PurpleCertificatePool *pool, const gchar *id); - -/** - * Add a certificate to a pool - * - * Any pre-existing certificate of the same ID will be overwritten. - * - * @param pool Pool to add to - * @param id ID to store the certificate with - * @param crt Certificate to store - * @return TRUE if the operation succeeded, otherwise FALSE - */ -gboolean -purple_certificate_pool_store(PurpleCertificatePool *pool, const gchar *id, PurpleCertificate *crt); - -/** - * Remove a certificate from a pool - * - * @param pool Pool to remove from - * @param id ID to remove - * @return TRUE if the operation succeeded, otherwise FALSE - */ -gboolean -purple_certificate_pool_delete(PurpleCertificatePool *pool, const gchar *id); - -/** - * Get the list of IDs currently in the pool. - * - * @param pool Pool to enumerate - * @return GList pointing to newly-allocated id strings. Free using - * purple_certificate_pool_destroy_idlist() - */ -GList * -purple_certificate_pool_get_idlist(PurpleCertificatePool *pool); - -/** - * Destroys the result given by purple_certificate_pool_get_idlist() - * - * @param idlist ID List to destroy - */ -void -purple_certificate_pool_destroy_idlist(GList *idlist); - -/*@}*/ - -/*****************************************************************************/ -/** @name Certificate Subsystem API */ -/*****************************************************************************/ -/*@{*/ - -/** - * Initialize the certificate system - */ -void -purple_certificate_init(void); - -/** - * Un-initialize the certificate system - */ -void -purple_certificate_uninit(void); - -/** - * Get the Certificate subsystem handle for signalling purposes - */ -gpointer -purple_certificate_get_handle(void); - -/** Look up a registered CertificateScheme by name - * @param name The scheme name. Case insensitive. - * @return Pointer to the located Scheme, or NULL if it isn't found. - */ -PurpleCertificateScheme * -purple_certificate_find_scheme(const gchar *name); - -/** - * Get all registered CertificateSchemes - * - * @return GList pointing to all registered CertificateSchemes . This value - * is owned by libpurple - */ -GList * -purple_certificate_get_schemes(void); - -/** Register a CertificateScheme with libpurple - * - * No two schemes can be registered with the same name; this function enforces - * that. - * - * @param scheme Pointer to the scheme to register. - * @return TRUE if the scheme was successfully added, otherwise FALSE - */ -gboolean -purple_certificate_register_scheme(PurpleCertificateScheme *scheme); - -/** Unregister a CertificateScheme from libpurple - * - * @param scheme Scheme to unregister. - * If the scheme is not registered, this is a no-op. - * - * @return TRUE if the unregister completed successfully - */ -gboolean -purple_certificate_unregister_scheme(PurpleCertificateScheme *scheme); - -/** Look up a registered PurpleCertificateVerifier by scheme and name - * @param scheme_name Scheme name. Case insensitive. - * @param ver_name The verifier name. Case insensitive. - * @return Pointer to the located Verifier, or NULL if it isn't found. - */ -PurpleCertificateVerifier * -purple_certificate_find_verifier(const gchar *scheme_name, const gchar *ver_name); - -/** - * Get the list of registered CertificateVerifiers - * - * @return GList of all registered PurpleCertificateVerifier. This value - * is owned by libpurple - */ -GList * -purple_certificate_get_verifiers(void); - -/** - * Register a CertificateVerifier with libpurple - * - * @param vr Verifier to register. - * @return TRUE if register succeeded, otherwise FALSE - */ -gboolean -purple_certificate_register_verifier(PurpleCertificateVerifier *vr); - -/** - * Unregister a CertificateVerifier with libpurple - * - * @param vr Verifier to unregister. - * @return TRUE if unregister succeeded, otherwise FALSE - */ -gboolean -purple_certificate_unregister_verifier(PurpleCertificateVerifier *vr); - -/** Look up a registered PurpleCertificatePool by scheme and name - * @param scheme_name Scheme name. Case insensitive. - * @param pool_name Pool name. Case insensitive. - * @return Pointer to the located Pool, or NULL if it isn't found. - */ -PurpleCertificatePool * -purple_certificate_find_pool(const gchar *scheme_name, const gchar *pool_name); - -/** - * Get the list of registered Pools - * - * @return GList of all registered PurpleCertificatePool s. This value - * is owned by libpurple - */ -GList * -purple_certificate_get_pools(void); - -/** - * Register a CertificatePool with libpurple and call its init function - * - * @param pool Pool to register. - * @return TRUE if the register succeeded, otherwise FALSE - */ -gboolean -purple_certificate_register_pool(PurpleCertificatePool *pool); - -/** - * Unregister a CertificatePool with libpurple and call its uninit function - * - * @param pool Pool to unregister. - * @return TRUE if the unregister succeeded, otherwise FALSE - */ -gboolean -purple_certificate_unregister_pool(PurpleCertificatePool *pool); - -/*@}*/ - - -/** - * Displays a window showing X.509 certificate information - * - * @param crt Certificate under an "x509" Scheme - * @todo Will break on CA certs, as they have no Common Name - */ -void -purple_certificate_display_x509(PurpleCertificate *crt); - -/** - * Add a search path for certificates. - * - * @param path Path to search for certificates. - */ -void purple_certificate_add_ca_search_path(const char *path); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* _PURPLE_CERTIFICATE_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/chat.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/chat.h deleted file mode 100644 index 203b242..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/chat.h +++ /dev/null @@ -1,118 +0,0 @@ -/** - * @file chat.h Chat stuff - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_CHAT_H_ -#define PURPLE_JABBER_CHAT_H_ - -#include "internal.h" -#include "connection.h" -#include "conversation.h" -#include "request.h" -#include "roomlist.h" - -#include "jabber.h" - -typedef struct _JabberChatMember { - char *handle; - char *jid; -} JabberChatMember; - - -typedef struct _JabberChat { - JabberStream *js; - char *room; - char *server; - char *handle; - GHashTable *components; - int id; - PurpleConversation *conv; - gboolean muc; - gboolean xhtml; - PurpleRequestType config_dialog_type; - void *config_dialog_handle; - GHashTable *members; - gboolean left; - time_t joined; -} JabberChat; - -GList *jabber_chat_info(PurpleConnection *gc); -GHashTable *jabber_chat_info_defaults(PurpleConnection *gc, const char *chat_name); -char *jabber_get_chat_name(GHashTable *data); - -/** - * in-prpl function for joining a chat room. Doesn't require sticking goop - * into a hash table. - * - * @param room The room to join. This MUST be normalized already. - * @param server The server the room is on. This MUST be normalized already. - * @param password The password (if required) to join the room. May be NULL. - * @param data The chat hash table. May be NULL (it will be generated - * for current core<>prpl API interface.) - */ -JabberChat *jabber_join_chat(JabberStream *js, const char *room, - const char *server, const char *handle, - const char *password, GHashTable *data); - -void jabber_chat_join(PurpleConnection *gc, GHashTable *data); -JabberChat *jabber_chat_find(JabberStream *js, const char *room, - const char *server); -JabberChat *jabber_chat_find_by_id(JabberStream *js, int id); -JabberChat *jabber_chat_find_by_conv(PurpleConversation *conv); -void jabber_chat_destroy(JabberChat *chat); -void jabber_chat_free(JabberChat *chat); -gboolean jabber_chat_find_buddy(PurpleConversation *conv, const char *name); -void jabber_chat_invite(PurpleConnection *gc, int id, const char *message, - const char *name); -void jabber_chat_leave(PurpleConnection *gc, int id); -char *jabber_chat_buddy_real_name(PurpleConnection *gc, int id, const char *who); -void jabber_chat_request_room_configure(JabberChat *chat); -void jabber_chat_create_instant_room(JabberChat *chat); -void jabber_chat_register(JabberChat *chat); -void jabber_chat_change_topic(JabberChat *chat, const char *topic); -void jabber_chat_set_topic(PurpleConnection *gc, int id, const char *topic); -gboolean jabber_chat_change_nick(JabberChat *chat, const char *nick); -void jabber_chat_part(JabberChat *chat, const char *msg); -void jabber_chat_track_handle(JabberChat *chat, const char *handle, - const char *jid, const char *affiliation, const char *role); -void jabber_chat_remove_handle(JabberChat *chat, const char *handle); -gboolean jabber_chat_ban_user(JabberChat *chat, const char *who, - const char *why); -gboolean jabber_chat_affiliate_user(JabberChat *chat, const char *who, - const char *affiliation); -gboolean jabber_chat_affiliation_list(JabberChat *chat, const char *affiliation); -gboolean jabber_chat_role_user(JabberChat *chat, const char *who, - const char *role, const char *why); -gboolean jabber_chat_role_list(JabberChat *chat, const char *role); - -PurpleRoomlist *jabber_roomlist_get_list(PurpleConnection *gc); -void jabber_roomlist_cancel(PurpleRoomlist *list); - -void jabber_chat_disco_traffic(JabberChat *chat); - -char *jabber_roomlist_room_serialize(PurpleRoomlistRoom *room); - -gboolean jabber_chat_all_participants_have_capability(const JabberChat *chat, - const gchar *cap); -guint jabber_chat_get_num_participants(const JabberChat *chat); - -#endif /* PURPLE_JABBER_CHAT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cipher.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cipher.h deleted file mode 100644 index b6479c6..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cipher.h +++ /dev/null @@ -1,502 +0,0 @@ -/** - * @file cipher.h Purple Cipher API - * @ingroup core - * @see @ref cipher-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_CIPHER_H -#define PURPLE_CIPHER_H - -#include -#include - -#define PURPLE_CIPHER(obj) ((PurpleCipher *)(obj)) /**< PurpleCipher typecast helper */ -#define PURPLE_CIPHER_OPS(obj) ((PurpleCipherOps *)(obj)) /**< PurpleCipherInfo typecase helper */ -#define PURPLE_CIPHER_CONTEXT(obj) ((PurpleCipherContext *)(obj)) /**< PurpleCipherContext typecast helper */ - -typedef struct _PurpleCipher PurpleCipher; /**< A handle to a PurpleCipher */ -typedef struct _PurpleCipherOps PurpleCipherOps; /**< Ops for a PurpleCipher */ -typedef struct _PurpleCipherContext PurpleCipherContext; /**< A context for a PurpleCipher */ - -/** - * Modes for batch encrypters - */ -typedef enum _PurpleCipherBatchMode { - PURPLE_CIPHER_BATCH_MODE_ECB, - PURPLE_CIPHER_BATCH_MODE_CBC -} PurpleCipherBatchMode; - -/** - * The operation flags for a cipher - */ -typedef enum _PurpleCipherCaps { - PURPLE_CIPHER_CAPS_SET_OPT = 1 << 1, /**< Set option flag */ - PURPLE_CIPHER_CAPS_GET_OPT = 1 << 2, /**< Get option flag */ - PURPLE_CIPHER_CAPS_INIT = 1 << 3, /**< Init flag */ - PURPLE_CIPHER_CAPS_RESET = 1 << 4, /**< Reset flag */ - PURPLE_CIPHER_CAPS_UNINIT = 1 << 5, /**< Uninit flag */ - PURPLE_CIPHER_CAPS_SET_IV = 1 << 6, /**< Set IV flag */ - PURPLE_CIPHER_CAPS_APPEND = 1 << 7, /**< Append flag */ - PURPLE_CIPHER_CAPS_DIGEST = 1 << 8, /**< Digest flag */ - PURPLE_CIPHER_CAPS_ENCRYPT = 1 << 9, /**< Encrypt flag */ - PURPLE_CIPHER_CAPS_DECRYPT = 1 << 10, /**< Decrypt flag */ - PURPLE_CIPHER_CAPS_SET_SALT = 1 << 11, /**< Set salt flag */ - PURPLE_CIPHER_CAPS_GET_SALT_SIZE = 1 << 12, /**< Get salt size flag */ - PURPLE_CIPHER_CAPS_SET_KEY = 1 << 13, /**< Set key flag */ - PURPLE_CIPHER_CAPS_GET_KEY_SIZE = 1 << 14, /**< Get key size flag */ - PURPLE_CIPHER_CAPS_SET_BATCH_MODE = 1 << 15, /**< Set batch mode flag */ - PURPLE_CIPHER_CAPS_GET_BATCH_MODE = 1 << 16, /**< Get batch mode flag */ - PURPLE_CIPHER_CAPS_GET_BLOCK_SIZE = 1 << 17, /**< The get block size flag */ - PURPLE_CIPHER_CAPS_SET_KEY_WITH_LEN = 1 << 18, /**< The set key with length flag */ - PURPLE_CIPHER_CAPS_UNKNOWN = 1 << 19 /**< Unknown */ -} PurpleCipherCaps; - -/** - * The operations of a cipher. Every cipher must implement one of these. - */ -struct _PurpleCipherOps { - /** The set option function */ - void (*set_option)(PurpleCipherContext *context, const gchar *name, void *value); - - /** The get option function */ - void *(*get_option)(PurpleCipherContext *context, const gchar *name); - - /** The init function */ - void (*init)(PurpleCipherContext *context, void *extra); - - /** The reset function */ - void (*reset)(PurpleCipherContext *context, void *extra); - - /** The uninit function */ - void (*uninit)(PurpleCipherContext *context); - - /** The set initialization vector function */ - void (*set_iv)(PurpleCipherContext *context, guchar *iv, size_t len); - - /** The append data function */ - void (*append)(PurpleCipherContext *context, const guchar *data, size_t len); - - /** The digest function */ - gboolean (*digest)(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len); - - /** The encrypt function */ - int (*encrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen); - - /** The decrypt function */ - int (*decrypt)(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen); - - /** The set salt function */ - void (*set_salt)(PurpleCipherContext *context, guchar *salt); - - /** The get salt size function */ - size_t (*get_salt_size)(PurpleCipherContext *context); - - /** The set key function */ - void (*set_key)(PurpleCipherContext *context, const guchar *key); - - /** The get key size function */ - size_t (*get_key_size)(PurpleCipherContext *context); - - /** The set batch mode function */ - void (*set_batch_mode)(PurpleCipherContext *context, PurpleCipherBatchMode mode); - - /** The get batch mode function */ - PurpleCipherBatchMode (*get_batch_mode)(PurpleCipherContext *context); - - /** The get block size function */ - size_t (*get_block_size)(PurpleCipherContext *context); - - /** The set key with length function */ - void (*set_key_with_len)(PurpleCipherContext *context, const guchar *key, size_t len); -}; - -G_BEGIN_DECLS - -/*****************************************************************************/ -/** @name PurpleCipher API */ -/*****************************************************************************/ -/*@{*/ - -/** - * Gets a cipher's name - * - * @param cipher The cipher handle - * - * @return The cipher's name - */ -const gchar *purple_cipher_get_name(PurpleCipher *cipher); - -/** - * Gets a cipher's capabilities - * - * @param cipher The cipher handle - * - * @return The cipher's info - */ -guint purple_cipher_get_capabilities(PurpleCipher *cipher); - -/** - * Gets a digest from a cipher - * - * @param name The cipher's name - * @param data The data to hash - * @param data_len The length of the data - * @param in_len The length of the buffer - * @param digest The returned digest - * @param out_len The length written - * - * @return @c TRUE if successful, @c FALSE otherwise - */ -gboolean purple_cipher_digest_region(const gchar *name, const guchar *data, size_t data_len, size_t in_len, guchar digest[], size_t *out_len); - -/*@}*/ -/******************************************************************************/ -/** @name PurpleCiphers API */ -/******************************************************************************/ -/*@{*/ - -/** - * Finds a cipher by it's name - * - * @param name The name of the cipher to find - * - * @return The cipher handle or @c NULL - */ -PurpleCipher *purple_ciphers_find_cipher(const gchar *name); - -/** - * Registers a cipher as a usable cipher - * - * @param name The name of the new cipher - * @param ops The cipher ops to register - * - * @return The handle to the new cipher or @c NULL if it failed - */ -PurpleCipher *purple_ciphers_register_cipher(const gchar *name, PurpleCipherOps *ops); - -/** - * Unregisters a cipher - * - * @param cipher The cipher handle to unregister - * - * @return Whether or not the cipher was successfully unloaded - */ -gboolean purple_ciphers_unregister_cipher(PurpleCipher *cipher); - -/** - * Gets the list of ciphers - * - * @return The list of available ciphers - * @note This list should not be modified, it is owned by the cipher core - */ -GList *purple_ciphers_get_ciphers(void); - -/*@}*/ -/******************************************************************************/ -/** @name PurpleCipher Subsystem API */ -/******************************************************************************/ -/*@{*/ - -/** - * Gets the handle to the cipher subsystem - * - * @return The handle to the cipher subsystem - */ -gpointer purple_ciphers_get_handle(void); - -/** - * Initializes the cipher core - */ -void purple_ciphers_init(void); - -/** - * Uninitializes the cipher core - */ -void purple_ciphers_uninit(void); - -/*@}*/ -/******************************************************************************/ -/** @name PurpleCipherContext API */ -/******************************************************************************/ -/*@{*/ - -/** - * Sets the value an option on a cipher context - * - * @param context The cipher context - * @param name The name of the option - * @param value The value to set - */ -void purple_cipher_context_set_option(PurpleCipherContext *context, const gchar *name, gpointer value); - -/** - * Gets the vale of an option on a cipher context - * - * @param context The cipher context - * @param name The name of the option - * @return The value of the option - */ -gpointer purple_cipher_context_get_option(PurpleCipherContext *context, const gchar *name); - -/** - * Creates a new cipher context and initializes it - * - * @param cipher The cipher to use - * @param extra Extra data for the specific cipher - * - * @return The new cipher context - */ -PurpleCipherContext *purple_cipher_context_new(PurpleCipher *cipher, void *extra); - -/** - * Creates a new cipher context by the cipher name and initializes it - * - * @param name The cipher's name - * @param extra Extra data for the specific cipher - * - * @return The new cipher context - */ -PurpleCipherContext *purple_cipher_context_new_by_name(const gchar *name, void *extra); - -/** - * Resets a cipher context to it's default value - * @note If you have set an IV you will have to set it after resetting - * - * @param context The context to reset - * @param extra Extra data for the specific cipher - */ -void purple_cipher_context_reset(PurpleCipherContext *context, gpointer extra); - -/** - * Destorys a cipher context and deinitializes it - * - * @param context The cipher context to destory - */ -void purple_cipher_context_destroy(PurpleCipherContext *context); - -/** - * Sets the initialization vector for a context - * @note This should only be called right after a cipher context is created or reset - * - * @param context The context to set the IV to - * @param iv The initialization vector to set - * @param len The len of the IV - */ -void purple_cipher_context_set_iv(PurpleCipherContext *context, guchar *iv, size_t len); - -/** - * Appends data to the context - * - * @param context The context to append data to - * @param data The data to append - * @param len The length of the data - */ -void purple_cipher_context_append(PurpleCipherContext *context, const guchar *data, size_t len); - -/** - * Digests a context - * - * @param context The context to digest - * @param in_len The length of the buffer - * @param digest The return buffer for the digest - * @param out_len The length of the returned value - */ -gboolean purple_cipher_context_digest(PurpleCipherContext *context, size_t in_len, guchar digest[], size_t *out_len); - -/** - * Converts a guchar digest into a hex string - * - * @param context The context to get a digest from - * @param in_len The length of the buffer - * @param digest_s The return buffer for the string digest - * @param out_len The length of the returned value - */ -gboolean purple_cipher_context_digest_to_str(PurpleCipherContext *context, size_t in_len, gchar digest_s[], size_t *out_len); - -/** - * Encrypts data using the context - * - * @param context The context - * @param data The data to encrypt - * @param len The length of the data - * @param output The output buffer - * @param outlen The len of data that was outputed - * - * @return A cipher specific status code - */ -gint purple_cipher_context_encrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen); - -/** - * Decrypts data using the context - * - * @param context The context - * @param data The data to encrypt - * @param len The length of the returned value - * @param output The output buffer - * @param outlen The len of data that was outputed - * - * @return A cipher specific status code - */ -gint purple_cipher_context_decrypt(PurpleCipherContext *context, const guchar data[], size_t len, guchar output[], size_t *outlen); - -/** - * Sets the salt on a context - * - * @param context The context whose salt to set - * @param salt The salt - */ -void purple_cipher_context_set_salt(PurpleCipherContext *context, guchar *salt); - -/** - * Gets the size of the salt if the cipher supports it - * - * @param context The context whose salt size to get - * - * @return The size of the salt - */ -size_t purple_cipher_context_get_salt_size(PurpleCipherContext *context); - -/** - * Sets the key on a context - * - * @param context The context whose key to set - * @param key The key - */ -void purple_cipher_context_set_key(PurpleCipherContext *context, const guchar *key); - -/** - * Gets the key size for a context - * - * @param context The context whose key size to get - * - * @return The size of the key - */ -size_t purple_cipher_context_get_key_size(PurpleCipherContext *context); - -/** - * Sets the batch mode of a context - * - * @param context The context whose batch mode to set - * @param mode The batch mode under which the cipher should operate - * - */ -void purple_cipher_context_set_batch_mode(PurpleCipherContext *context, PurpleCipherBatchMode mode); - -/** - * Gets the batch mode of a context - * - * @param context The context whose batch mode to get - * - * @return The batch mode under which the cipher is operating - */ -PurpleCipherBatchMode purple_cipher_context_get_batch_mode(PurpleCipherContext *context); - -/** - * Gets the block size of a context - * - * @param context The context whose block size to get - * - * @return The block size of the context - */ -size_t purple_cipher_context_get_block_size(PurpleCipherContext *context); - -/** - * Sets the key with a given length on a context - * - * @param context The context whose key to set - * @param key The key - * @param len The length of the key - * - */ -void purple_cipher_context_set_key_with_len(PurpleCipherContext *context, const guchar *key, size_t len); - -/** - * Sets the cipher data for a context - * - * @param context The context whose cipher data to set - * @param data The cipher data to set - */ -void purple_cipher_context_set_data(PurpleCipherContext *context, gpointer data); - -/** - * Gets the cipher data for a context - * - * @param context The context whose cipher data to get - * - * @return The cipher data - */ -gpointer purple_cipher_context_get_data(PurpleCipherContext *context); - -/*@}*/ -/*****************************************************************************/ -/** @name Purple Cipher HTTP Digest Helper Functions */ -/*****************************************************************************/ -/*@{*/ - -/** - * Calculates a session key for HTTP Digest authentation - * - * See RFC 2617 for more information. - * - * @param algorithm The hash algorithm to use - * @param username The username provided by the user - * @param realm The authentication realm provided by the server - * @param password The password provided by the user - * @param nonce The nonce provided by the server - * @param client_nonce The nonce provided by the client - * - * @return The session key, or @c NULL if an error occurred. - */ -gchar *purple_cipher_http_digest_calculate_session_key( - const gchar *algorithm, const gchar *username, - const gchar *realm, const gchar *password, - const gchar *nonce, const gchar *client_nonce); - -/** Calculate a response for HTTP Digest authentication - * - * See RFC 2617 for more information. - * - * @param algorithm The hash algorithm to use - * @param method The HTTP method in use - * @param digest_uri The URI from the initial request - * @param qop The "quality of protection" - * @param entity The entity body - * @param nonce The nonce provided by the server - * @param nonce_count The nonce count - * @param client_nonce The nonce provided by the client - * @param session_key The session key from purple_cipher_http_digest_calculate_session_key() - * - * @return The hashed response, or @c NULL if an error occurred. - */ -gchar *purple_cipher_http_digest_calculate_response( - const gchar *algorithm, const gchar *method, - const gchar *digest_uri, const gchar *qop, - const gchar *entity, const gchar *nonce, - const gchar *nonce_count, const gchar *client_nonce, - const gchar *session_key); - -/*@}*/ - -G_END_DECLS - -#endif /* PURPLE_CIPHER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/circbuffer.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/circbuffer.h deleted file mode 100644 index 77e7724..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/circbuffer.h +++ /dev/null @@ -1,118 +0,0 @@ -/** - * @file circbuffer.h Buffer Utility Functions - * @ingroup core - */ - -/* Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _CIRCBUFFER_H -#define _CIRCBUFFER_H - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct _PurpleCircBuffer { - - /** A pointer to the starting address of our chunk of memory. */ - gchar *buffer; - - /** The incremental amount to increase this buffer by when - * the buffer is not big enough to hold incoming data, in bytes. */ - gsize growsize; - - /** The length of this buffer, in bytes. */ - gsize buflen; - - /** The number of bytes of this buffer that contain unread data. */ - gsize bufused; - - /** A pointer to the next byte where new incoming data is - * buffered to. */ - gchar *inptr; - - /** A pointer to the next byte of buffered data that should be - * read by the consumer. */ - gchar *outptr; - -} PurpleCircBuffer; - -/** - * Creates a new circular buffer. This will not allocate any memory for the - * actual buffer until data is appended to it. - * - * @param growsize The amount that the buffer should grow the first time data - * is appended and every time more space is needed. Pass in - * "0" to use the default of 256 bytes. - * - * @return The new PurpleCircBuffer. This should be freed with - * purple_circ_buffer_destroy when you are done with it - */ -PurpleCircBuffer *purple_circ_buffer_new(gsize growsize); - -/** - * Dispose of the PurpleCircBuffer and free any memory used by it (including any - * memory used by the internal buffer). - * - * @param buf The PurpleCircBuffer to free - */ -void purple_circ_buffer_destroy(PurpleCircBuffer *buf); - -/** - * Append data to the PurpleCircBuffer. This will grow the internal - * buffer to fit the added data, if needed. - * - * @param buf The PurpleCircBuffer to which to append the data - * @param src pointer to the data to copy into the buffer - * @param len number of bytes to copy into the buffer - */ -void purple_circ_buffer_append(PurpleCircBuffer *buf, gconstpointer src, gsize len); - -/** - * Determine the maximum number of contiguous bytes that can be read from the - * PurpleCircBuffer. - * Note: This may not be the total number of bytes that are buffered - a - * subsequent call after calling purple_circ_buffer_mark_read() may indicate more - * data is available to read. - * - * @param buf the PurpleCircBuffer for which to determine the maximum contiguous - * bytes that can be read. - * - * @return the number of bytes that can be read from the PurpleCircBuffer - */ -gsize purple_circ_buffer_get_max_read(const PurpleCircBuffer *buf); - -/** - * Mark the number of bytes that have been read from the buffer. - * - * @param buf The PurpleCircBuffer to mark bytes read from - * @param len The number of bytes to mark as read - * - * @return TRUE if we successfully marked the bytes as having been read, FALSE - * otherwise. - */ -gboolean purple_circ_buffer_mark_read(PurpleCircBuffer *buf, gsize len); - -#ifdef __cplusplus -} -#endif - -#endif /* _CIRCBUFFER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmdproc.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmdproc.h deleted file mode 100644 index 9ec6c49..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmdproc.h +++ /dev/null @@ -1,100 +0,0 @@ -/** - * @file cmdproc.h MSN command processor functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_CMDPROC_H -#define MSN_CMDPROC_H - -typedef struct _MsnCmdProc MsnCmdProc; - -#include "command.h" -#include "history.h" -#include "servconn.h" -#include "session.h" -#include "table.h" - -struct _MsnCmdProc -{ - MsnSession *session; - MsnServConn *servconn; - - GQueue *txqueue; - - MsnCommand *last_cmd; - - MsnTable *cbs_table; - - MsnHistory *history; - - GHashTable *multiparts; /**< Multi-part message ID's */ - - void *data; /**< Extra data, like the switchboard. */ -}; - -/** - * Creates a MsnCmdProc structure. - * - * @param session The session to associate with. - * - * @return A new MsnCmdProc structure. - */ -MsnCmdProc *msn_cmdproc_new(MsnSession *session); - -/** - * Destroys an MsnCmdProc. - * - * @param cmdproc The object structure. - */ -void msn_cmdproc_destroy(MsnCmdProc *cmdproc); - -/** - * Process the queued transactions. - * - * @param cmdproc The MsnCmdProc. - */ -void msn_cmdproc_process_queue(MsnCmdProc *cmdproc); - -/** - * Sends transaction using this servconn. - * - * @param cmdproc The MsnCmdProc to be used. - * @param trans The MsnTransaction to be sent. - */ -gboolean msn_cmdproc_send_trans(MsnCmdProc *cmdproc, MsnTransaction *trans); - -/** - * Add a transaction to the queue to be processed latter. - * - * @param cmdproc The MsnCmdProc in which the transaction will be queued. - * @param trans The MsnTransaction to be queued. - */ -void msn_cmdproc_queue_trans(MsnCmdProc *cmdproc, - MsnTransaction *trans); - -void msn_cmdproc_process_msg(MsnCmdProc *cmdproc, - MsnMessage *msg); -void msn_cmdproc_process_cmd(MsnCmdProc *cmdproc, MsnCommand *cmd); -void msn_cmdproc_process_cmd_text(MsnCmdProc *cmdproc, const char *command); -void msn_cmdproc_process_payload(MsnCmdProc *cmdproc, - char *payload, int payload_len); - -#endif /* MSN_CMDPROC_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmds.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmds.h deleted file mode 100644 index 5e18992..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/cmds.h +++ /dev/null @@ -1,250 +0,0 @@ -/** - * @file cmds.h Commands API - * @ingroup core - * @see @ref cmd-signals - */ - -/* Copyright (C) 2003 Timothy Ringenbach - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ -#ifndef _PURPLE_CMDS_H_ -#define _PURPLE_CMDS_H_ - -#include "conversation.h" - -/**************************************************************************/ -/** @name Structures */ -/**************************************************************************/ -/*@{*/ - -/** The possible results of running a command with purple_cmd_do_command(). */ -typedef enum _PurpleCmdStatus { - PURPLE_CMD_STATUS_OK, - PURPLE_CMD_STATUS_FAILED, - PURPLE_CMD_STATUS_NOT_FOUND, - PURPLE_CMD_STATUS_WRONG_ARGS, - PURPLE_CMD_STATUS_WRONG_PRPL, - PURPLE_CMD_STATUS_WRONG_TYPE -} PurpleCmdStatus; - -/** Commands registered with the core return one of these values when run. - * Normally, a command will want to return one of the first two; in some - * unusual cases, you might want to have several functions called for a - * particular command; in this case, they should return - * #PURPLE_CMD_RET_CONTINUE to cause the core to fall through to other - * commands with the same name. - */ -typedef enum _PurpleCmdRet { - PURPLE_CMD_RET_OK, /**< Everything's okay; Don't look for another command to call. */ - PURPLE_CMD_RET_FAILED, /**< The command failed, but stop looking.*/ - PURPLE_CMD_RET_CONTINUE /**< Continue, looking for other commands with the same name to call. */ -} PurpleCmdRet; - -#define PURPLE_CMD_FUNC(func) ((PurpleCmdFunc)func) - -/** A function implementing a command, as passed to purple_cmd_register(). - * - * @todo document the arguments to these functions. - * */ -typedef PurpleCmdRet (*PurpleCmdFunc)(PurpleConversation *, const gchar *cmd, - gchar **args, gchar **error, void *data); -/** A unique integer representing a command registered with - * purple_cmd_register(), which can subsequently be passed to - * purple_cmd_unregister() to unregister that command. - */ -typedef guint PurpleCmdId; - -typedef enum _PurpleCmdPriority { - PURPLE_CMD_P_VERY_LOW = -1000, - PURPLE_CMD_P_LOW = 0, - PURPLE_CMD_P_DEFAULT = 1000, - PURPLE_CMD_P_PRPL = 2000, - PURPLE_CMD_P_PLUGIN = 3000, - PURPLE_CMD_P_ALIAS = 4000, - PURPLE_CMD_P_HIGH = 5000, - PURPLE_CMD_P_VERY_HIGH = 6000 -} PurpleCmdPriority; - -/** Flags used to set various properties of commands. Every command should - * have at least one of #PURPLE_CMD_FLAG_IM and #PURPLE_CMD_FLAG_CHAT set in - * order to be even slighly useful. - * - * @see purple_cmd_register - */ -typedef enum _PurpleCmdFlag { - /** Command is usable in IMs. */ - PURPLE_CMD_FLAG_IM = 0x01, - /** Command is usable in multi-user chats. */ - PURPLE_CMD_FLAG_CHAT = 0x02, - /** Command is usable only for a particular prpl. */ - PURPLE_CMD_FLAG_PRPL_ONLY = 0x04, - /** Incorrect arguments to this command should be accepted anyway. */ - PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS = 0x08 -} PurpleCmdFlag; - - -/*@}*/ - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Commands API */ -/**************************************************************************/ -/*@{*/ - -/** - * Register a new command with the core. - * - * The command will only happen if commands are enabled, - * which is a UI pref. UIs don't have to support commands at all. - * - * @param cmd The command. This should be a UTF-8 (or ASCII) string, with no spaces - * or other white space. - * @param args A string of characters describing to libpurple how to parse this - * command's arguments. If what the user types doesn't match this - * pattern, libpurple will keep looking for another command, unless - * the flag #PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS is passed in @a f. - * This string should contain no whitespace, and use a single - * character for each argument. The recognized characters are: - *
    - *
  • 'w': Matches a single word.
  • - *
  • 'W': Matches a single word, with formatting.
  • - *
  • 's': Matches the rest of the arguments after this - * point, as a single string.
  • - *
  • 'S': Same as 's' but with formatting.
  • - *
- * If args is the empty string, then the command accepts no arguments. - * The args passed to the callback @a func will be a @c NULL - * terminated array of @c NULL terminated strings, and will always - * match the number of arguments asked for, unless - * #PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS is passed. - * @param p This is the priority. Higher priority commands will be run first, - * and usually the first command will stop any others from being - * called. - * @param f Flags specifying various options about this command, combined with - * | (bitwise OR). You need to at least pass one of - * #PURPLE_CMD_FLAG_IM or #PURPLE_CMD_FLAG_CHAT (you may pass both) in - * order for the command to ever actually be called. - * @param prpl_id If the #PURPLE_CMD_FLAG_PRPL_ONLY flag is set, this is the id - * of the prpl to which the command applies (such as - * "prpl-msn"). If the flag is not set, this parameter - * is ignored; pass @c NULL (or a humourous string of your - * choice!). - * @param func This is the function to call when someone enters this command. - * @param helpstr a whitespace sensitive, UTF-8, HTML string describing how to - * use the command. The preferred format of this string is the - * command's name, followed by a space and any arguments it - * accepts (if it takes any arguments, otherwise no space), - * followed by a colon, two spaces, and a description of the - * command in sentence form. Do not include a slash before the - * command name. - * @param data User defined data to pass to the #PurpleCmdFunc @a f. - * @return A #PurpleCmdId, which is only used for calling - * #purple_cmd_unregister, or @a 0 on failure. - */ -PurpleCmdId purple_cmd_register(const gchar *cmd, const gchar *args, PurpleCmdPriority p, PurpleCmdFlag f, - const gchar *prpl_id, PurpleCmdFunc func, const gchar *helpstr, void *data); - -/** - * Unregister a command with the core. - * - * All registered commands must be unregistered, if they're registered by a plugin - * or something else that might go away. Normally this is called when the plugin - * unloads itself. - * - * @param id The #PurpleCmdId to unregister, as returned by #purple_cmd_register. - */ -void purple_cmd_unregister(PurpleCmdId id); - -/** - * Do a command. - * - * Normally the UI calls this to perform a command. This might also be useful - * if aliases are ever implemented. - * - * @param conv The conversation the command was typed in. - * @param cmdline The command the user typed (including all arguments) as a single string. - * The caller doesn't have to do any parsing, except removing the command - * prefix, which the core has no knowledge of. cmd should not contain any - * formatting, and should be in plain text (no html entities). - * @param markup This is the same as cmd, but is the formatted version. It should be in - * HTML, with < > and &, at least, escaped to html entities, and should - * include both the default formatting and any extra manual formatting. - * @param errormsg If the command failed errormsg is filled in with the appropriate error - * message. It must be freed by the caller with g_free(). - * @return A #PurpleCmdStatus indicating if the command succeeded or failed. - */ -PurpleCmdStatus purple_cmd_do_command(PurpleConversation *conv, const gchar *cmdline, - const gchar *markup, gchar **errormsg); - -/** - * List registered commands. - * - * Returns a GList (which must be freed by the caller) of all commands - * that are valid in the context of @a conv, or all commands, if @a conv is @c - * NULL. Don't keep this list around past the main loop, or anything else that - * might unregister a command, as the const char *'s used get freed - * then. - * - * @param conv The conversation, or @c NULL. - * @return A @c GList of const char *, which must be freed with - * g_list_free(). - */ -GList *purple_cmd_list(PurpleConversation *conv); - -/** - * Get the help string for a command. - * - * Returns the help strings for a given command in the form of a GList, - * one node for each matching command. - * - * @param conv The conversation, or @c NULL for no context. - * @param cmd The command. No wildcards accepted, but returns help for all - * commands if @c NULL. - * @return A GList of const char *s, which is the help string - * for that command. - */ -GList *purple_cmd_help(PurpleConversation *conv, const gchar *cmd); - -/** - * Get the handle for the commands API - * @return The handle - * @since 2.5.0 - */ -gpointer purple_cmds_get_handle(void); - -/** - * Initialize the commands subsystem. - * @since 2.5.0 - */ -void purple_cmds_init(void); - -/** - * Uninitialize the commands subsystem. - * @since 2.5.0 - */ -void purple_cmds_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_CMDS_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/command.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/command.h deleted file mode 100644 index 481a807..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/command.h +++ /dev/null @@ -1,84 +0,0 @@ -/** - * @file command.h MSN command functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_COMMAND_H -#define MSN_COMMAND_H - -typedef struct _MsnCommand MsnCommand; - -#include "cmdproc.h" -#include "transaction.h" - -typedef void (*MsnPayloadCb)(MsnCmdProc *cmdproc, MsnCommand *cmd, - char *payload, size_t len); - -/** - * A received command. - */ -struct _MsnCommand -{ - unsigned int trId; - - char *command; - char **params; - int param_count; - - guint ref_count; - - MsnTransaction *trans; - - char *payload; - size_t payload_len; - - MsnPayloadCb payload_cb; - void *payload_cbdata; -}; - -/** - * Create a command object from the incoming string and ref it. - * - * @param string The incoming string. - * - * @return A MsnCommand object. - */ -MsnCommand *msn_command_from_string(const char *string); - -/** - * Increment the ref count. - * - * @param cmd The MsnCommand to be ref. - * - * @return The ref command. - */ -MsnCommand *msn_command_ref(MsnCommand *cmd); - -/** - * Decrement the ref count. If the count goes to 0, destroy it. - * - * @param cmd The MsnCommand to be unref. - * - */ -void msn_command_unref(MsnCommand *cmd); - -#endif /* MSN_COMMAND_H */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/connection.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/connection.h deleted file mode 100644 index 1eb7c15..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/connection.h +++ /dev/null @@ -1,626 +0,0 @@ -/** - * @file connection.h Connection API - * @ingroup core - * @see @ref connection-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_CONNECTION_H_ -#define _PURPLE_CONNECTION_H_ - -/** @copydoc _PurpleConnection */ -typedef struct _PurpleConnection PurpleConnection; - -/** - * Flags to change behavior of the client for a given connection. - */ -typedef enum -{ - PURPLE_CONNECTION_HTML = 0x0001, /**< Connection sends/receives in 'HTML'. */ - PURPLE_CONNECTION_NO_BGCOLOR = 0x0002, /**< Connection does not send/receive - background colors. */ - PURPLE_CONNECTION_AUTO_RESP = 0x0004, /**< Send auto responses when away. */ - PURPLE_CONNECTION_FORMATTING_WBFO = 0x0008, /**< The text buffer must be formatted as a whole */ - PURPLE_CONNECTION_NO_NEWLINES = 0x0010, /**< No new lines are allowed in outgoing messages */ - PURPLE_CONNECTION_NO_FONTSIZE = 0x0020, /**< Connection does not send/receive font sizes */ - PURPLE_CONNECTION_NO_URLDESC = 0x0040, /**< Connection does not support descriptions with links */ - PURPLE_CONNECTION_NO_IMAGES = 0x0080, /**< Connection does not support sending of images */ - PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY = 0x0100, /**< Connection supports sending and receiving custom smileys */ - PURPLE_CONNECTION_SUPPORT_MOODS = 0x0200, /**< Connection supports setting moods */ - PURPLE_CONNECTION_SUPPORT_MOOD_MESSAGES = 0x0400 /**< Connection supports setting a message on moods */ -} PurpleConnectionFlags; - -typedef enum -{ - PURPLE_DISCONNECTED = 0, /**< Disconnected. */ - PURPLE_CONNECTED, /**< Connected. */ - PURPLE_CONNECTING /**< Connecting. */ - -} PurpleConnectionState; - -/** - * Possible errors that can cause a connection to be closed. - * - * @since 2.3.0 - */ -typedef enum -{ - /** There was an error sending or receiving on the network socket, or - * there was some protocol error (such as the server sending malformed - * data). - */ - PURPLE_CONNECTION_ERROR_NETWORK_ERROR = 0, - /** The username supplied was not valid. */ - PURPLE_CONNECTION_ERROR_INVALID_USERNAME = 1, - /** The username, password or some other credential was incorrect. Use - * #PURPLE_CONNECTION_ERROR_INVALID_USERNAME instead if the username - * is known to be invalid. - */ - PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED = 2, - /** libpurple doesn't speak any of the authentication methods the - * server offered. - */ - PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE = 3, - /** libpurple was built without SSL support, and the connection needs - * SSL. - */ - PURPLE_CONNECTION_ERROR_NO_SSL_SUPPORT = 4, - /** There was an error negotiating SSL on this connection, or the - * server does not support encryption but an account option was set to - * require it. - */ - PURPLE_CONNECTION_ERROR_ENCRYPTION_ERROR = 5, - /** Someone is already connected to the server using the name you are - * trying to connect with. - */ - PURPLE_CONNECTION_ERROR_NAME_IN_USE = 6, - - /** The username/server/other preference for the account isn't valid. - * For instance, on IRC the username cannot contain white space. - * This reason should not be used for incorrect passwords etc: use - * #PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED for that. - * - * @todo This reason really shouldn't be necessary. Usernames and - * other account preferences should be validated when the - * account is created. - */ - PURPLE_CONNECTION_ERROR_INVALID_SETTINGS = 7, - - /** The server did not provide a SSL certificate. */ - PURPLE_CONNECTION_ERROR_CERT_NOT_PROVIDED = 8, - /** The server's SSL certificate could not be trusted. */ - PURPLE_CONNECTION_ERROR_CERT_UNTRUSTED = 9, - /** The server's SSL certificate has expired. */ - PURPLE_CONNECTION_ERROR_CERT_EXPIRED = 10, - /** The server's SSL certificate is not yet valid. */ - PURPLE_CONNECTION_ERROR_CERT_NOT_ACTIVATED = 11, - /** The server's SSL certificate did not match its hostname. */ - PURPLE_CONNECTION_ERROR_CERT_HOSTNAME_MISMATCH = 12, - /** The server's SSL certificate does not have the expected - * fingerprint. - */ - PURPLE_CONNECTION_ERROR_CERT_FINGERPRINT_MISMATCH = 13, - /** The server's SSL certificate is self-signed. */ - PURPLE_CONNECTION_ERROR_CERT_SELF_SIGNED = 14, - /** There was some other error validating the server's SSL certificate. - */ - PURPLE_CONNECTION_ERROR_CERT_OTHER_ERROR = 15, - - /** Some other error occurred which fits into none of the other - * categories. - */ - /* purple_connection_error_reason() in connection.c uses the fact that - * this is the last member of the enum when sanity-checking; if other - * reasons are added after it, the check must be updated. - */ - PURPLE_CONNECTION_ERROR_OTHER_ERROR = 16 -} PurpleConnectionError; - -/** Holds the type of an error along with its description. */ -typedef struct -{ - /** The type of error. */ - PurpleConnectionError type; - /** A localised, human-readable description of the error. */ - char *description; -} PurpleConnectionErrorInfo; - -#include - -#include "account.h" -#include "plugin.h" -#include "status.h" -#include "sslconn.h" - -/** - * Connection UI operations. Used to notify the user of changes to - * connections, such as being disconnected, and to respond to the - * underlying network connection appearing and disappearing. UIs should - * call #purple_connections_set_ui_ops() with an instance of this struct. - * - * @see @ref ui-ops - */ -typedef struct -{ - /** - * When an account is connecting, this operation is called to notify - * the UI of what is happening, as well as which @a step out of @a - * step_count has been reached (which might be displayed as a progress - * bar). - * @see #purple_connection_update_progress - */ - void (*connect_progress)(PurpleConnection *gc, - const char *text, - size_t step, - size_t step_count); - - /** - * Called when a connection is established (just before the - * @ref signed-on signal). - */ - void (*connected)(PurpleConnection *gc); - - /** - * Called when a connection is ended (between the @ref signing-off - * and @ref signed-off signals). - */ - void (*disconnected)(PurpleConnection *gc); - - /** - * Used to display connection-specific notices. (Pidgin's Gtk user - * interface implements this as a no-op; #purple_connection_notice(), - * which uses this operation, is not used by any of the protocols - * shipped with libpurple.) - */ - void (*notice)(PurpleConnection *gc, const char *text); - - /** - * Called when an error causes a connection to be disconnected. - * Called before #disconnected. - * @param text a localized error message. - * @see #purple_connection_error - * @deprecated in favour of - * #PurpleConnectionUiOps.report_disconnect_reason. - */ - void (*report_disconnect)(PurpleConnection *gc, const char *text); - - /** - * Called when libpurple discovers that the computer's network - * connection is active. On Linux, this uses Network Manager if - * available; on Windows, it uses Win32's network change notification - * infrastructure. - */ - void (*network_connected)(void); - - /** - * Called when libpurple discovers that the computer's network - * connection has gone away. - */ - void (*network_disconnected)(void); - - /** - * Called when an error causes a connection to be disconnected. - * Called before #disconnected. This op is intended to replace - * #report_disconnect. If both are implemented, this will be called - * first; however, there's no real reason to implement both. - * - * @param reason why the connection ended, if known, or - * #PURPLE_CONNECTION_ERROR_OTHER_ERROR, if not. - * @param text a localized message describing the disconnection - * in more detail to the user. - * @see #purple_connection_error_reason - * - * @since 2.3.0 - */ - void (*report_disconnect_reason)(PurpleConnection *gc, - PurpleConnectionError reason, - const char *text); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); -} PurpleConnectionUiOps; - - -/* Represents an active connection on an account. */ -struct _PurpleConnection -{ - PurplePlugin *prpl; /**< The protocol plugin. */ - PurpleConnectionFlags flags; /**< Connection flags. */ - - PurpleConnectionState state; /**< The connection state. */ - - PurpleAccount *account; /**< The account being connected to. */ - char *password; /**< The password used. */ - int inpa; /**< The input watcher. */ - - GSList *buddy_chats; /**< A list of active chats - (#PurpleConversation structs of type - #PURPLE_CONV_TYPE_CHAT). */ - void *proto_data; /**< Protocol-specific data. */ - - char *display_name; /**< How you appear to other people. */ - guint keepalive; /**< Keep-alive. */ - - /** Wants to Die state. This is set when the user chooses to log out, or - * when the protocol is disconnected and should not be automatically - * reconnected (incorrect password, etc.). prpls should rely on - * purple_connection_error_reason() to set this for them rather than - * setting it themselves. - * @see purple_connection_error_is_fatal - */ - gboolean wants_to_die; - - guint disconnect_timeout; /**< Timer used for nasty stack tricks */ - time_t last_received; /**< When we last received a packet. Set by the - prpl to avoid sending unneeded keepalives */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Connection API */ -/**************************************************************************/ -/*@{*/ - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_CONNECTION_C_) -/** - * This function should only be called by purple_account_connect() - * in account.c. If you're trying to sign on an account, use that - * function instead. - * - * Creates a connection to the specified account and either connects - * or attempts to register a new account. If you are logging in, - * the connection uses the current active status for this account. - * So if you want to sign on as "away," for example, you need to - * have called purple_account_set_status(account, "away"). - * (And this will call purple_account_connect() automatically). - * - * @param account The account the connection should be connecting to. - * @param regist Whether we are registering a new account or just - * trying to do a normal signon. - * @param password The password to use. - * - * @deprecated As this is internal, we should make it private in 3.0.0. - */ -void purple_connection_new(PurpleAccount *account, gboolean regist, - const char *password); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_CONNECTION_C_) -/** - * This function should only be called by purple_account_unregister() - * in account.c. - * - * Tries to unregister the account on the server. If the account is not - * connected, also creates a new connection. - * - * @param account The account to unregister - * @param password The password to use. - * @param cb Optional callback to be called when unregistration is complete - * @param user_data user data to pass to the callback - * - * @deprecated As this is internal, we should make it private in 3.0.0. - */ -void purple_connection_new_unregister(PurpleAccount *account, const char *password, PurpleAccountUnregistrationCb cb, void *user_data); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_CONNECTION_C_) -/** - * Disconnects and destroys a PurpleConnection. - * - * This function should only be called by purple_account_disconnect() - * in account.c. If you're trying to sign off an account, use that - * function instead. - * - * @param gc The purple connection to destroy. - * - * @deprecated As this is internal, we should make it private in 3.0.0. - */ -void purple_connection_destroy(PurpleConnection *gc); -#endif - -/** - * Sets the connection state. PRPLs should call this and pass in - * the state #PURPLE_CONNECTED when the account is completely - * signed on. What does it mean to be completely signed on? If - * the core can call prpl->set_status, and it successfully changes - * your status, then the account is online. - * - * @param gc The connection. - * @param state The connection state. - */ -void purple_connection_set_state(PurpleConnection *gc, PurpleConnectionState state); - -/** - * Sets the connection's account. - * - * @param gc The connection. - * @param account The account. - */ -void purple_connection_set_account(PurpleConnection *gc, PurpleAccount *account); - -/** - * Sets the connection's displayed name. - * - * @param gc The connection. - * @param name The displayed name. - */ -void purple_connection_set_display_name(PurpleConnection *gc, const char *name); - -/** - * Sets the protocol data for a connection. - * - * @param connection The PurpleConnection. - * @param proto_data The protocol data to set for the connection. - * - * @since 2.6.0 - */ -void purple_connection_set_protocol_data(PurpleConnection *connection, void *proto_data); - -/** - * Returns the connection state. - * - * @param gc The connection. - * - * @return The connection state. - */ -PurpleConnectionState purple_connection_get_state(const PurpleConnection *gc); - -/** - * Returns TRUE if the account is connected, otherwise returns FALSE. - * - * @return TRUE if the account is connected, otherwise returns FALSE. - */ -#define PURPLE_CONNECTION_IS_CONNECTED(gc) \ - (purple_connection_get_state(gc) == PURPLE_CONNECTED) - -/** - * Returns the connection's account. - * - * @param gc The connection. - * - * @return The connection's account. - */ -PurpleAccount *purple_connection_get_account(const PurpleConnection *gc); - -/** - * Returns the protocol plugin managing a connection. - * - * @param gc The connection. - * - * @return The protocol plugin. - * - * @since 2.4.0 - */ -PurplePlugin * purple_connection_get_prpl(const PurpleConnection *gc); - -/** - * Returns the connection's password. - * - * @param gc The connection. - * - * @return The connection's password. - */ -const char *purple_connection_get_password(const PurpleConnection *gc); - -/** - * Returns the connection's displayed name. - * - * @param gc The connection. - * - * @return The connection's displayed name. - */ -const char *purple_connection_get_display_name(const PurpleConnection *gc); - -/** - * Gets the protocol data from a connection. - * - * @param connection The PurpleConnection. - * - * @return The protocol data for the connection. - * - * @since 2.6.0 - */ -void *purple_connection_get_protocol_data(const PurpleConnection *connection); - -/** - * Updates the connection progress. - * - * @param gc The connection. - * @param text Information on the current step. - * @param step The current step. - * @param count The total number of steps. - */ -void purple_connection_update_progress(PurpleConnection *gc, const char *text, - size_t step, size_t count); - -/** - * Displays a connection-specific notice. - * - * @param gc The connection. - * @param text The notice text. - */ -void purple_connection_notice(PurpleConnection *gc, const char *text); - -/** - * Closes a connection with an error. - * - * @param gc The connection. - * @param reason The error text, which may not be @c NULL. - * @deprecated in favour of #purple_connection_error_reason. Calling - * @c purple_connection_error(gc, text) is equivalent to calling - * @c purple_connection_error_reason(gc, reason, text) where @c reason is - * #PURPLE_CONNECTION_ERROR_OTHER_ERROR if @c gc->wants_to_die is @c TRUE, and - * #PURPLE_CONNECTION_ERROR_NETWORK_ERROR if not. (This is to keep - * auto-reconnection behaviour the same when using old prpls which don't use - * reasons yet.) - */ -void purple_connection_error(PurpleConnection *gc, const char *reason); - -/** - * Closes a connection with an error and a human-readable description of the - * error. It also sets @c gc->wants_to_die to the value of - * #purple_connection_error_is_fatal(@a reason), mainly for - * backwards-compatibility. - * - * @param gc the connection which is closing. - * @param reason why the connection is closing. - * @param description a non-@c NULL localized description of the error. - * - * @since 2.3.0 - */ -void -purple_connection_error_reason (PurpleConnection *gc, - PurpleConnectionError reason, - const char *description); - -/** - * Closes a connection due to an SSL error; this is basically a shortcut to - * turning the #PurpleSslErrorType into a #PurpleConnectionError and a - * human-readable string and then calling purple_connection_error_reason(). - * - * @since 2.3.0 - */ -void -purple_connection_ssl_error (PurpleConnection *gc, - PurpleSslErrorType ssl_error); - -/** - * Reports whether a disconnection reason is fatal (in which case the account - * should probably not be automatically reconnected) or transient (so - * auto-reconnection is a good idea). - * For instance, #PURPLE_CONNECTION_ERROR_NETWORK_ERROR is a temporary error, - * which might be caused by losing the network connection, so - * purple_connection_error_is_fatal (PURPLE_CONNECTION_ERROR_NETWORK_ERROR) - * is @c FALSE. On the other hand, - * #PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED probably indicates a - * misconfiguration of the account which needs the user to go fix it up, so - * purple_connection_error_is_fatal - * (PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED) is @c TRUE. - * - * (This function is meant to replace checking PurpleConnection.wants_to_die.) - * - * @return @c TRUE if the account should not be automatically reconnected, and - * @c FALSE otherwise. - * - * @since 2.3.0 - */ -gboolean -purple_connection_error_is_fatal (PurpleConnectionError reason); - -/*@}*/ - -/**************************************************************************/ -/** @name Connections API */ -/**************************************************************************/ -/*@{*/ - -/** - * Disconnects from all connections. - */ -void purple_connections_disconnect_all(void); - -/** - * Returns a list of all active connections. This does not - * include connections that are in the process of connecting. - * - * @constreturn A list of all active connections. - */ -GList *purple_connections_get_all(void); - -/** - * Returns a list of all connections in the process of connecting. - * - * @constreturn A list of connecting connections. - */ -GList *purple_connections_get_connecting(void); - -/** - * Checks if gc is still a valid pointer to a gc. - * - * @return @c TRUE if gc is valid. - * - * @deprecated Do not use this. Instead, cancel your asynchronous request - * when the PurpleConnection is destroyed. - */ -/* - * TODO: Eventually this bad boy will be removed, because it is - * a gross fix for a crashy problem. - */ -#define PURPLE_CONNECTION_IS_VALID(gc) (g_list_find(purple_connections_get_all(), (gc)) != NULL) - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used for connections. - * - * @param ops The UI operations structure. - */ -void purple_connections_set_ui_ops(PurpleConnectionUiOps *ops); - -/** - * Returns the UI operations structure used for connections. - * - * @return The UI operations structure in use. - */ -PurpleConnectionUiOps *purple_connections_get_ui_ops(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Connections Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Initializes the connections subsystem. - */ -void purple_connections_init(void); - -/** - * Uninitializes the connections subsystem. - */ -void purple_connections_uninit(void); - -/** - * Returns the handle to the connections subsystem. - * - * @return The connections subsystem handle. - */ -void *purple_connections_get_handle(void); - -/*@}*/ - - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_CONNECTION_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/contact.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/contact.h deleted file mode 100644 index 3398528..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/contact.h +++ /dev/null @@ -1,746 +0,0 @@ -/** - * @file contact.h Header file for contact.c - * Author - * MaYuan - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - */ -#ifndef MSN_CONTACT_H -#define MSN_CONTACT_H - -typedef struct _MsnCallbackState MsnCallbackState; - -typedef enum -{ - MSN_ADD_BUDDY = 0x01, - MSN_MOVE_BUDDY = 0x02, - MSN_ACCEPTED_BUDDY = 0x04, - MSN_DENIED_BUDDY = 0x08, - MSN_ADD_GROUP = 0x10, - MSN_DEL_GROUP = 0x20, - MSN_RENAME_GROUP = 0x40, - MSN_UPDATE_INFO = 0x80, - MSN_ANNOTATE_USER = 0x100 -} MsnCallbackAction; - -typedef enum -{ - MSN_UPDATE_DISPLAY, /* Real display name */ - MSN_UPDATE_ALIAS, /* Aliased display name */ - MSN_UPDATE_COMMENT -} MsnContactUpdateType; - -typedef enum -{ - MSN_PS_INITIAL, - MSN_PS_SAVE_CONTACT, - MSN_PS_PENDING_LIST, - MSN_PS_CONTACT_API, - MSN_PS_BLOCK_UNBLOCK, - MSN_PS_TIMER -} MsnSoapPartnerScenario; - -#include "session.h" -#include "soap.h" - -#define MSN_APPLICATION_ID "CFE80F9D-180F-4399-82AB-413F33A1FA11" - -#define MSN_CONTACT_SERVER "local-bay.contacts.msn.com" - -/* Get Contact List */ - -#define MSN_GET_CONTACT_POST_URL "/abservice/SharingService.asmx" -#define MSN_GET_CONTACT_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/FindMembership" - -#define MSN_GET_CONTACT_UPDATE_XML \ - "Full"\ - "true"\ - "%s" - -#define MSN_GET_CONTACT_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "%s"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "Messenger"\ - "Invitation"\ - "SocialNetwork"\ - "Space"\ - "Profile"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ -"" - -/************************************************ - * Address Book SOAP - * *********************************************/ - -#define MSN_ADDRESS_BOOK_POST_URL "/abservice/abservice.asmx" - -/* Create AddressBook template */ -#define MSN_ADD_ADDRESSBOOK_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABAdd" - -#define MSN_ADD_ADDRESSBOOK_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Initial"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "0"\ - "%s"\ - "true"\ - ""\ - ""\ - ""\ -"" - -/* Get AddressBook */ -#define MSN_GET_ADDRESS_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABFindContactsPaged" -#define MSN_GET_ADDRESS_FULL_TIME "0001-01-01T00:00:00.0000000-08:00" -#define MSN_GET_ADDRESS_UPDATE_XML \ - ""\ - "true"\ - "%s"\ - "" - -#define MSN_GET_GLEAM_UPDATE_XML \ - "%s"\ - "Gleam"\ - "%s" - -#define MSN_GET_ADDRESS_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "%s"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "Full"\ - "AB AllGroups CircleResult"\ - "%s"\ - ""\ - ""\ -"" - - -/*Gleams SOAP request template*/ -#define MSN_GET_GLEAMS_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABFindAll" -#define MSN_GLEAMS_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Initial"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - "Full"\ - "Gleam"\ - "0001-01-01T00:00:00.0000000-08:00"\ - ""\ - ""\ -"" - - -/******************************************************* - * Contact Management SOAP actions - *******************************************************/ - -/* Add a new contact */ -#define MSN_CONTACT_ADD_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABContactAdd" -#define MSN_CONTACT_LIVE_PENDING_XML \ - ""\ - ""\ - "LivePending"\ - "%s"\ - "true"\ - ""\ - "" - -#define MSN_CONTACT_XML \ - ""\ - ""\ - "%s"\ - "false"\ - "true"\ - ""\ - "" - -#define MSN_CONTACT_DISPLAYNAME_XML \ - ""\ - ""\ - "%s"\ - "%s"\ - "true"\ - ""\ - "" - -#define MSN_CONTACT_ID_XML \ - ""\ - "%s"\ - "" - -#define MSN_CONTACT_EMAIL_XML \ - ""\ - ""\ - ""\ - ""\ - "%s"\ - "%s"\ - "true"\ - "%d"\ - "false"\ - ""\ - ""\ - ""\ - ""\ - "" - -#define MSN_CONTACT_INVITE_MESSAGE_XML \ - ""\ - ""\ - ""\ - "MSN.IM.InviteMessage"\ - "%s"\ - ""\ - ""\ - "%s"\ - "" - -#define MSN_ADD_CONTACT_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "ContactSave"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - "%s"\ - ""\ - "true"\ - ""\ - ""\ - ""\ -"" - -/* Add a contact to a group */ -#define MSN_ADD_CONTACT_GROUP_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABGroupContactAdd" -#define MSN_ADD_CONTACT_GROUP_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "ContactSave"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - "%s"\ - ""\ - "true"\ - "true"\ - ""\ - "%s"\ - ""\ - ""\ -"" - -/* Delete a contact from the Contact List */ -#define MSN_CONTACT_DEL_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABContactDelete" -#define MSN_DEL_CONTACT_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Timer"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - "%s"\ - ""\ - ""\ -"" - -/* Remove a contact from a group */ -#define MSN_CONTACT_DEL_GROUP_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABGroupContactDelete" -#define MSN_CONTACT_DEL_GROUP_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Timer"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - "%s"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ -"" - - -/* Update Contact Information */ -#define MSN_CONTACT_UPDATE_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABContactUpdate" -#define MSN_CONTACT_UPDATE_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - ""\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ -"" - -/* Update Contact Annotations */ -#define MSN_CONTACT_ANNOTATE_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABContactUpdate" -#define MSN_CONTACT_ANNOTATE_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - ""\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - ""\ - "Annotation"\ - ""\ - ""\ - ""\ - ""\ -"" - -/******************************************************* - * Add/Delete contact from lists SOAP actions - *******************************************************/ - -/* block means delete from allow list and add contact to block list */ -#define MSN_SHARE_POST_URL "/abservice/SharingService.asmx" - -#define MSN_ADD_MEMBER_TO_LIST_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/AddMember" -#define MSN_DELETE_MEMBER_FROM_LIST_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/DeleteMember" - -#define MSN_MEMBER_PASSPORT_XML \ - ""\ - "%s"\ - "Accepted"\ - "<%s>%s"\ - "" - -#define MSN_MEMBER_MEMBERSHIPID_XML \ - ""\ - "%s"\ - "%u"\ - "Accepted"\ - "" - -/* first delete contact from allow list */ - -#define MSN_CONTACT_DELETE_FROM_LIST_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "%s"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - ""\ - "0"\ - "Messenger"\ - ""\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ -"" - -#define MSN_CONTACT_ADD_TO_LIST_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "%s"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - ""\ - "0"\ - "Messenger"\ - ""\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ -"" - - - -/******************************************************* - * Group management SOAP actions - *******************************************************/ - -/* add a group */ -#define MSN_GROUP_ADD_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABGroupAdd" -#define MSN_GROUP_ADD_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "GroupSave"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - "false"\ - ""\ - ""\ - ""\ - "%s"\ - "C8529CE2-6EAD-434d-881F-341E17DB3FF8"\ - "false"\ - ""\ - ""\ - "MSN.IM.Display"\ - "1"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ -"" - -/* delete a group */ -#define MSN_GROUP_DEL_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABGroupDelete" -#define MSN_GROUP_DEL_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Timer"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ -"" - -/* change a group's name */ -#define MSN_GROUP_RENAME_SOAP_ACTION "http://www.msn.com/webservices/AddressBook/ABGroupUpdate" -#define MSN_GROUP_RENAME_TEMPLATE ""\ -""\ - ""\ - ""\ - "" MSN_APPLICATION_ID ""\ - "false"\ - "Timer"\ - ""\ - ""\ - "false"\ - "EMPTY"\ - ""\ - ""\ - ""\ - ""\ - "00000000-0000-0000-0000-000000000000"\ - ""\ - ""\ - "%s"\ - ""\ - "%s"\ - ""\ - "GroupName "\ - ""\ - ""\ - ""\ - ""\ -"" - -struct _MsnCallbackState -{ - gchar * who; - gchar * uid; - gchar * old_group_name; - gchar * new_group_name; - gchar * guid; - MsnListId list_id; - MsnCallbackAction action; - MsnSession *session; - xmlnode *body; - xmlnode *token; - const gchar *post_action; - const gchar *post_url; - MsnSoapCallback cb; - /* For msn_get_contact_list only */ - MsnSoapPartnerScenario partner_scenario; -}; - -/************************************************ - * function prototype - ************************************************/ -MsnCallbackState * msn_callback_state_new(MsnSession *session); -MsnCallbackState * msn_callback_state_dup(MsnCallbackState *state); -void msn_callback_state_free(MsnCallbackState *state); -void msn_callback_state_set_who(MsnCallbackState *state, const gchar *who); -void msn_callback_state_set_uid(MsnCallbackState *state, const gchar *uid); -void msn_callback_state_set_old_group_name(MsnCallbackState *state, - const gchar *old_group_name); -void msn_callback_state_set_new_group_name(MsnCallbackState *state, - const gchar *new_group_name); -void msn_callback_state_set_guid(MsnCallbackState *state, const gchar *guid); -void msn_callback_state_set_list_id(MsnCallbackState *state, MsnListId list_id); -void msn_callback_state_set_action(MsnCallbackState *state, - MsnCallbackAction action); - -void msn_get_contact_list(MsnSession *session, - const MsnSoapPartnerScenario partner_scenario, - const char *update); -void msn_get_address_book(MsnSession *session, - const MsnSoapPartnerScenario partner_scenario, - const char * update, const char * gupdate); - -/* contact SOAP operations */ -void msn_update_contact(MsnSession *session, const char *passport, MsnContactUpdateType type, const char* value); - -void msn_annotate_contact(MsnSession *session, const char *passport, ...) G_GNUC_NULL_TERMINATED; - -void msn_add_contact(MsnSession *session, MsnCallbackState *state, - const char *passport); -void msn_delete_contact(MsnSession *session, MsnUser *user); - -void msn_add_contact_to_group(MsnSession *session, MsnCallbackState *state, - const char *passport, const char *groupId); -void msn_del_contact_from_group(MsnSession *session, const char *passport, - const char *group_name); -/* group operations */ -void msn_add_group(MsnSession *session, MsnCallbackState *state, - const char* group_name); -void msn_del_group(MsnSession *session, const gchar *group_name); -void msn_contact_rename_group(MsnSession *session, const char *old_group_name, - const char *new_group_name); - -/* lists operations */ -void msn_add_contact_to_list(MsnSession *session, MsnCallbackState *state, - const gchar *passport, const MsnListId list); -void msn_del_contact_from_list(MsnSession *session, MsnCallbackState *state, - const gchar *passport, const MsnListId list); - -#endif /* MSN_CONTACT_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/conversation.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/conversation.h deleted file mode 100644 index e01dc19..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/conversation.h +++ /dev/null @@ -1,1476 +0,0 @@ -/** - * @file conversation.h Conversation API - * @ingroup core - * @see @ref conversation-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_CONVERSATION_H_ -#define _PURPLE_CONVERSATION_H_ - -/**************************************************************************/ -/** Data Structures */ -/**************************************************************************/ - - -/** @copydoc _PurpleConversationUiOps */ -typedef struct _PurpleConversationUiOps PurpleConversationUiOps; -/** @copydoc _PurpleConversation */ -typedef struct _PurpleConversation PurpleConversation; -/** @copydoc _PurpleConvIm */ -typedef struct _PurpleConvIm PurpleConvIm; -/** @copydoc _PurpleConvChat */ -typedef struct _PurpleConvChat PurpleConvChat; -/** @copydoc _PurpleConvChatBuddy */ -typedef struct _PurpleConvChatBuddy PurpleConvChatBuddy; -/** @copydoc _PurpleConvMessage */ -typedef struct _PurpleConvMessage PurpleConvMessage; - -/** - * A type of conversation. - */ -typedef enum -{ - PURPLE_CONV_TYPE_UNKNOWN = 0, /**< Unknown conversation type. */ - PURPLE_CONV_TYPE_IM, /**< Instant Message. */ - PURPLE_CONV_TYPE_CHAT, /**< Chat room. */ - PURPLE_CONV_TYPE_MISC, /**< A misc. conversation. */ - PURPLE_CONV_TYPE_ANY /**< Any type of conversation. */ - -} PurpleConversationType; - -/** - * Conversation update type. - */ -typedef enum -{ - PURPLE_CONV_UPDATE_ADD = 0, /**< The buddy associated with the conversation - was added. */ - PURPLE_CONV_UPDATE_REMOVE, /**< The buddy associated with the conversation - was removed. */ - PURPLE_CONV_UPDATE_ACCOUNT, /**< The purple_account was changed. */ - PURPLE_CONV_UPDATE_TYPING, /**< The typing state was updated. */ - PURPLE_CONV_UPDATE_UNSEEN, /**< The unseen state was updated. */ - PURPLE_CONV_UPDATE_LOGGING, /**< Logging for this conversation was - enabled or disabled. */ - PURPLE_CONV_UPDATE_TOPIC, /**< The topic for a chat was updated. */ - /* - * XXX These need to go when we implement a more generic core/UI event - * system. - */ - PURPLE_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ - PURPLE_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */ - PURPLE_CONV_UPDATE_AWAY, /**< The other user went away. */ - PURPLE_CONV_UPDATE_ICON, /**< The other user's buddy icon changed. */ - PURPLE_CONV_UPDATE_TITLE, - PURPLE_CONV_UPDATE_CHATLEFT, - - PURPLE_CONV_UPDATE_FEATURES /**< The features for a chat have changed */ - -} PurpleConvUpdateType; - -/** - * The typing state of a user. - */ -typedef enum -{ - PURPLE_NOT_TYPING = 0, /**< Not typing. */ - PURPLE_TYPING, /**< Currently typing. */ - PURPLE_TYPED /**< Stopped typing momentarily. */ - -} PurpleTypingState; - -/** - * Flags applicable to a message. Most will have send, recv or system. - */ -typedef enum -{ - PURPLE_MESSAGE_SEND = 0x0001, /**< Outgoing message. */ - PURPLE_MESSAGE_RECV = 0x0002, /**< Incoming message. */ - PURPLE_MESSAGE_SYSTEM = 0x0004, /**< System message. */ - PURPLE_MESSAGE_AUTO_RESP = 0x0008, /**< Auto response. */ - PURPLE_MESSAGE_ACTIVE_ONLY = 0x0010, /**< Hint to the UI that this - message should not be - shown in conversations - which are only open for - internal UI purposes - (e.g. for contact-aware - conversations). */ - PURPLE_MESSAGE_NICK = 0x0020, /**< Contains your nick. */ - PURPLE_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */ - PURPLE_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */ - PURPLE_MESSAGE_ERROR = 0x0200, /**< Error message. */ - PURPLE_MESSAGE_DELAYED = 0x0400, /**< Delayed message. */ - PURPLE_MESSAGE_RAW = 0x0800, /**< "Raw" message - don't - apply formatting */ - PURPLE_MESSAGE_IMAGES = 0x1000, /**< Message contains images */ - PURPLE_MESSAGE_NOTIFY = 0x2000, /**< Message is a notification */ - PURPLE_MESSAGE_NO_LINKIFY = 0x4000, /**< Message should not be auto- - linkified @since 2.1.0 */ - PURPLE_MESSAGE_INVISIBLE = 0x8000 /**< Message should not be displayed */ -} PurpleMessageFlags; - -/** - * Flags applicable to users in Chats. - */ -typedef enum -{ - PURPLE_CBFLAGS_NONE = 0x0000, /**< No flags */ - PURPLE_CBFLAGS_VOICE = 0x0001, /**< Voiced user or "Participant" */ - PURPLE_CBFLAGS_HALFOP = 0x0002, /**< Half-op */ - PURPLE_CBFLAGS_OP = 0x0004, /**< Channel Op or Moderator */ - PURPLE_CBFLAGS_FOUNDER = 0x0008, /**< Channel Founder */ - PURPLE_CBFLAGS_TYPING = 0x0010, /**< Currently typing */ - PURPLE_CBFLAGS_AWAY = 0x0020 /**< Currently away. @since 2.8.0 */ - -} PurpleConvChatBuddyFlags; - -#include "account.h" -#include "buddyicon.h" -#include "log.h" -#include "server.h" - -/** - * Conversation operations and events. - * - * Any UI representing a conversation must assign a filled-out - * PurpleConversationUiOps structure to the PurpleConversation. - */ -struct _PurpleConversationUiOps -{ - /** Called when @a conv is created (but before the @ref - * conversation-created signal is emitted). - */ - void (*create_conversation)(PurpleConversation *conv); - - /** Called just before @a conv is freed. */ - void (*destroy_conversation)(PurpleConversation *conv); - /** Write a message to a chat. If this field is @c NULL, libpurple will - * fall back to using #write_conv. - * @see purple_conv_chat_write() - */ - void (*write_chat)(PurpleConversation *conv, const char *who, - const char *message, PurpleMessageFlags flags, - time_t mtime); - /** Write a message to an IM conversation. If this field is @c NULL, - * libpurple will fall back to using #write_conv. - * @see purple_conv_im_write() - */ - void (*write_im)(PurpleConversation *conv, const char *who, - const char *message, PurpleMessageFlags flags, - time_t mtime); - /** Write a message to a conversation. This is used rather than the - * chat- or im-specific ops for errors, system messages (such as "x is - * now know as y"), and as the fallback if #write_im and #write_chat - * are not implemented. It should be implemented, or the UI will miss - * conversation error messages and your users will hate you. - * - * @see purple_conversation_write() - */ - void (*write_conv)(PurpleConversation *conv, - const char *name, - const char *alias, - const char *message, - PurpleMessageFlags flags, - time_t mtime); - - /** Add @a cbuddies to a chat. - * @param cbuddies A @c GList of #PurpleConvChatBuddy structs. - * @param new_arrivals Whether join notices should be shown. - * (Join notices are actually written to the - * conversation by #purple_conv_chat_add_users().) - */ - void (*chat_add_users)(PurpleConversation *conv, - GList *cbuddies, - gboolean new_arrivals); - /** Rename the user in this chat named @a old_name to @a new_name. (The - * rename message is written to the conversation by libpurple.) - * @param new_alias @a new_name's new alias, if they have one. - * @see purple_conv_chat_add_users() - */ - void (*chat_rename_user)(PurpleConversation *conv, const char *old_name, - const char *new_name, const char *new_alias); - /** Remove @a users from a chat. - * @param users A @c GList of const char *s. - * @see purple_conv_chat_rename_user() - */ - void (*chat_remove_users)(PurpleConversation *conv, GList *users); - /** Called when a user's flags are changed. - * @see purple_conv_chat_user_set_flags() - */ - void (*chat_update_user)(PurpleConversation *conv, const char *user); - - /** Present this conversation to the user; for example, by displaying - * the IM dialog. - */ - void (*present)(PurpleConversation *conv); - - /** If this UI has a concept of focus (as in a windowing system) and - * this conversation has the focus, return @c TRUE; otherwise, return - * @c FALSE. - */ - gboolean (*has_focus)(PurpleConversation *conv); - - /* Custom Smileys */ - gboolean (*custom_smiley_add)(PurpleConversation *conv, const char *smile, gboolean remote); - void (*custom_smiley_write)(PurpleConversation *conv, const char *smile, - const guchar *data, gsize size); - void (*custom_smiley_close)(PurpleConversation *conv, const char *smile); - - /** Prompt the user for confirmation to send @a message. This function - * should arrange for the message to be sent if the user accepts. If - * this field is @c NULL, libpurple will fall back to using - * #purple_request_action(). - */ - void (*send_confirm)(PurpleConversation *conv, const char *message); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** - * Data specific to Instant Messages. - */ -struct _PurpleConvIm -{ - PurpleConversation *conv; /**< The parent conversation. */ - - PurpleTypingState typing_state; /**< The current typing state. */ - guint typing_timeout; /**< The typing timer handle. */ - time_t type_again; /**< The type again time. */ - guint send_typed_timeout; /**< The type again timer handle. */ - - PurpleBuddyIcon *icon; /**< The buddy icon. */ -}; - -/** - * Data specific to Chats. - */ -struct _PurpleConvChat -{ - PurpleConversation *conv; /**< The parent conversation. */ - - GList *in_room; /**< The users in the room. - * @deprecated Will be removed in 3.0.0 - */ - GList *ignored; /**< Ignored users. */ - char *who; /**< The person who set the topic. */ - char *topic; /**< The topic. */ - int id; /**< The chat ID. */ - char *nick; /**< Your nick in this chat. */ - - gboolean left; /**< We left the chat and kept the window open */ - GHashTable *users; /**< Hash table of the users in the room. - * @since 2.9.0 - */ -}; - -/** - * Data for "Chat Buddies" - */ -struct _PurpleConvChatBuddy -{ - char *name; /**< The chat participant's name in the chat. */ - char *alias; /**< The chat participant's alias, if known; - * @a NULL otherwise. - */ - char *alias_key; /**< A string by which this buddy will be sorted, - * or @c NULL if the buddy should be sorted by - * its @c name. (This is currently always @c - * NULL.) - */ - gboolean buddy; /**< @a TRUE if this chat participant is on the - * buddy list; @a FALSE otherwise. - */ - PurpleConvChatBuddyFlags flags; /**< A bitwise OR of flags for this participant, - * such as whether they are a channel operator. - */ - GHashTable *attributes; /**< A hash table of attributes about the user, such as - * real name, user@host, etc. - */ - gpointer ui_data; /** < The UI can put whatever it wants here. */ -}; - -/** - * Description of a conversation message - * - * @since 2.2.0 - */ -struct _PurpleConvMessage -{ - char *who; - char *what; - PurpleMessageFlags flags; - time_t when; - PurpleConversation *conv; /**< @since 2.3.0 */ - char *alias; /**< @since 2.3.0 */ -}; - -/** - * A core representation of a conversation between two or more people. - * - * The conversation can be an IM or a chat. - */ -struct _PurpleConversation -{ - PurpleConversationType type; /**< The type of conversation. */ - - PurpleAccount *account; /**< The user using this conversation. */ - - - char *name; /**< The name of the conversation. */ - char *title; /**< The window title. */ - - gboolean logging; /**< The status of logging. */ - - GList *logs; /**< This conversation's logs */ - - union - { - PurpleConvIm *im; /**< IM-specific data. */ - PurpleConvChat *chat; /**< Chat-specific data. */ - void *misc; /**< Misc. data. */ - - } u; - - PurpleConversationUiOps *ui_ops; /**< UI-specific operations. */ - void *ui_data; /**< UI-specific data. */ - - GHashTable *data; /**< Plugin-specific data. */ - - PurpleConnectionFlags features; /**< The supported features */ - GList *message_history; /**< Message history, as a GList of PurpleConvMessage's */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Conversation API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new conversation of the specified type. - * - * @param type The type of conversation. - * @param account The account opening the conversation window on the purple - * user's end. - * @param name The name of the conversation. For PURPLE_CONV_TYPE_IM, - * this is the name of the buddy. - * - * @return The new conversation. - */ -PurpleConversation *purple_conversation_new(PurpleConversationType type, - PurpleAccount *account, - const char *name); - -/** - * Destroys the specified conversation and removes it from the parent - * window. - * - * If this conversation is the only one contained in the parent window, - * that window is also destroyed. - * - * @param conv The conversation to destroy. - */ -void purple_conversation_destroy(PurpleConversation *conv); - - -/** - * Present a conversation to the user. This allows core code to initiate a - * conversation by displaying the IM dialog. - * @param conv The conversation to present - */ -void purple_conversation_present(PurpleConversation *conv); - - -/** - * Returns the specified conversation's type. - * - * @param conv The conversation. - * - * @return The conversation's type. - */ -PurpleConversationType purple_conversation_get_type(const PurpleConversation *conv); - -/** - * Sets the specified conversation's UI operations structure. - * - * @param conv The conversation. - * @param ops The UI conversation operations structure. - */ -void purple_conversation_set_ui_ops(PurpleConversation *conv, - PurpleConversationUiOps *ops); - -/** - * Sets the default conversation UI operations structure. - * - * @param ops The UI conversation operations structure. - */ -void purple_conversations_set_ui_ops(PurpleConversationUiOps *ops); - -/** - * Returns the specified conversation's UI operations structure. - * - * @param conv The conversation. - * - * @return The operations structure. - */ -PurpleConversationUiOps *purple_conversation_get_ui_ops( - const PurpleConversation *conv); - -/** - * Sets the specified conversation's purple_account. - * - * This purple_account represents the user using purple, not the person the user - * is having a conversation/chat/flame with. - * - * @param conv The conversation. - * @param account The purple_account. - */ -void purple_conversation_set_account(PurpleConversation *conv, - PurpleAccount *account); - -/** - * Returns the specified conversation's purple_account. - * - * This purple_account represents the user using purple, not the person the user - * is having a conversation/chat/flame with. - * - * @param conv The conversation. - * - * @return The conversation's purple_account. - */ -PurpleAccount *purple_conversation_get_account(const PurpleConversation *conv); - -/** - * Returns the specified conversation's purple_connection. - * - * This is the same as purple_conversation_get_user(conv)->gc. - * - * @param conv The conversation. - * - * @return The conversation's purple_connection. - */ -PurpleConnection *purple_conversation_get_gc(const PurpleConversation *conv); - -/** - * Sets the specified conversation's title. - * - * @param conv The conversation. - * @param title The title. - */ -void purple_conversation_set_title(PurpleConversation *conv, const char *title); - -/** - * Returns the specified conversation's title. - * - * @param conv The conversation. - * - * @return The title. - */ -const char *purple_conversation_get_title(const PurpleConversation *conv); - -/** - * Automatically sets the specified conversation's title. - * - * This function takes OPT_IM_ALIAS_TAB into account, as well as the - * user's alias. - * - * @param conv The conversation. - */ -void purple_conversation_autoset_title(PurpleConversation *conv); - -/** - * Sets the specified conversation's name. - * - * @param conv The conversation. - * @param name The conversation's name. - */ -void purple_conversation_set_name(PurpleConversation *conv, const char *name); - -/** - * Returns the specified conversation's name. - * - * @param conv The conversation. - * - * @return The conversation's name. If the conversation is an IM with a PurpleBuddy, - * then it's the name of the PurpleBuddy. - */ -const char *purple_conversation_get_name(const PurpleConversation *conv); - -/** - * Get an attribute of a chat buddy - * - * @param cb The chat buddy. - * @param key The key of the attribute. - * - * @return The value of the attribute key. - */ -const char *purple_conv_chat_cb_get_attribute(PurpleConvChatBuddy *cb, const char *key); - -/** - * Get the keys of all atributes of a chat buddy - * - * @param cb The chat buddy. - * - * @return A list of the attributes of a chat buddy. - */ -GList *purple_conv_chat_cb_get_attribute_keys(PurpleConvChatBuddy *cb); - -/** - * Set an attribute of a chat buddy - * - * @param chat The chat. - * @param cb The chat buddy. - * @param key The key of the attribute. - * @param value The value of the attribute. - */ -void purple_conv_chat_cb_set_attribute(PurpleConvChat *chat, PurpleConvChatBuddy *cb, const char *key, const char *value); - -/** - * Set attributes of a chat buddy - * - * @param chat The chat. - * @param cb The chat buddy. - * @param keys A GList of the keys. - * @param values A GList of the values. - */ -void -purple_conv_chat_cb_set_attributes(PurpleConvChat *chat, PurpleConvChatBuddy *cb, GList *keys, GList *values); - -/** - * Enables or disables logging for this conversation. - * - * @param conv The conversation. - * @param log @c TRUE if logging should be enabled, or @c FALSE otherwise. - */ -void purple_conversation_set_logging(PurpleConversation *conv, gboolean log); - -/** - * Returns whether or not logging is enabled for this conversation. - * - * @param conv The conversation. - * - * @return @c TRUE if logging is enabled, or @c FALSE otherwise. - */ -gboolean purple_conversation_is_logging(const PurpleConversation *conv); - -/** - * Closes any open logs for this conversation. - * - * Note that new logs will be opened as necessary (e.g. upon receipt of a - * message, if the conversation has logging enabled. To disable logging for - * the remainder of the conversation, use purple_conversation_set_logging(). - * - * @param conv The conversation. - */ -void purple_conversation_close_logs(PurpleConversation *conv); - -/** - * Returns the specified conversation's IM-specific data. - * - * If the conversation type is not PURPLE_CONV_TYPE_IM, this will return @c NULL. - * - * @param conv The conversation. - * - * @return The IM-specific data. - */ -PurpleConvIm *purple_conversation_get_im_data(const PurpleConversation *conv); - -#define PURPLE_CONV_IM(c) (purple_conversation_get_im_data(c)) - -/** - * Returns the specified conversation's chat-specific data. - * - * If the conversation type is not PURPLE_CONV_TYPE_CHAT, this will return @c NULL. - * - * @param conv The conversation. - * - * @return The chat-specific data. - */ -PurpleConvChat *purple_conversation_get_chat_data(const PurpleConversation *conv); - -#define PURPLE_CONV_CHAT(c) (purple_conversation_get_chat_data(c)) - -/** - * Sets extra data for a conversation. - * - * @param conv The conversation. - * @param key The unique key. - * @param data The data to assign. - */ -void purple_conversation_set_data(PurpleConversation *conv, const char *key, - gpointer data); - -/** - * Returns extra data in a conversation. - * - * @param conv The conversation. - * @param key The unqiue key. - * - * @return The data associated with the key. - */ -gpointer purple_conversation_get_data(PurpleConversation *conv, const char *key); - -/** - * Returns a list of all conversations. - * - * This list includes both IMs and chats. - * - * @constreturn A GList of all conversations. - */ -GList *purple_get_conversations(void); - -/** - * Returns a list of all IMs. - * - * @constreturn A GList of all IMs. - */ -GList *purple_get_ims(void); - -/** - * Returns a list of all chats. - * - * @constreturn A GList of all chats. - */ -GList *purple_get_chats(void); - -/** - * Finds a conversation with the specified type, name, and Purple account. - * - * @param type The type of the conversation. - * @param name The name of the conversation. - * @param account The purple_account associated with the conversation. - * - * @return The conversation if found, or @c NULL otherwise. - */ -PurpleConversation *purple_find_conversation_with_account( - PurpleConversationType type, const char *name, - const PurpleAccount *account); - -/** - * Writes to a conversation window. - * - * This function should not be used to write IM or chat messages. Use - * purple_conv_im_write() and purple_conv_chat_write() instead. Those functions will - * most likely call this anyway, but they may do their own formatting, - * sound playback, etc. - * - * This can be used to write generic messages, such as "so and so closed - * the conversation window." - * - * @param conv The conversation. - * @param who The user who sent the message. - * @param message The message. - * @param flags The message flags. - * @param mtime The time the message was sent. - * - * @see purple_conv_im_write() - * @see purple_conv_chat_write() - */ -void purple_conversation_write(PurpleConversation *conv, const char *who, - const char *message, PurpleMessageFlags flags, - time_t mtime); - -/** - Set the features as supported for the given conversation. - @param conv The conversation - @param features Bitset defining supported features -*/ -void purple_conversation_set_features(PurpleConversation *conv, - PurpleConnectionFlags features); - - -/** - Get the features supported by the given conversation. - @param conv The conversation -*/ -PurpleConnectionFlags purple_conversation_get_features(PurpleConversation *conv); - -/** - * Determines if a conversation has focus - * - * @param conv The conversation. - * - * @return @c TRUE if the conversation has focus, @c FALSE if - * it does not or the UI does not have a concept of conversation focus - */ -gboolean purple_conversation_has_focus(PurpleConversation *conv); - -/** - * Updates the visual status and UI of a conversation. - * - * @param conv The conversation. - * @param type The update type. - */ -void purple_conversation_update(PurpleConversation *conv, PurpleConvUpdateType type); - -/** - * Calls a function on each conversation. - * - * @param func The function. - */ -void purple_conversation_foreach(void (*func)(PurpleConversation *conv)); - -/** - * Retrieve the message history of a conversation. - * - * @param conv The conversation - * - * @return A GList of PurpleConvMessage's. The must not modify the list or the data within. - * The list contains the newest message at the beginning, and the oldest message at - * the end. - * - * @since 2.2.0 - */ -GList *purple_conversation_get_message_history(PurpleConversation *conv); - -/** - * Clear the message history of a conversation. - * - * @param conv The conversation - * - * @since 2.2.0 - */ -void purple_conversation_clear_message_history(PurpleConversation *conv); - -/** - * Get the sender from a PurpleConvMessage - * - * @param msg A PurpleConvMessage - * - * @return The name of the sender of the message - * - * @since 2.2.0 - */ -const char *purple_conversation_message_get_sender(PurpleConvMessage *msg); - -/** - * Get the message from a PurpleConvMessage - * - * @param msg A PurpleConvMessage - * - * @return The name of the sender of the message - * - * @since 2.2.0 - */ -const char *purple_conversation_message_get_message(PurpleConvMessage *msg); - -/** - * Get the message-flags of a PurpleConvMessage - * - * @param msg A PurpleConvMessage - * - * @return The message flags - * - * @since 2.2.0 - */ -PurpleMessageFlags purple_conversation_message_get_flags(PurpleConvMessage *msg); - -/** - * Get the timestamp of a PurpleConvMessage - * - * @param msg A PurpleConvMessage - * - * @return The timestamp of the message - * - * @since 2.2.0 - */ -time_t purple_conversation_message_get_timestamp(PurpleConvMessage *msg); - -/*@}*/ - - -/**************************************************************************/ -/** @name IM Conversation API */ -/**************************************************************************/ -/*@{*/ - -/** - * Gets an IM's parent conversation. - * - * @param im The IM. - * - * @return The parent conversation. - */ -PurpleConversation *purple_conv_im_get_conversation(const PurpleConvIm *im); - -/** - * Sets the IM's buddy icon. - * - * This should only be called from within Purple. You probably want to - * call purple_buddy_icon_set_data(). - * - * @param im The IM. - * @param icon The buddy icon. - * - * @see purple_buddy_icon_set_data() - */ -void purple_conv_im_set_icon(PurpleConvIm *im, PurpleBuddyIcon *icon); - -/** - * Returns the IM's buddy icon. - * - * @param im The IM. - * - * @return The buddy icon. - */ -PurpleBuddyIcon *purple_conv_im_get_icon(const PurpleConvIm *im); - -/** - * Sets the IM's typing state. - * - * @param im The IM. - * @param state The typing state. - */ -void purple_conv_im_set_typing_state(PurpleConvIm *im, PurpleTypingState state); - -/** - * Returns the IM's typing state. - * - * @param im The IM. - * - * @return The IM's typing state. - */ -PurpleTypingState purple_conv_im_get_typing_state(const PurpleConvIm *im); - -/** - * Starts the IM's typing timeout. - * - * @param im The IM. - * @param timeout The timeout. - */ -void purple_conv_im_start_typing_timeout(PurpleConvIm *im, int timeout); - -/** - * Stops the IM's typing timeout. - * - * @param im The IM. - */ -void purple_conv_im_stop_typing_timeout(PurpleConvIm *im); - -/** - * Returns the IM's typing timeout. - * - * @param im The IM. - * - * @return The timeout. - */ -guint purple_conv_im_get_typing_timeout(const PurpleConvIm *im); - -/** - * Sets the quiet-time when no PURPLE_TYPING messages will be sent. - * Few protocols need this (maybe only MSN). If the user is still - * typing after this quiet-period, then another PURPLE_TYPING message - * will be sent. - * - * @param im The IM. - * @param val The number of seconds to wait before allowing another - * PURPLE_TYPING message to be sent to the user. Or 0 to - * not send another PURPLE_TYPING message. - */ -void purple_conv_im_set_type_again(PurpleConvIm *im, unsigned int val); - -/** - * Returns the time after which another PURPLE_TYPING message should be sent. - * - * @param im The IM. - * - * @return The time in seconds since the epoch. Or 0 if no additional - * PURPLE_TYPING message should be sent. - */ -time_t purple_conv_im_get_type_again(const PurpleConvIm *im); - -/** - * Starts the IM's type again timeout. - * - * @param im The IM. - */ -void purple_conv_im_start_send_typed_timeout(PurpleConvIm *im); - -/** - * Stops the IM's type again timeout. - * - * @param im The IM. - */ -void purple_conv_im_stop_send_typed_timeout(PurpleConvIm *im); - -/** - * Returns the IM's type again timeout interval. - * - * @param im The IM. - * - * @return The type again timeout interval. - */ -guint purple_conv_im_get_send_typed_timeout(const PurpleConvIm *im); - -/** - * Updates the visual typing notification for an IM conversation. - * - * @param im The IM. - */ -void purple_conv_im_update_typing(PurpleConvIm *im); - -/** - * Writes to an IM. - * - * @param im The IM. - * @param who The user who sent the message. - * @param message The message to write. - * @param flags The message flags. - * @param mtime The time the message was sent. - */ -void purple_conv_im_write(PurpleConvIm *im, const char *who, - const char *message, PurpleMessageFlags flags, - time_t mtime); - -/** - * Presents an IM-error to the user - * - * This is a helper function to find a conversation, write an error to it, and - * raise the window. If a conversation with this user doesn't already exist, - * the function will return FALSE and the calling function can attempt to present - * the error another way (purple_notify_error, most likely) - * - * @param who The user this error is about - * @param account The account this error is on - * @param what The error - * @return TRUE if the error was presented, else FALSE - */ -gboolean purple_conv_present_error(const char *who, PurpleAccount *account, const char *what); - -/** - * Sends a message to this IM conversation. - * - * @param im The IM. - * @param message The message to send. - */ -void purple_conv_im_send(PurpleConvIm *im, const char *message); - -/** - * Sends a message to a conversation after confirming with - * the user. - * - * This function is intended for use in cases where the user - * hasn't explicitly and knowingly caused a message to be sent. - * The confirmation ensures that the user isn't sending a - * message by mistake. - * - * @param conv The conversation. - * @param message The message to send. - */ -void purple_conv_send_confirm(PurpleConversation *conv, const char *message); - -/** - * Sends a message to this IM conversation with specified flags. - * - * @param im The IM. - * @param message The message to send. - * @param flags The PurpleMessageFlags flags to use in addition to PURPLE_MESSAGE_SEND. - */ -void purple_conv_im_send_with_flags(PurpleConvIm *im, const char *message, PurpleMessageFlags flags); - -/** - * Adds a smiley to the conversation's smiley tree. If this returns - * @c TRUE you should call purple_conv_custom_smiley_write() one or more - * times, and then purple_conv_custom_smiley_close(). If this returns - * @c FALSE, either the conv or smile were invalid, or the icon was - * found in the cache. In either case, calling write or close would - * be an error. - * - * @param conv The conversation to associate the smiley with. - * @param smile The text associated with the smiley - * @param cksum_type The type of checksum. - * @param chksum The checksum, as a NUL terminated base64 string. - * @param remote @c TRUE if the custom smiley is set by the remote user (buddy). - * @return @c TRUE if an icon is expected, else FALSE. Note that - * it is an error to never call purple_conv_custom_smiley_close if - * this function returns @c TRUE, but an error to call it if - * @c FALSE is returned. - */ - -gboolean purple_conv_custom_smiley_add(PurpleConversation *conv, const char *smile, - const char *cksum_type, const char *chksum, - gboolean remote); - - -/** - * Updates the image associated with the current smiley. - * - * @param conv The conversation associated with the smiley. - * @param smile The text associated with the smiley. - * @param data The actual image data. - * @param size The length of the data. - */ - -void purple_conv_custom_smiley_write(PurpleConversation *conv, - const char *smile, - const guchar *data, - gsize size); - -/** - * Close the custom smiley, all data has been written with - * purple_conv_custom_smiley_write, and it is no longer valid - * to call that function on that smiley. - * - * @param conv The purple conversation associated with the smiley. - * @param smile The text associated with the smiley - */ - -void purple_conv_custom_smiley_close(PurpleConversation *conv, const char *smile); - -/*@}*/ - - -/**************************************************************************/ -/** @name Chat Conversation API */ -/**************************************************************************/ -/*@{*/ - -/** - * Gets a chat's parent conversation. - * - * @param chat The chat. - * - * @return The parent conversation. - */ -PurpleConversation *purple_conv_chat_get_conversation(const PurpleConvChat *chat); - -/** - * Sets the list of users in the chat room. - * - * @note Calling this function will not update the display of the users. - * Please use purple_conv_chat_add_user(), purple_conv_chat_add_users(), - * purple_conv_chat_remove_user(), and purple_conv_chat_remove_users() instead. - * - * @param chat The chat. - * @param users The list of users. - * - * @return The list passed. - * - * @deprecated This function will be removed in 3.0.0. You shouldn't be using it anyway. - */ -GList *purple_conv_chat_set_users(PurpleConvChat *chat, GList *users); - -/** - * Returns a list of users in the chat room. The members of the list - * are PurpleConvChatBuddy objects. - * - * @param chat The chat. - * - * @constreturn The list of users. - */ -GList *purple_conv_chat_get_users(const PurpleConvChat *chat); - -/** - * Ignores a user in a chat room. - * - * @param chat The chat. - * @param name The name of the user. - */ -void purple_conv_chat_ignore(PurpleConvChat *chat, const char *name); - -/** - * Unignores a user in a chat room. - * - * @param chat The chat. - * @param name The name of the user. - */ -void purple_conv_chat_unignore(PurpleConvChat *chat, const char *name); - -/** - * Sets the list of ignored users in the chat room. - * - * @param chat The chat. - * @param ignored The list of ignored users. - * - * @return The list passed. - */ -GList *purple_conv_chat_set_ignored(PurpleConvChat *chat, GList *ignored); - -/** - * Returns the list of ignored users in the chat room. - * - * @param chat The chat. - * - * @constreturn The list of ignored users. - */ -GList *purple_conv_chat_get_ignored(const PurpleConvChat *chat); - -/** - * Returns the actual name of the specified ignored user, if it exists in - * the ignore list. - * - * If the user found contains a prefix, such as '+' or '\@', this is also - * returned. The username passed to the function does not have to have this - * formatting. - * - * @param chat The chat. - * @param user The user to check in the ignore list. - * - * @return The ignored user if found, complete with prefixes, or @c NULL - * if not found. - */ -const char *purple_conv_chat_get_ignored_user(const PurpleConvChat *chat, - const char *user); - -/** - * Returns @c TRUE if the specified user is ignored. - * - * @param chat The chat. - * @param user The user. - * - * @return @c TRUE if the user is in the ignore list; @c FALSE otherwise. - */ -gboolean purple_conv_chat_is_user_ignored(const PurpleConvChat *chat, - const char *user); - -/** - * Sets the chat room's topic. - * - * @param chat The chat. - * @param who The user that set the topic. - * @param topic The topic. - */ -void purple_conv_chat_set_topic(PurpleConvChat *chat, const char *who, - const char *topic); - -/** - * Returns the chat room's topic. - * - * @param chat The chat. - * - * @return The chat's topic. - */ -const char *purple_conv_chat_get_topic(const PurpleConvChat *chat); - -/** - * Sets the chat room's ID. - * - * @param chat The chat. - * @param id The ID. - */ -void purple_conv_chat_set_id(PurpleConvChat *chat, int id); - -/** - * Returns the chat room's ID. - * - * @param chat The chat. - * - * @return The ID. - */ -int purple_conv_chat_get_id(const PurpleConvChat *chat); - -/** - * Writes to a chat. - * - * @param chat The chat. - * @param who The user who sent the message. - * @param message The message to write. - * @param flags The flags. - * @param mtime The time the message was sent. - */ -void purple_conv_chat_write(PurpleConvChat *chat, const char *who, - const char *message, PurpleMessageFlags flags, - time_t mtime); - -/** - * Sends a message to this chat conversation. - * - * @param chat The chat. - * @param message The message to send. - */ -void purple_conv_chat_send(PurpleConvChat *chat, const char *message); - -/** - * Sends a message to this chat conversation with specified flags. - * - * @param chat The chat. - * @param message The message to send. - * @param flags The PurpleMessageFlags flags to use. - */ -void purple_conv_chat_send_with_flags(PurpleConvChat *chat, const char *message, PurpleMessageFlags flags); - -/** - * Adds a user to a chat. - * - * @param chat The chat. - * @param user The user to add. - * @param extra_msg An extra message to display with the join message. - * @param flags The users flags - * @param new_arrival Decides whether or not to show a join notice. - */ -void purple_conv_chat_add_user(PurpleConvChat *chat, const char *user, - const char *extra_msg, PurpleConvChatBuddyFlags flags, - gboolean new_arrival); - -/** - * Adds a list of users to a chat. - * - * The data is copied from @a users, @a extra_msgs, and @a flags, so it is up to - * the caller to free this list after calling this function. - * - * @param chat The chat. - * @param users The list of users to add. - * @param extra_msgs An extra message to display with the join message for each - * user. This list may be shorter than @a users, in which - * case, the users after the end of extra_msgs will not have - * an extra message. By extension, this means that extra_msgs - * can simply be @c NULL and none of the users will have an - * extra message. - * @param flags The list of flags for each user. - * @param new_arrivals Decides whether or not to show join notices. - */ -void purple_conv_chat_add_users(PurpleConvChat *chat, GList *users, GList *extra_msgs, - GList *flags, gboolean new_arrivals); - -/** - * Renames a user in a chat. - * - * @param chat The chat. - * @param old_user The old username. - * @param new_user The new username. - */ -void purple_conv_chat_rename_user(PurpleConvChat *chat, const char *old_user, - const char *new_user); - -/** - * Removes a user from a chat, optionally with a reason. - * - * It is up to the developer to free this list after calling this function. - * - * @param chat The chat. - * @param user The user that is being removed. - * @param reason The optional reason given for the removal. Can be @c NULL. - */ -void purple_conv_chat_remove_user(PurpleConvChat *chat, const char *user, - const char *reason); - -/** - * Removes a list of users from a chat, optionally with a single reason. - * - * @param chat The chat. - * @param users The users that are being removed. - * @param reason The optional reason given for the removal. Can be @c NULL. - */ -void purple_conv_chat_remove_users(PurpleConvChat *chat, GList *users, - const char *reason); - -/** - * Finds a user in a chat - * - * @param chat The chat. - * @param user The user to look for. - * - * @return TRUE if the user is in the chat, FALSE if not - */ -gboolean purple_conv_chat_find_user(PurpleConvChat *chat, const char *user); - -/** - * Set a users flags in a chat - * - * @param chat The chat. - * @param user The user to update. - * @param flags The new flags. - */ -void purple_conv_chat_user_set_flags(PurpleConvChat *chat, const char *user, - PurpleConvChatBuddyFlags flags); - -/** - * Get the flags for a user in a chat - * - * @param chat The chat. - * @param user The user to find the flags for - * - * @return The flags for the user - */ -PurpleConvChatBuddyFlags purple_conv_chat_user_get_flags(PurpleConvChat *chat, - const char *user); - -/** - * Clears all users from a chat. - * - * @param chat The chat. - */ -void purple_conv_chat_clear_users(PurpleConvChat *chat); - -/** - * Sets your nickname (used for hilighting) for a chat. - * - * @param chat The chat. - * @param nick The nick. - */ -void purple_conv_chat_set_nick(PurpleConvChat *chat, const char *nick); - -/** - * Gets your nickname (used for hilighting) for a chat. - * - * @param chat The chat. - * @return The nick. - */ -const char *purple_conv_chat_get_nick(PurpleConvChat *chat); - -/** - * Finds a chat with the specified chat ID. - * - * @param gc The purple_connection. - * @param id The chat ID. - * - * @return The chat conversation. - */ -PurpleConversation *purple_find_chat(const PurpleConnection *gc, int id); - -/** - * Lets the core know we left a chat, without destroying it. - * Called from serv_got_chat_left(). - * - * @param chat The chat. - */ -void purple_conv_chat_left(PurpleConvChat *chat); - -/** - * Invite a user to a chat. - * The user will be prompted to enter the user's name or a message if one is - * not given. - * - * @param chat The chat. - * @param user The user to invite to the chat. - * @param message The message to send with the invitation. - * @param confirm Prompt before sending the invitation. The user is always - * prompted if either \a user or \a message is @c NULL. - * - * @since 2.6.0 - */ -void purple_conv_chat_invite_user(PurpleConvChat *chat, const char *user, - const char *message, gboolean confirm); - -/** - * Returns true if we're no longer in this chat, - * and just left the window open. - * - * @param chat The chat. - * - * @return @c TRUE if we left the chat already, @c FALSE if - * we're still there. - */ -gboolean purple_conv_chat_has_left(PurpleConvChat *chat); - -/** - * Creates a new chat buddy - * - * @param name The name. - * @param alias The alias. - * @param flags The flags. - * - * @return The new chat buddy - */ -PurpleConvChatBuddy *purple_conv_chat_cb_new(const char *name, const char *alias, - PurpleConvChatBuddyFlags flags); - -/** - * Find a chat buddy in a chat - * - * @param chat The chat. - * @param name The name of the chat buddy to find. - */ -PurpleConvChatBuddy *purple_conv_chat_cb_find(PurpleConvChat *chat, const char *name); - -/** - * Get the name of a chat buddy - * - * @param cb The chat buddy. - * - * @return The name of the chat buddy. - */ -const char *purple_conv_chat_cb_get_name(PurpleConvChatBuddy *cb); - -/** - * Destroys a chat buddy - * - * @param cb The chat buddy to destroy - */ -void purple_conv_chat_cb_destroy(PurpleConvChatBuddy *cb); - -/** - * Retrieves the extended menu items for the conversation. - * - * @param conv The conversation. - * - * @return A list of PurpleMenuAction items, harvested by the - * chat-extended-menu signal. The list and the menuaction - * items should be freed by the caller. - * - * @since 2.1.0 - */ -GList * purple_conversation_get_extended_menu(PurpleConversation *conv); - -/** - * Perform a command in a conversation. Similar to @see purple_cmd_do_command - * - * @param conv The conversation. - * @param cmdline The entire command including the arguments. - * @param markup @c NULL, or the formatted command line. - * @param error If the command failed errormsg is filled in with the appropriate error - * message, if not @c NULL. It must be freed by the caller with g_free(). - * - * @return @c TRUE if the command was executed successfully, @c FALSE otherwise. - * - * @since 2.1.0 - */ -gboolean purple_conversation_do_command(PurpleConversation *conv, const gchar *cmdline, const gchar *markup, gchar **error); - -/*@}*/ - -/**************************************************************************/ -/** @name Conversations Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the conversation subsystem handle. - * - * @return The conversation subsystem handle. - */ -void *purple_conversations_get_handle(void); - -/** - * Initializes the conversation subsystem. - */ -void purple_conversations_init(void); - -/** - * Uninitializes the conversation subsystem. - */ -void purple_conversations_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_CONVERSATION_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/core.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/core.h deleted file mode 100644 index c55591e..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/core.h +++ /dev/null @@ -1,251 +0,0 @@ -/** - * @file core.h Startup and shutdown of libpurple - * @defgroup core libpurple - * @see @ref core-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -/*! @mainpage Pidgin/Finch/libpurple API Documentation - * - * libpurple is intended to be the core of an IM - * program. Pidgin is a GTK+ frontend - * to libpurple, and Finch is an ncurses - * frontend built using libgnt - * (GLib Ncurses Toolkit). - */ - -#ifndef _PURPLE_CORE_H_ -#define _PURPLE_CORE_H_ - -typedef struct PurpleCore PurpleCore; - -/** Callbacks that fire at different points of the initialization and teardown - * of libpurple, along with a hook to return descriptive information about the - * UI. - */ -typedef struct -{ - /** Called just after the preferences subsystem is initialized; the UI - * could use this callback to add some preferences it needs to be in - * place when other subsystems are initialized. - */ - void (*ui_prefs_init)(void); - /** Called just after the debug subsystem is initialized, but before - * just about every other component's initialization. The UI should - * use this hook to call purple_debug_set_ui_ops() so that debugging - * information for other components can be logged during their - * initialization. - */ - void (*debug_ui_init)(void); - /** Called after all of libpurple has been initialized. The UI should - * use this hook to set all other necessary UiOps structures. - * - * @see @ref ui-ops - */ - void (*ui_init)(void); - /** Called after most of libpurple has been uninitialized. */ - void (*quit)(void); - - /** Called by purple_core_get_ui_info(); should return the information - * documented there. - */ - GHashTable* (*get_ui_info)(void); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); -} PurpleCoreUiOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Initializes the core of purple. - * - * This will setup preferences for all the core subsystems. - * - * @param ui The ID of the UI using the core. This should be a - * unique ID, registered with the purple team. - * - * @return @c TRUE if successful, or @c FALSE otherwise. - */ -gboolean purple_core_init(const char *ui); - -/** - * Quits the core of purple, which, depending on the UI, may quit the - * application using the purple core. - */ -void purple_core_quit(void); - -/** - *

- * Calls purple_core_quit(). This can be used as the function - * passed to purple_timeout_add() when you want to shutdown Purple - * in a specified amount of time. When shutting down Purple - * from a plugin, you must use this instead of purple_core_quit(); - * for an immediate exit, use a timeout value of 0: - *

- * - * purple_timeout_add(0, purple_core_quitcb, NULL); - * - *

- * This is ensures that code from your plugin is not being - * executed when purple_core_quit() is called. If the plugin - * called purple_core_quit() directly, you would get a core dump - * after purple_core_quit() executes and control returns to your - * plugin because purple_core_quit() frees all plugins. - *

- */ -gboolean purple_core_quit_cb(gpointer unused); - -/** - * Returns the version of the core library. - * - * @return The version of the core library. - */ -const char *purple_core_get_version(void); - -/** - * Returns the ID of the UI that is using the core, as passed to - * purple_core_init(). - * - * @return The ID of the UI that is currently using the core. - */ -const char *purple_core_get_ui(void); - -/** - * Returns a handle to the purple core. - * - * This is used to connect to @ref core-signals "core signals". - */ -PurpleCore *purple_get_core(void); - -/** - * Sets the UI ops for the core. - * - * @param ops A UI ops structure for the core. - */ -void purple_core_set_ui_ops(PurpleCoreUiOps *ops); - -/** - * Returns the UI ops for the core. - * - * @return The core's UI ops structure. - */ -PurpleCoreUiOps *purple_core_get_ui_ops(void); - -/** - * Migrates from .gaim to .purple. - * - * UIs must not call this if they have been told to use a - * custom user directory. - * - * @return A boolean indicating success or migration failure. On failure, - * the application must display an error to the user and then exit. - */ -gboolean purple_core_migrate(void); - -/** - * Ensures that only one instance is running. If libpurple is built with D-Bus - * support, this checks if another process owns the libpurple bus name and if - * so whether that process is using the same configuration directory as this - * process. - * - * @return @c TRUE if this is the first instance of libpurple running; - * @c FALSE if there is another instance running. - * - * @since 2.1.0 - */ -gboolean purple_core_ensure_single_instance(void); - -/** - * Returns a hash table containing various information about the UI. The - * following well-known entries may be in the table (along with any others the - * UI might choose to include): - * - *
- *
name
- *
the user-readable name for the UI.
- * - *
version
- *
a user-readable description of the current version of the UI.
- * - *
website
- *
the UI's website, such as http://pidgin.im.
- * - *
dev_website
- *
the UI's development/support website, such as http://developer.pidgin.im.
- * - *
client_type
- *
the type of UI. Possible values include 'pc', 'console', 'phone', - * 'handheld', 'web', and 'bot'. These values are compared - * programmatically and should not be localized.
- * - *
- * - * @return A GHashTable with strings for keys and values. This - * hash table must not be freed and should not be modified. - * - * @since 2.1.0 - * - */ -GHashTable* purple_core_get_ui_info(void); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_CORE_H_ */ - -/* - - /===- - `//"\\ """"`---.___.-"" - ______-==| | | \\ _-"` - __--""" ,-/-==\\ | | `\ ,' - _-" /' | \\ ___ / / \ / - .' / | \\ /" "\ /' / \ /' - / ____ / | \`\.__/-"" D O \_/' / \/' -/-'" """""---__ | "-/" O G R /' _--"` - \_| / R __--_ t ), __--"" - '""--_/ T _-"_>--<_\ h '-" \ - {\__--_/} / \\__>--<__\ e B \ - /' (_/ _-" | |__>--<__| U | - | _/) )-" | |__>--<__| R | - / /" ,_/ / /__>---<__/ N | - o-o _// /-"_>---<__-" I / - (^(" /"_>---<__- N _-" - ,/| /__>--<__/ A _-" - ,//('( |__>--<__| T / .----_ - ( ( ')) |__>--<__| | /' _---_"\ - `-)) )) ( |__>--<__| O | /' / "\`\ - ,/,'//( ( \__>--<__\ R \ /' // || - ,( ( ((, )) "-__>--<_"-_ "--____---"' _/'/ /' - `"/ )` ) ,/| "-_">--<_/-__ __-" _/ - ._-"//( )/ )) ` ""-'_/_/ /"""""""__--" - ;'( ')/ ,)( """""""""" - ' ') '( (/ - ' ' ` - -*/ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dbus-maybe.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dbus-maybe.h deleted file mode 100644 index 6f4c8cb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dbus-maybe.h +++ /dev/null @@ -1,35 +0,0 @@ -/* This file contains macros that wrap calls to the purple dbus module. - These macros call the appropriate functions if the build includes - dbus support and do nothing otherwise. See "dbus-server.h" for - documentation. */ - -#ifndef _PURPLE_DBUS_MAYBE_H_ -#define _PURPLE_DBUS_MAYBE_H_ - -#ifdef HAVE_DBUS - -#ifndef DBUS_API_SUBJECT_TO_CHANGE -#define DBUS_API_SUBJECT_TO_CHANGE -#endif - -#include "dbus-server.h" - -/* this provides a type check */ -#define PURPLE_DBUS_REGISTER_POINTER(ptr, type) { \ - type *typed_ptr = ptr; \ - purple_dbus_register_pointer(typed_ptr, PURPLE_DBUS_TYPE(type)); \ -} -#define PURPLE_DBUS_UNREGISTER_POINTER(ptr) purple_dbus_unregister_pointer(ptr) - -#else /* !HAVE_DBUS */ - -#define PURPLE_DBUS_REGISTER_POINTER(ptr, type) { \ - if (ptr) {} \ -} - -#define PURPLE_DBUS_UNREGISTER_POINTER(ptr) -#define DBUS_EXPORT - -#endif /* HAVE_DBUS */ - -#endif diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/debug.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/debug.h deleted file mode 100644 index b90b86b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/debug.h +++ /dev/null @@ -1,243 +0,0 @@ -/** - * @file debug.h Debug API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_DEBUG_H_ -#define _PURPLE_DEBUG_H_ - -#include -#include - -/** - * Debug levels. - */ -typedef enum -{ - PURPLE_DEBUG_ALL = 0, /**< All debug levels. */ - PURPLE_DEBUG_MISC, /**< General chatter. */ - PURPLE_DEBUG_INFO, /**< General operation Information. */ - PURPLE_DEBUG_WARNING, /**< Warnings. */ - PURPLE_DEBUG_ERROR, /**< Errors. */ - PURPLE_DEBUG_FATAL /**< Fatal errors. */ - -} PurpleDebugLevel; - -/** - * Debug UI operations. - */ -typedef struct -{ - void (*print)(PurpleDebugLevel level, const char *category, - const char *arg_s); - gboolean (*is_enabled)(PurpleDebugLevel level, - const char *category); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleDebugUiOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Debug API */ -/**************************************************************************/ -/** - * Outputs debug information. - * - * @param level The debug level. - * @param category The category (or @c NULL). - * @param format The format string. - */ -void purple_debug(PurpleDebugLevel level, const char *category, - const char *format, ...) G_GNUC_PRINTF(3, 4); - -/** - * Outputs misc. level debug information. - * - * This is a wrapper for purple_debug(), and uses PURPLE_DEBUG_MISC as - * the level. - * - * @param category The category (or @c NULL). - * @param format The format string. - * - * @see purple_debug() - */ -void purple_debug_misc(const char *category, const char *format, ...) G_GNUC_PRINTF(2, 3); - -/** - * Outputs info level debug information. - * - * This is a wrapper for purple_debug(), and uses PURPLE_DEBUG_INFO as - * the level. - * - * @param category The category (or @c NULL). - * @param format The format string. - * - * @see purple_debug() - */ -void purple_debug_info(const char *category, const char *format, ...) G_GNUC_PRINTF(2, 3); - -/** - * Outputs warning level debug information. - * - * This is a wrapper for purple_debug(), and uses PURPLE_DEBUG_WARNING as - * the level. - * - * @param category The category (or @c NULL). - * @param format The format string. - * - * @see purple_debug() - */ -void purple_debug_warning(const char *category, const char *format, ...) G_GNUC_PRINTF(2, 3); - -/** - * Outputs error level debug information. - * - * This is a wrapper for purple_debug(), and uses PURPLE_DEBUG_ERROR as - * the level. - * - * @param category The category (or @c NULL). - * @param format The format string. - * - * @see purple_debug() - */ -void purple_debug_error(const char *category, const char *format, ...) G_GNUC_PRINTF(2, 3); - -/** - * Outputs fatal error level debug information. - * - * This is a wrapper for purple_debug(), and uses PURPLE_DEBUG_ERROR as - * the level. - * - * @param category The category (or @c NULL). - * @param format The format string. - * - * @see purple_debug() - */ -void purple_debug_fatal(const char *category, const char *format, ...) G_GNUC_PRINTF(2, 3); - -/** - * Enable or disable printing debug output to the console. - * - * @param enabled TRUE to enable debug output or FALSE to disable it. - */ -void purple_debug_set_enabled(gboolean enabled); - -/** - * Check if console debug output is enabled. - * - * @return TRUE if debugging is enabled, FALSE if it is not. - */ -gboolean purple_debug_is_enabled(void); - -/** - * Enable or disable verbose debugging. This ordinarily should only be called - * by #purple_debug_init, but there are cases where this can be useful for - * plugins. - * - * @param verbose TRUE to enable verbose debugging or FALSE to disable it. - * - * @since 2.6.0 - */ -void purple_debug_set_verbose(gboolean verbose); - -/** - * Check if verbose logging is enabled. - * - * @return TRUE if verbose debugging is enabled, FALSE if it is not. - * - * @since 2.6.0 - */ -gboolean purple_debug_is_verbose(void); - -/** - * Enable or disable unsafe debugging. This ordinarily should only be called - * by #purple_debug_init, but there are cases where this can be useful for - * plugins. - * - * @param unsafe TRUE to enable debug logging of messages that could - * potentially contain passwords and other sensitive information. - * FALSE to disable it. - * - * @since 2.6.0 - */ -void purple_debug_set_unsafe(gboolean unsafe); - -/** - * Check if unsafe debugging is enabled. Defaults to FALSE. - * - * @return TRUE if the debug logging of all messages is enabled, FALSE - * if messages that could potentially contain passwords and other - * sensitive information are not logged. - * - * @since 2.6.0 - */ -gboolean purple_debug_is_unsafe(void); - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used when outputting debug - * information. - * - * @param ops The UI operations structure. - */ -void purple_debug_set_ui_ops(PurpleDebugUiOps *ops); - -/** - * Returns the UI operations structure used when outputting debug - * information. - * - * @return The UI operations structure in use. - */ -PurpleDebugUiOps *purple_debug_get_ui_ops(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Debug Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Initializes the debug subsystem. - */ -void purple_debug_init(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_DEBUG_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/desktopitem.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/desktopitem.h deleted file mode 100644 index b9ae357..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/desktopitem.h +++ /dev/null @@ -1,172 +0,0 @@ -/** - * @file desktopitem.h Functions for managing .desktop files - * @ingroup core - */ - -/* Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - -/* - * The following code has been adapted from gnome-desktop-item.[ch], - * as found on gnome-desktop-2.8.1. - * - * Copyright (C) 2004 by Alceste Scalas . - * - * Original copyright notice: - * - * Copyright (C) 1999, 2000 Red Hat Inc. - * Copyright (C) 2001 Sid Vicious - * All rights reserved. - * - * This file is part of the Gnome Library. - * - * The Gnome Library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * The Gnome Library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public - * License along with the Gnome Library; see the file COPYING.LIB. If not, - * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02111-1301, USA. - */ - -#ifndef _PURPLE_DESKTOP_ITEM_H_ -#define _PURPLE_DESKTOP_ITEM_H_ - -#include -#include - -G_BEGIN_DECLS - -typedef enum { - PURPLE_DESKTOP_ITEM_TYPE_NULL = 0 /* This means its NULL, that is, not - * set */, - PURPLE_DESKTOP_ITEM_TYPE_OTHER /* This means it's not one of the below - strings types, and you must get the - Type attribute. */, - - /* These are the standard compliant types: */ - PURPLE_DESKTOP_ITEM_TYPE_APPLICATION, - PURPLE_DESKTOP_ITEM_TYPE_LINK, - PURPLE_DESKTOP_ITEM_TYPE_FSDEVICE, - PURPLE_DESKTOP_ITEM_TYPE_MIME_TYPE, - PURPLE_DESKTOP_ITEM_TYPE_DIRECTORY, - PURPLE_DESKTOP_ITEM_TYPE_SERVICE, - PURPLE_DESKTOP_ITEM_TYPE_SERVICE_TYPE -} PurpleDesktopItemType; - -typedef struct _PurpleDesktopItem PurpleDesktopItem; - -#define PURPLE_TYPE_DESKTOP_ITEM (purple_desktop_item_get_type ()) -GType purple_desktop_item_get_type (void); - -/* standard */ -#define PURPLE_DESKTOP_ITEM_ENCODING "Encoding" /* string */ -#define PURPLE_DESKTOP_ITEM_VERSION "Version" /* numeric */ -#define PURPLE_DESKTOP_ITEM_NAME "Name" /* localestring */ -#define PURPLE_DESKTOP_ITEM_GENERIC_NAME "GenericName" /* localestring */ -#define PURPLE_DESKTOP_ITEM_TYPE "Type" /* string */ -#define PURPLE_DESKTOP_ITEM_FILE_PATTERN "FilePattern" /* regexp(s) */ -#define PURPLE_DESKTOP_ITEM_TRY_EXEC "TryExec" /* string */ -#define PURPLE_DESKTOP_ITEM_NO_DISPLAY "NoDisplay" /* boolean */ -#define PURPLE_DESKTOP_ITEM_COMMENT "Comment" /* localestring */ -#define PURPLE_DESKTOP_ITEM_EXEC "Exec" /* string */ -#define PURPLE_DESKTOP_ITEM_ACTIONS "Actions" /* strings */ -#define PURPLE_DESKTOP_ITEM_ICON "Icon" /* string */ -#define PURPLE_DESKTOP_ITEM_MINI_ICON "MiniIcon" /* string */ -#define PURPLE_DESKTOP_ITEM_HIDDEN "Hidden" /* boolean */ -#define PURPLE_DESKTOP_ITEM_PATH "Path" /* string */ -#define PURPLE_DESKTOP_ITEM_TERMINAL "Terminal" /* boolean */ -#define PURPLE_DESKTOP_ITEM_TERMINAL_OPTIONS "TerminalOptions" /* string */ -#define PURPLE_DESKTOP_ITEM_SWALLOW_TITLE "SwallowTitle" /* string */ -#define PURPLE_DESKTOP_ITEM_SWALLOW_EXEC "SwallowExec" /* string */ -#define PURPLE_DESKTOP_ITEM_MIME_TYPE "MimeType" /* regexp(s) */ -#define PURPLE_DESKTOP_ITEM_PATTERNS "Patterns" /* regexp(s) */ -#define PURPLE_DESKTOP_ITEM_DEFAULT_APP "DefaultApp" /* string */ -#define PURPLE_DESKTOP_ITEM_DEV "Dev" /* string */ -#define PURPLE_DESKTOP_ITEM_FS_TYPE "FSType" /* string */ -#define PURPLE_DESKTOP_ITEM_MOUNT_POINT "MountPoint" /* string */ -#define PURPLE_DESKTOP_ITEM_READ_ONLY "ReadOnly" /* boolean */ -#define PURPLE_DESKTOP_ITEM_UNMOUNT_ICON "UnmountIcon" /* string */ -#define PURPLE_DESKTOP_ITEM_SORT_ORDER "SortOrder" /* strings */ -#define PURPLE_DESKTOP_ITEM_URL "URL" /* string */ -#define PURPLE_DESKTOP_ITEM_DOC_PATH "X-GNOME-DocPath" /* string */ - -/** - * This function loads 'filename' and turns it into a PurpleDesktopItem. - * - * @param filename The filename or directory path to load the PurpleDesktopItem from - * - * @return The newly loaded item, or NULL on error. - */ -PurpleDesktopItem *purple_desktop_item_new_from_file (const char *filename); - -/** - * Gets the type attribute (the 'Type' field) of the item. This should - * usually be 'Application' for an application, but it can be 'Directory' - * for a directory description. There are other types available as well. - * The type usually indicates how the desktop item should be handeled and - * how the 'Exec' field should be handeled. - * - * @param item A desktop item - * - * @return The type of the specified 'item'. The returned memory - * remains owned by the PurpleDesktopItem and should not be freed. - */ -PurpleDesktopItemType purple_desktop_item_get_entry_type (const PurpleDesktopItem *item); - -/** - * Gets the value of an attribute of the item, as a string. - * - * @param item A desktop item - * @param attr The attribute to look for - * - * @return The value of the specified item attribute. - */ -const char *purple_desktop_item_get_string (const PurpleDesktopItem *item, - const char *attr); - -/** - * Creates a copy of a PurpleDesktopItem. The new copy has a refcount of 1. - * Note: Section stack is NOT copied. - * - * @param item The item to be copied - * - * @return The new copy - */ -PurpleDesktopItem *purple_desktop_item_copy (const PurpleDesktopItem *item); - -/** - * Decreases the reference count of the specified item, and destroys - * the item if there are no more references left. - * - * @param item A desktop item - */ -void purple_desktop_item_unref (PurpleDesktopItem *item); - -G_END_DECLS - -#endif /* _PURPLE_DESKTOP_ITEM_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/directconn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/directconn.h deleted file mode 100644 index 41a05d2..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/directconn.h +++ /dev/null @@ -1,200 +0,0 @@ -/** - * @file directconn.h MSN direct connection functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_DIRECTCONN_H -#define MSN_DIRECTCONN_H - -typedef struct _MsnDirectConn MsnDirectConn; - -#include "network.h" -#include "proxy.h" -#include "circbuffer.h" - -#include "slp.h" -#include "slplink.h" -#include "slpmsg.h" -#include "slpmsg_part.h" -#include "p2p.h" - -#define MSN_DCCONN_MAX_SIZE 1352 - -typedef enum -{ - DC_STATE_CLOSED, /*< No socket opened yet */ - DC_STATE_FOO, /*< Waiting for FOO message */ - DC_STATE_HANDSHAKE, /*< Waiting for handshake message */ - DC_STATE_HANDSHAKE_REPLY, /*< Waiting for handshake reply message */ - DC_STATE_ESTABLISHED /*< Handshake complete */ -} MsnDirectConnState; - -typedef enum -{ - DC_PROCESS_OK = 0, - DC_PROCESS_ERROR, - DC_PROCESS_FALLBACK, - DC_PROCESS_CLOSE - -} MsnDirectConnProcessResult; - -typedef enum -{ - DC_NONCE_UNKNOWN, /**< Invalid scheme */ - DC_NONCE_PLAIN, /**< No hashing */ - DC_NONCE_SHA1 /**< First 16 bytes of SHA1 of nonce */ - -} MsnDirectConnNonceType; - -typedef struct _MsnDirectConnPacket MsnDirectConnPacket; - -struct _MsnDirectConnPacket { - guint32 length; - guchar *data; - - void (*sent_cb)(struct _MsnDirectConnPacket*); - MsnSlpMessagePart *part; -}; - -struct _MsnDirectConn -{ - MsnDirectConnState state; /**< Direct connection status */ - MsnSlpLink *slplink; /**< The slplink using this direct connection */ - MsnSlpCall *slpcall; /**< The slpcall which initiated the direct connection */ - char *msg_body; /**< The body of message sent by send_connection_info_msg_cb */ - MsnSlpMessage *prev_ack; /**< The saved SLP ACK message */ - - MsnDirectConnNonceType nonce_type; /**< The type of nonce hashing */ - guchar nonce[16]; /**< The nonce used for handshake */ - gchar nonce_hash[37]; /**< The hash of nonce */ - gchar remote_nonce[37]; /**< The remote side's nonce */ - - PurpleNetworkListenData *listen_data; /**< The pending socket creation request */ - PurpleProxyConnectData *connect_data; /**< The pending connection attempt */ - int listenfd; /**< The socket we're listening for incoming connections */ - guint listenfd_handle; /**< The timeout handle for incoming connection */ - guint connect_timeout_handle; /**< The timeout handle for outgoing connection */ - - int fd; /**< The direct connection socket */ - guint recv_handle; /**< The incoming data callback handle */ - guint send_handle; /**< The outgoing data callback handle */ - - gchar *in_buffer; /**< The receive buffer */ - int in_size; /**< The receive buffer size */ - int in_pos; /**< The first free position in receive buffer */ - GQueue *out_queue; /**< The outgoing packet queue */ - int msg_pos; /**< The position of next byte to be sent in the actual packet */ - - /** The callback used for sending information to the peer about the opened socket */ - void (*send_connection_info_msg_cb)(MsnDirectConn *); - - gchar *ext_ip; /**< Our external IP address */ - int ext_port; /**< Our external port */ - - guint timeout_handle; - gboolean progress; - - /*int num_calls;*/ /**< The number of slpcalls using this direct connection */ -}; - -/* Outgoing attempt */ -#define DC_OUTGOING_TIMEOUT (5) -/* Time for internal + external connection attempts */ -#define DC_INCOMING_TIMEOUT (DC_OUTGOING_TIMEOUT * 3) -/* Timeout for lack of activity */ -#define DC_TIMEOUT (60) - -/* - * Queues an MSN message to be sent via direct connection. - */ -void -msn_dc_enqueue_part(MsnDirectConn *dc, MsnSlpMessagePart *part); - -/* - * Creates, initializes, and returns a new MsnDirectConn structure. - */ -MsnDirectConn * -msn_dc_new(MsnSlpCall *slpcall); - -/* - * Destroys an MsnDirectConn structure. Frees every buffer allocated earlier - * restores saved callbacks, etc. - */ -void -msn_dc_destroy(MsnDirectConn *dc); - -/* - * Fallback to switchboard connection. Used when neither side is able to - * create a listening socket. - */ -void -msn_dc_fallback_to_sb(MsnDirectConn *dc); - -/* - * Increases the slpcall counter in DC. The direct connection remains open - * until all slpcalls using it are destroyed. - */ -void -msn_dc_ref(MsnDirectConn *dc); - -/* - * Decrease the slpcall counter in DC. The direct connection remains open - * until all slpcalls using it are destroyed. - */ -void -msn_dc_unref(MsnDirectConn *dc); - -/* - * Sends a direct connect INVITE message on the associated slplink - * with the corresponding connection type and information. - */ -void -msn_dc_send_invite(MsnDirectConn *dc); - -/* - * Sends a direct connect OK message as a response to an INVITE received earliaer - * on the corresponding slplink. - */ -void -msn_dc_send_ok(MsnDirectConn *dc); - -/* - * This callback will be called when we're successfully connected to - * the remote host. - */ -void -msn_dc_connected_to_peer_cb(gpointer data, gint fd, const gchar *error_msg); - -/* - * This callback will be called when we're unable to connect to - * the remote host in DC_CONNECT_TIMEOUT seconds. - */ -gboolean -msn_dc_outgoing_connection_timeout_cb(gpointer data); - -/* - * This callback will be called when the listening socket is successfully - * created and its parameters (IP/port) are available. - */ -void -msn_dc_listen_socket_created_cb(int listenfd, gpointer data); - -#endif /* MSN_DIRECTCONN_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnsquery.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnsquery.h deleted file mode 100644 index dde1998..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnsquery.h +++ /dev/null @@ -1,180 +0,0 @@ -/** - * @file dnsquery.h DNS query API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_DNSQUERY_H_ -#define _PURPLE_DNSQUERY_H_ - -#include -#include "eventloop.h" -#include "account.h" - -/** - * An opaque structure representing a DNS query. The hostname and port - * associated with the query can be retrieved using - * purple_dnsquery_get_host() and purple_dnsquery_get_port(). - */ -typedef struct _PurpleDnsQueryData PurpleDnsQueryData; - -/** - * The "hosts" parameter is a linked list containing pairs of - * one size_t addrlen and one struct sockaddr *addr. It should - * be free'd by the callback function. - */ -typedef void (*PurpleDnsQueryConnectFunction)(GSList *hosts, gpointer data, const char *error_message); - -/** - * Callbacks used by the UI if it handles resolving DNS - */ -typedef void (*PurpleDnsQueryResolvedCallback) (PurpleDnsQueryData *query_data, GSList *hosts); -typedef void (*PurpleDnsQueryFailedCallback) (PurpleDnsQueryData *query_data, const gchar *error_message); - -/** - * DNS Request UI operations; UIs should implement this if they want to do DNS - * lookups themselves, rather than relying on the core. - * - * @see @ref ui-ops - */ -typedef struct -{ - /** If implemented, return TRUE if the UI takes responsibility for DNS - * queries. When returning FALSE, the standard implementation is used. */ - gboolean (*resolve_host)(PurpleDnsQueryData *query_data, - PurpleDnsQueryResolvedCallback resolved_cb, - PurpleDnsQueryFailedCallback failed_cb); - - /** Called just before @a query_data is freed; this should cancel any - * further use of @a query_data the UI would make. Unneeded if - * #resolve_host is not implemented. - */ - void (*destroy)(PurpleDnsQueryData *query_data); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleDnsQueryUiOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name DNS query API */ -/**************************************************************************/ -/*@{*/ - -/** - * Perform an asynchronous DNS query. - * - * @param account the account that the query is being done for (or NULL) - * @param hostname The hostname to resolve. - * @param port A port number which is stored in the struct sockaddr. - * @param callback The callback function to call after resolving. - * @param data Extra data to pass to the callback function. - * - * @return NULL if there was an error, otherwise return a reference to - * a data structure that can be used to cancel the pending - * DNS query, if needed. - * - * @since 2.8.0 - */ -PurpleDnsQueryData *purple_dnsquery_a_account(PurpleAccount *account, const char *hostname, int port, PurpleDnsQueryConnectFunction callback, gpointer data); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_DNSQUERY_C_) -/** - * Perform an asynchronous DNS query. - * - * @param hostname The hostname to resolve. - * @param port A port number which is stored in the struct sockaddr. - * @param callback The callback function to call after resolving. - * @param data Extra data to pass to the callback function. - * - * @return NULL if there was an error, otherwise return a reference to - * a data structure that can be used to cancel the pending - * DNS query, if needed. - * - * @deprecated Use purple_dnsquery_a_account instead - */ -PurpleDnsQueryData *purple_dnsquery_a(const char *hostname, int port, PurpleDnsQueryConnectFunction callback, gpointer data); -#endif - -/** - * Cancel a DNS query and destroy the associated data structure. - * - * @param query_data The DNS query to cancel. This data structure - * is freed by this function. - */ -void purple_dnsquery_destroy(PurpleDnsQueryData *query_data); - -/** - * Sets the UI operations structure to be used when doing a DNS - * resolve. The UI operations need only be set if the UI wants to - * handle the resolve itself; otherwise, leave it as NULL. - * - * @param ops The UI operations structure. - */ -void purple_dnsquery_set_ui_ops(PurpleDnsQueryUiOps *ops); - -/** - * Returns the UI operations structure to be used when doing a DNS - * resolve. - * - * @return The UI operations structure. - */ -PurpleDnsQueryUiOps *purple_dnsquery_get_ui_ops(void); - -/** - * Get the host associated with a PurpleDnsQueryData - * - * @param query_data The DNS query - * @return The host. - */ -char *purple_dnsquery_get_host(PurpleDnsQueryData *query_data); - -/** - * Get the port associated with a PurpleDnsQueryData - * - * @param query_data The DNS query - * @return The port. - */ -unsigned short purple_dnsquery_get_port(PurpleDnsQueryData *query_data); - -/** - * Initializes the DNS query subsystem. - */ -void purple_dnsquery_init(void); - -/** - * Uninitializes the DNS query subsystem. - */ -void purple_dnsquery_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_DNSQUERY_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnssrv.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnssrv.h deleted file mode 100644 index 7435c10..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/dnssrv.h +++ /dev/null @@ -1,242 +0,0 @@ -/** - * @file dnssrv.h - */ - -/* purple - * - * Copyright (C) 2005, Thomas Butter - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_DNSSRV_H -#define _PURPLE_DNSSRV_H - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct _PurpleSrvTxtQueryData PurpleSrvTxtQueryData; -typedef struct _PurpleSrvResponse PurpleSrvResponse; -typedef struct _PurpleTxtResponse PurpleTxtResponse; - -/* For compatibility, should be removed for 3.0.0 - */ -typedef struct _PurpleSrvTxtQueryData PurpleSrvQueryData; - -#include - -enum PurpleDnsType { - PurpleDnsTypeTxt = 16, - PurpleDnsTypeSrv = 33 -}; - -struct _PurpleSrvResponse { - char hostname[256]; - int port; - int weight; - int pref; -}; - -struct _PurpleTxtResponse { - char *content; -}; - -typedef void (*PurpleSrvTxtQueryResolvedCallback) (PurpleSrvTxtQueryData *query_data, GList *records); -typedef void (*PurpleSrvTxtQueryFailedCallback) (PurpleSrvTxtQueryData *query_data, const gchar *error_message); - -/** - * SRV Request UI operations; UIs should implement this if they want to do SRV - * lookups themselves, rather than relying on the core. - * - * @see @ref ui-ops - */ -typedef struct -{ - /** If implemented, return TRUE if the UI takes responsibility for SRV - * queries. When returning FALSE, the standard implementation is used. - * These callbacks MUST be called asynchronously. */ - gboolean (*resolve)(PurpleSrvTxtQueryData *query_data, - PurpleSrvTxtQueryResolvedCallback resolved_cb, - PurpleSrvTxtQueryFailedCallback failed_cb); - - /** Called just before @a query_data is freed; this should cancel any - * further use of @a query_data the UI would make. Unneeded if - * #resolve_host is not implemented. - */ - void (*destroy)(PurpleSrvTxtQueryData *query_data); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleSrvTxtQueryUiOps; - -/** - * @param resp An array of PurpleSrvResponse of size results. The array - * is sorted based on the order described in the DNS SRV RFC. - * Users of this API should try each record in resp in order, - * starting at the beginning. - */ -typedef void (*PurpleSrvCallback)(PurpleSrvResponse *resp, int results, gpointer data); - -/** - * Callback that returns the data retrieved from a DNS TXT lookup. - * - * @param responses A GList of PurpleTxtResponse objects. - * @param data The extra data passed to purple_txt_resolve. - */ -typedef void (*PurpleTxtCallback)(GList *responses, gpointer data); - -/** - * Queries an SRV record. - * - * @param account the account that the query is being done for (or NULL) - * @param protocol Name of the protocol (e.g. "sip") - * @param transport Name of the transport ("tcp" or "udp") - * @param domain Domain name to query (e.g. "blubb.com") - * @param cb A callback which will be called with the results - * @param extradata Extra data to be passed to the callback - * - * @since 2.8.0 - */ -PurpleSrvTxtQueryData *purple_srv_resolve_account(PurpleAccount *account, const char *protocol, const char *transport, const char *domain, PurpleSrvCallback cb, gpointer extradata); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_DNSSRV_C_) -/** - * Queries an SRV record. - * - * @param protocol Name of the protocol (e.g. "sip") - * @param transport Name of the transport ("tcp" or "udp") - * @param domain Domain name to query (e.g. "blubb.com") - * @param cb A callback which will be called with the results - * @param extradata Extra data to be passed to the callback - * - * @deprecated Use purple_srv_resolve_account instead - */ -PurpleSrvTxtQueryData *purple_srv_resolve(const char *protocol, const char *transport, const char *domain, PurpleSrvCallback cb, gpointer extradata); -#endif - -/** - * Cancel an SRV or DNS query. - * - * @param query_data The request to cancel. - * - * @deprecated Use purple_srv_txt_query_destroy instead - */ -void purple_srv_cancel(PurpleSrvTxtQueryData *query_data); - -/** - * Queries an TXT record. - * - * @param account the account that the query is being done for (or NULL) - * @param owner Name of the protocol (e.g. "_xmppconnect") - * @param domain Domain name to query (e.g. "blubb.com") - * @param cb A callback which will be called with the results - * @param extradata Extra data to be passed to the callback - * - * @since 2.8.0 - */ -PurpleSrvTxtQueryData *purple_txt_resolve_account(PurpleAccount *account, const char *owner, const char *domain, PurpleTxtCallback cb, gpointer extradata); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_DNSSRV_C_) -/** - * Queries an TXT record. - * - * @param owner Name of the protocol (e.g. "_xmppconnect") - * @param domain Domain name to query (e.g. "blubb.com") - * @param cb A callback which will be called with the results - * @param extradata Extra data to be passed to the callback - * - * @deprecated Use purple_txt_resolve_account instead - * - * @since 2.6.0 - */ -PurpleSrvTxtQueryData *purple_txt_resolve(const char *owner, const char *domain, PurpleTxtCallback cb, gpointer extradata); -#endif - -/** - * Cancel an TXT DNS query. - * - * @param query_data The request to cancel. - * @since 2.6.0 - * - * @deprecated Use purple_srv_txt_query_destroy instead - */ -void purple_txt_cancel(PurpleSrvTxtQueryData *query_data); - -/** - * Get the value of the current TXT record. - * - * @param response The TXT response record - * @returns The value of the current TXT record. - * @since 2.6.0 - */ -const gchar *purple_txt_response_get_content(PurpleTxtResponse *response); - -/** - * Destroy a TXT DNS response object. - * - * @param response The PurpleTxtResponse to destroy. - * @since 2.6.0 - */ -void purple_txt_response_destroy(PurpleTxtResponse *response); - -/** - * Cancel a SRV/TXT query and destroy the associated data structure. - * - * @param query_data The SRV/TXT query to cancel. This data structure - * is freed by this function. - */ -void purple_srv_txt_query_destroy(PurpleSrvTxtQueryData *query_data); - -/** - * Sets the UI operations structure to be used when doing a SRV/TXT - * resolve. The UI operations need only be set if the UI wants to - * handle the resolve itself; otherwise, leave it as NULL. - * - * @param ops The UI operations structure. - */ -void purple_srv_txt_query_set_ui_ops(PurpleSrvTxtQueryUiOps *ops); - -/** - * Returns the UI operations structure to be used when doing a SRV/TXT - * resolve. - * - * @return The UI operations structure. - */ -PurpleSrvTxtQueryUiOps *purple_srv_txt_query_get_ui_ops(void); - -/** - * Get the query from a PurpleDnsQueryData - * - * @param query_data The SRV/TXT query - * @return The query. - */ -char *purple_srv_txt_query_get_query(PurpleSrvTxtQueryData *query_data); - -/** - * Get the type from a PurpleDnsQueryData (TXT or SRV) - * - * @param query_data The query - * @return The query. - */ -int purple_srv_txt_query_get_type(PurpleSrvTxtQueryData *query_data); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_DNSSRV_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/error.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/error.h deleted file mode 100644 index 5194eaa..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/error.h +++ /dev/null @@ -1,57 +0,0 @@ -/** - * @file error.h Error functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_ERROR_H -#define MSN_ERROR_H - -#include "session.h" - -/** - * Returns the string representation of an error type. - * - * @param type The error type. - * @param debug Whether this should be treated as a debug log message or a user-visible error - * - * @return The string representation of the error type. - */ -const char *msn_error_get_text(unsigned int type, gboolean *debug); - -/** - * Handles an error. - * - * @param session The current session. - * @param type The error type. - */ -void msn_error_handle(MsnSession *session, unsigned int type); - -/** - * Show the sync issue in a dialog using request api - * - * @param sesion MsnSession associated to this error. - * @param passport The passport associated with the error. - * @param group_name The group in the buddy is suppoused to be - */ -void msn_error_sync_issue(MsnSession *session, const char *passport, - const char *group_name); - -#endif /* MSN_ERROR_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/eventloop.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/eventloop.h deleted file mode 100644 index ca95f6c..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/eventloop.h +++ /dev/null @@ -1,276 +0,0 @@ -/** - * @file eventloop.h Purple Event Loop API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_EVENTLOOP_H_ -#define _PURPLE_EVENTLOOP_H_ - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * An input condition. - */ -typedef enum -{ - PURPLE_INPUT_READ = 1 << 0, /**< A read condition. */ - PURPLE_INPUT_WRITE = 1 << 1 /**< A write condition. */ - -} PurpleInputCondition; - -/** The type of callbacks to handle events on file descriptors, as passed to - * purple_input_add(). The callback will receive the @c user_data passed to - * purple_input_add(), the file descriptor on which the event occurred, and the - * condition that was satisfied to cause the callback to be invoked. - */ -typedef void (*PurpleInputFunction)(gpointer, gint, PurpleInputCondition); - -/** @copydoc _PurpleEventLoopUiOps */ -typedef struct _PurpleEventLoopUiOps PurpleEventLoopUiOps; - -/** An abstraction of an application's mainloop; libpurple will use this to - * watch file descriptors and schedule timed callbacks. If your application - * uses the glib mainloop, there is an implementation of this struct in - * libpurple/example/nullclient.c which you can use verbatim. - */ -struct _PurpleEventLoopUiOps -{ - /** - * Should create a callback timer with an interval measured in - * milliseconds. The supplied @a function should be called every @a - * interval seconds until it returns @c FALSE, after which it should not - * be called again. - * - * Analogous to g_timeout_add in glib. - * - * Note: On Win32, this function may be called from a thread other than - * the libpurple thread. You should make sure to detect this situation - * and to only call "function" from the libpurple thread. - * - * @param interval the interval in milliseconds between calls - * to @a function. - * @param data arbitrary data to be passed to @a function at each - * call. - * @todo Who is responsible for freeing @a data? - * - * @return a handle for the timeout, which can be passed to - * #timeout_remove. - * - * @see purple_timeout_add - **/ - guint (*timeout_add)(guint interval, GSourceFunc function, gpointer data); - - /** - * Should remove a callback timer. Analogous to g_source_remove in glib. - * @param handle an identifier for a timeout, as returned by - * #timeout_add. - * @return @c TRUE if the timeout identified by @a handle was - * found and removed. - * @see purple_timeout_remove - */ - gboolean (*timeout_remove)(guint handle); - - /** - * Should add an input handler. Analogous to g_io_add_watch_full in - * glib. - * - * @param fd a file descriptor to watch for events - * @param cond a bitwise OR of events on @a fd for which @a func - * should be called. - * @param func a callback to fire whenever a relevant event on @a - * fd occurs. - * @param user_data arbitrary data to pass to @a fd. - * @return an identifier for this input handler, which can be - * passed to #input_remove. - * - * @see purple_input_add - */ - guint (*input_add)(int fd, PurpleInputCondition cond, - PurpleInputFunction func, gpointer user_data); - - /** - * Should remove an input handler. Analogous to g_source_remove in glib. - * @param handle an identifier, as returned by #input_add. - * @return @c TRUE if the input handler was found and removed. - * @see purple_input_remove - */ - gboolean (*input_remove)(guint handle); - - - /** - * If implemented, should get the current error status for an input. - * - * Implementation of this UI op is optional. Implement it if the UI's - * sockets or event loop needs to customize determination of socket - * error status. If unimplemented, getsockopt(2) will be used - * instead. - * - * @see purple_input_get_error - */ - int (*input_get_error)(int fd, int *error); - - /** - * If implemented, should create a callback timer with an interval - * measured in seconds. Analogous to g_timeout_add_seconds in glib. - * - * This allows UIs to group timers for better power efficiency. For - * this reason, @a interval may be rounded by up to a second. - * - * Implementation of this UI op is optional. If it's not implemented, - * calls to purple_timeout_add_seconds() will be serviced by - * #timeout_add. - * - * @see purple_timeout_add_seconds() - * @since 2.1.0 - **/ - guint (*timeout_add_seconds)(guint interval, GSourceFunc function, - gpointer data); - - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/**************************************************************************/ -/** @name Event Loop API */ -/**************************************************************************/ -/*@{*/ -/** - * Creates a callback timer. - * - * The timer will repeat until the function returns @c FALSE. The - * first call will be at the end of the first interval. - * - * If the timer is in a multiple of seconds, use purple_timeout_add_seconds() - * instead as it allows UIs to group timers for power efficiency. - * - * @param interval The time between calls of the function, in - * milliseconds. - * @param function The function to call. - * @param data data to pass to @a function. - * @return A handle to the timer which can be passed to - * purple_timeout_remove() to remove the timer. - */ -guint purple_timeout_add(guint interval, GSourceFunc function, gpointer data); - -/** - * Creates a callback timer. - * - * The timer will repeat until the function returns @c FALSE. The - * first call will be at the end of the first interval. - * - * This function allows UIs to group timers for better power efficiency. For - * this reason, @a interval may be rounded by up to a second. - * - * @param interval The time between calls of the function, in - * seconds. - * @param function The function to call. - * @param data data to pass to @a function. - * @return A handle to the timer which can be passed to - * purple_timeout_remove() to remove the timer. - * - * @since 2.1.0 - */ -guint purple_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data); - -/** - * Removes a timeout handler. - * - * @param handle The handle, as returned by purple_timeout_add(). - * - * @return @c TRUE if the handler was successfully removed. - */ -gboolean purple_timeout_remove(guint handle); - -/** - * Adds an input handler. - * - * @param fd The input file descriptor. - * @param cond The condition type. - * @param func The callback function for data. - * @param user_data User-specified data. - * - * @return The resulting handle (will be greater than 0). - * @see g_io_add_watch_full - */ -guint purple_input_add(int fd, PurpleInputCondition cond, - PurpleInputFunction func, gpointer user_data); - -/** - * Removes an input handler. - * - * @param handle The handle of the input handler. Note that this is the return - * value from purple_input_add(), not the file descriptor. - */ -gboolean purple_input_remove(guint handle); - -/** - * Get the current error status for an input. - * - * The return value and error follow getsockopt() with a level of SOL_SOCKET and an - * option name of SO_ERROR, and this is how the error is determined if the UI does not - * implement the input_get_error UI op. - * - * @param fd The input file descriptor. - * @param error A pointer to an @c int which on return will have the error, or - * @c 0 if no error. - * - * @return @c 0 if there is no error; @c -1 if there is an error, in which case - * @a errno will be set. - */ -int -purple_input_get_error(int fd, int *error); - - -/*@}*/ - - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ -/** - * Sets the UI operations structure to be used for accounts. - * - * @param ops The UI operations structure. - */ -void purple_eventloop_set_ui_ops(PurpleEventLoopUiOps *ops); - -/** - * Returns the UI operations structure used for accounts. - * - * @return The UI operations structure in use. - */ -PurpleEventLoopUiOps *purple_eventloop_get_ui_ops(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_EVENTLOOP_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ft.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ft.h deleted file mode 100644 index 3636cae..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ft.h +++ /dev/null @@ -1,785 +0,0 @@ -/** - * @file ft.h File Transfer API - * @ingroup core - * @see @ref xfer-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_FT_H_ -#define _PURPLE_FT_H_ - -/**************************************************************************/ -/** Data Structures */ -/**************************************************************************/ -typedef struct _PurpleXfer PurpleXfer; - -#include -#include - -#include "account.h" - -/** - * Types of file transfers. - */ -typedef enum -{ - PURPLE_XFER_UNKNOWN = 0, /**< Unknown file transfer type. */ - PURPLE_XFER_SEND, /**< File sending. */ - PURPLE_XFER_RECEIVE /**< File receiving. */ - -} PurpleXferType; - -/** - * The different states of the xfer. - */ -typedef enum -{ - PURPLE_XFER_STATUS_UNKNOWN = 0, /**< Unknown, the xfer may be null. */ - PURPLE_XFER_STATUS_NOT_STARTED, /**< It hasn't started yet. */ - PURPLE_XFER_STATUS_ACCEPTED, /**< Receive accepted, but destination file not selected yet */ - PURPLE_XFER_STATUS_STARTED, /**< purple_xfer_start has been called. */ - PURPLE_XFER_STATUS_DONE, /**< The xfer completed successfully. */ - PURPLE_XFER_STATUS_CANCEL_LOCAL, /**< The xfer was cancelled by us. */ - PURPLE_XFER_STATUS_CANCEL_REMOTE /**< The xfer was cancelled by the other end, or we couldn't connect. */ -} PurpleXferStatusType; - -/** - * File transfer UI operations. - * - * Any UI representing a file transfer must assign a filled-out - * PurpleXferUiOps structure to the purple_xfer. - */ -typedef struct -{ - void (*new_xfer)(PurpleXfer *xfer); - void (*destroy)(PurpleXfer *xfer); - void (*add_xfer)(PurpleXfer *xfer); - void (*update_progress)(PurpleXfer *xfer, double percent); - void (*cancel_local)(PurpleXfer *xfer); - void (*cancel_remote)(PurpleXfer *xfer); - - /** - * UI op to write data received from the prpl. The UI must deal with the - * entire buffer and return size, or it is treated as an error. - * - * @param xfer The file transfer structure - * @param buffer The buffer to write - * @param size The size of the buffer - * - * @return size if the write was successful, or a value between 0 and - * size on error. - * @since 2.6.0 - */ - gssize (*ui_write)(PurpleXfer *xfer, const guchar *buffer, gssize size); - - /** - * UI op to read data to send to the prpl for a file transfer. - * - * @param xfer The file transfer structure - * @param buffer A pointer to a buffer. The UI must allocate this buffer. - * libpurple will free the data. - * @param size The maximum amount of data to put in the buffer. - * - * @returns The amount of data in the buffer, 0 if nothing is available, - * and a negative value if an error occurred and the transfer - * should be cancelled (libpurple will cancel). - * @since 2.6.0 - */ - gssize (*ui_read)(PurpleXfer *xfer, guchar **buffer, gssize size); - - /** - * Op to notify the UI that not all the data read in was written. The UI - * should re-enqueue this data and return it the next time read is called. - * - * This MUST be implemented if read and write are implemented. - * - * @param xfer The file transfer structure - * @param buffer A pointer to the beginning of the unwritten data. - * @param size The amount of unwritten data. - * - * @since 2.6.0 - */ - void (*data_not_sent)(PurpleXfer *xfer, const guchar *buffer, gsize size); - - /** - * Op to create a thumbnail image for a file transfer - * - * @param xfer The file transfer structure - */ - void (*add_thumbnail)(PurpleXfer *xfer, const gchar *formats); -} PurpleXferUiOps; - -/** - * A core representation of a file transfer. - */ -struct _PurpleXfer -{ - guint ref; /**< The reference count. */ - PurpleXferType type; /**< The type of transfer. */ - - PurpleAccount *account; /**< The account. */ - - char *who; /**< The person on the other end of the - transfer. */ - - char *message; /**< A message sent with the request */ - char *filename; /**< The name sent over the network. */ - char *local_filename; /**< The name on the local hard drive. */ - size_t size; /**< The size of the file. */ - - FILE *dest_fp; /**< The destination file pointer. */ - - char *remote_ip; /**< The remote IP address. */ - int local_port; /**< The local port. */ - int remote_port; /**< The remote port. */ - - int fd; /**< The socket file descriptor. */ - int watcher; /**< Watcher. */ - - size_t bytes_sent; /**< The number of bytes sent. */ - size_t bytes_remaining; /**< The number of bytes remaining. */ - time_t start_time; /**< When the transfer of data began. */ - time_t end_time; /**< When the transfer of data ended. */ - - size_t current_buffer_size; /**< This gradually increases for fast - network connections. */ - - PurpleXferStatusType status; /**< File Transfer's status. */ - - /** I/O operations, which should be set by the prpl using - * purple_xfer_set_init_fnc() and friends. Setting #init is - * mandatory; all others are optional. - */ - struct - { - void (*init)(PurpleXfer *xfer); - void (*request_denied)(PurpleXfer *xfer); - void (*start)(PurpleXfer *xfer); - void (*end)(PurpleXfer *xfer); - void (*cancel_send)(PurpleXfer *xfer); - void (*cancel_recv)(PurpleXfer *xfer); - gssize (*read)(guchar **buffer, PurpleXfer *xfer); - gssize (*write)(const guchar *buffer, size_t size, PurpleXfer *xfer); - void (*ack)(PurpleXfer *xfer, const guchar *buffer, size_t size); - } ops; - - PurpleXferUiOps *ui_ops; /**< UI-specific operations. */ - void *ui_data; /**< UI-specific data. */ - - void *data; /**< prpl-specific data. */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name File Transfer API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new file transfer handle. - * This is called by prpls. - * The handle starts with a ref count of 1, and this reference - * is owned by the core. The prpl normally does not need to - * purple_xfer_ref or unref. - * - * @param account The account sending or receiving the file. - * @param type The type of file transfer. - * @param who The name of the remote user. - * - * @return A file transfer handle. - */ -PurpleXfer *purple_xfer_new(PurpleAccount *account, - PurpleXferType type, const char *who); - -/** - * Returns all xfers - * - * @return all current xfers with refs - */ -GList *purple_xfers_get_all(void); - -/** - * Increases the reference count on a PurpleXfer. - * Please call purple_xfer_unref later. - * - * @param xfer A file transfer handle. - */ -void purple_xfer_ref(PurpleXfer *xfer); - -/** - * Decreases the reference count on a PurpleXfer. - * If the reference reaches 0, purple_xfer_destroy (an internal function) - * will destroy the xfer. It calls the ui destroy cb first. - * Since the core keeps a ref on the xfer, only an erroneous call to - * this function will destroy the xfer while still in use. - * - * @param xfer A file transfer handle. - */ -void purple_xfer_unref(PurpleXfer *xfer); - -/** - * Requests confirmation for a file transfer from the user. If receiving - * a file which is known at this point, this requests user to accept and - * save the file. If the filename is unknown (not set) this only requests user - * to accept the file transfer. In this case protocol must call this function - * again once the filename is available. - * - * @param xfer The file transfer to request confirmation on. - */ -void purple_xfer_request(PurpleXfer *xfer); - -/** - * Called if the user accepts the file transfer request. - * - * @param xfer The file transfer. - * @param filename The filename. - */ -void purple_xfer_request_accepted(PurpleXfer *xfer, const char *filename); - -/** - * Called if the user rejects the file transfer request. - * - * @param xfer The file transfer. - */ -void purple_xfer_request_denied(PurpleXfer *xfer); - -/** - * Returns the type of file transfer. - * - * @param xfer The file transfer. - * - * @return The type of the file transfer. - */ -PurpleXferType purple_xfer_get_type(const PurpleXfer *xfer); - -/** - * Returns the account the file transfer is using. - * - * @param xfer The file transfer. - * - * @return The account. - */ -PurpleAccount *purple_xfer_get_account(const PurpleXfer *xfer); - -/** - * Returns the name of the remote user. - * - * @param xfer The file transfer. - * - * @return The name of the remote user. - * - * @since 2.1.0 - */ -const char *purple_xfer_get_remote_user(const PurpleXfer *xfer); - -/** - * Returns the status of the xfer. - * - * @param xfer The file transfer. - * - * @return The status. - */ -PurpleXferStatusType purple_xfer_get_status(const PurpleXfer *xfer); - -/** - * Returns true if the file transfer was cancelled. - * - * @param xfer The file transfer. - * - * @return Whether or not the transfer was cancelled. - * FIXME: This should be renamed using cancelled for 3.0.0. - */ -gboolean purple_xfer_is_canceled(const PurpleXfer *xfer); - -/** - * Returns the completed state for a file transfer. - * - * @param xfer The file transfer. - * - * @return The completed state. - */ -gboolean purple_xfer_is_completed(const PurpleXfer *xfer); - -/** - * Returns the name of the file being sent or received. - * - * @param xfer The file transfer. - * - * @return The filename. - */ -const char *purple_xfer_get_filename(const PurpleXfer *xfer); - -/** - * Returns the file's destination filename, - * - * @param xfer The file transfer. - * - * @return The destination filename. - */ -const char *purple_xfer_get_local_filename(const PurpleXfer *xfer); - -/** - * Returns the number of bytes sent (or received) so far. - * - * @param xfer The file transfer. - * - * @return The number of bytes sent. - */ -size_t purple_xfer_get_bytes_sent(const PurpleXfer *xfer); - -/** - * Returns the number of bytes remaining to send or receive. - * - * @param xfer The file transfer. - * - * @return The number of bytes remaining. - */ -size_t purple_xfer_get_bytes_remaining(const PurpleXfer *xfer); - -/** - * Returns the size of the file being sent or received. - * - * @param xfer The file transfer. - * - * @return The total size of the file. - */ -size_t purple_xfer_get_size(const PurpleXfer *xfer); - -/** - * Returns the current percentage of progress of the transfer. - * - * This is a number between 0 (0%) and 1 (100%). - * - * @param xfer The file transfer. - * - * @return The percentage complete. - */ -double purple_xfer_get_progress(const PurpleXfer *xfer); - -/** - * Returns the local port number in the file transfer. - * - * @param xfer The file transfer. - * - * @return The port number on this end. - */ -unsigned int purple_xfer_get_local_port(const PurpleXfer *xfer); - -/** - * Returns the remote IP address in the file transfer. - * - * @param xfer The file transfer. - * - * @return The IP address on the other end. - */ -const char *purple_xfer_get_remote_ip(const PurpleXfer *xfer); - -/** - * Returns the remote port number in the file transfer. - * - * @param xfer The file transfer. - * - * @return The port number on the other end. - */ -unsigned int purple_xfer_get_remote_port(const PurpleXfer *xfer); - -/** - * Returns the time the transfer of a file started. - * - * @param xfer The file transfer. - * - * @return The time when the transfer started. - * @since 2.4.0 - */ -time_t purple_xfer_get_start_time(const PurpleXfer *xfer); - -/** - * Returns the time the transfer of a file ended. - * - * @param xfer The file transfer. - * - * @return The time when the transfer ended. - * @since 2.4.0 - */ -time_t purple_xfer_get_end_time(const PurpleXfer *xfer); - -/** - * Sets the completed state for the file transfer. - * - * @param xfer The file transfer. - * @param completed The completed state. - */ -void purple_xfer_set_completed(PurpleXfer *xfer, gboolean completed); - -/** - * Sets the filename for the file transfer. - * - * @param xfer The file transfer. - * @param message The message. - */ -void purple_xfer_set_message(PurpleXfer *xfer, const char *message); - -/** - * Sets the filename for the file transfer. - * - * @param xfer The file transfer. - * @param filename The filename. - */ -void purple_xfer_set_filename(PurpleXfer *xfer, const char *filename); - -/** - * Sets the local filename for the file transfer. - * - * @param xfer The file transfer. - * @param filename The filename - */ -void purple_xfer_set_local_filename(PurpleXfer *xfer, const char *filename); - -/** - * Sets the size of the file in a file transfer. - * - * @param xfer The file transfer. - * @param size The size of the file. - */ -void purple_xfer_set_size(PurpleXfer *xfer, size_t size); - -/** - * Sets the current working position in the active file transfer. This - * can be used to jump backward in the file if the protocol detects - * that some bit of data needs to be resent or has been sent twice. - * - * It's used for pausing and resuming an oscar file transfer. - * - * @param xfer The file transfer. - * @param bytes_sent The new current position in the file. If we're - * sending a file then this is the byte that we will - * send. If we're receiving a file, this is the - * next byte that we expect to receive. - */ -void purple_xfer_set_bytes_sent(PurpleXfer *xfer, size_t bytes_sent); - -/** - * Returns the UI operations structure for a file transfer. - * - * @param xfer The file transfer. - * - * @return The UI operations structure. - */ -PurpleXferUiOps *purple_xfer_get_ui_ops(const PurpleXfer *xfer); - -/** - * Sets the read function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The read function. - */ -void purple_xfer_set_read_fnc(PurpleXfer *xfer, - gssize (*fnc)(guchar **, PurpleXfer *)); - -/** - * Sets the write function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The write function. - */ -void purple_xfer_set_write_fnc(PurpleXfer *xfer, - gssize (*fnc)(const guchar *, size_t, PurpleXfer *)); - -/** - * Sets the acknowledge function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The acknowledge function. - */ -void purple_xfer_set_ack_fnc(PurpleXfer *xfer, - void (*fnc)(PurpleXfer *, const guchar *, size_t)); - -/** - * Sets the function to be called if the request is denied. - * - * @param xfer The file transfer. - * @param fnc The request denied prpl callback. - */ -void purple_xfer_set_request_denied_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Sets the transfer initialization function for the file transfer. - * - * This function is required, and must call purple_xfer_start() with - * the necessary parameters. This will be called if the file transfer - * is accepted by the user. - * - * @param xfer The file transfer. - * @param fnc The transfer initialization function. - */ -void purple_xfer_set_init_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Sets the start transfer function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The start transfer function. - */ -void purple_xfer_set_start_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Sets the end transfer function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The end transfer function. - */ -void purple_xfer_set_end_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Sets the cancel send function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The cancel send function. - */ -void purple_xfer_set_cancel_send_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Sets the cancel receive function for the file transfer. - * - * @param xfer The file transfer. - * @param fnc The cancel receive function. - */ -void purple_xfer_set_cancel_recv_fnc(PurpleXfer *xfer, void (*fnc)(PurpleXfer *)); - -/** - * Reads in data from a file transfer stream. - * - * @param xfer The file transfer. - * @param buffer The buffer that will be created to contain the data. - * - * @return The number of bytes read, or -1. - */ -gssize purple_xfer_read(PurpleXfer *xfer, guchar **buffer); - -/** - * Writes data to a file transfer stream. - * - * @param xfer The file transfer. - * @param buffer The buffer to read the data from. - * @param size The number of bytes to write. - * - * @return The number of bytes written, or -1. - */ -gssize purple_xfer_write(PurpleXfer *xfer, const guchar *buffer, gsize size); - -/** - * Starts a file transfer. - * - * Either @a fd must be specified or @a ip and @a port on a - * file receive transfer. On send, @a fd must be specified, and - * @a ip and @a port are ignored. - * - * Prior to libpurple 2.6.0, passing '0' to @a fd was special-cased to - * allow the protocol plugin to facilitate the file transfer itself. As of - * 2.6.0, this is supported (for backward compatibility), but will be - * removed in libpurple 3.0.0. If a prpl detects that the running libpurple - * is running 2.6.0 or higher, it should use the invalid fd '-1'. - * - * @param xfer The file transfer. - * @param fd The file descriptor for the socket. - * @param ip The IP address to connect to. - * @param port The port to connect to. - */ -void purple_xfer_start(PurpleXfer *xfer, int fd, const char *ip, - unsigned int port); - -/** - * Ends a file transfer. - * - * @param xfer The file transfer. - */ -void purple_xfer_end(PurpleXfer *xfer); - -/** - * Adds a new file transfer to the list of file transfers. Call this only - * if you are not using purple_xfer_start. - * - * @param xfer The file transfer. - */ -void purple_xfer_add(PurpleXfer *xfer); - -/** - * Cancels a file transfer on the local end. - * - * @param xfer The file transfer. - */ -void purple_xfer_cancel_local(PurpleXfer *xfer); - -/** - * Cancels a file transfer from the remote end. - * - * @param xfer The file transfer. - */ -void purple_xfer_cancel_remote(PurpleXfer *xfer); - -/** - * Displays a file transfer-related error message. - * - * This is a wrapper around purple_notify_error(), which automatically - * specifies a title ("File transfer to user failed" or - * "File Transfer from user failed"). - * - * @param type The type of file transfer. - * @param account The account sending or receiving the file. - * @param who The user on the other end of the transfer. - * @param msg The message to display. - */ -void purple_xfer_error(PurpleXferType type, PurpleAccount *account, const char *who, const char *msg); - -/** - * Updates file transfer progress. - * - * @param xfer The file transfer. - */ -void purple_xfer_update_progress(PurpleXfer *xfer); - -/** - * Displays a file transfer-related message in the conversation window - * - * This is a wrapper around purple_conversation_write - * - * @param xfer The file transfer to which this message relates. - * @param message The message to display. - * @param is_error Is this an error message?. - */ -void purple_xfer_conversation_write(PurpleXfer *xfer, char *message, gboolean is_error); - -/** - * Allows the UI to signal it's ready to send/receive data (depending on - * the direction of the file transfer. Used when the UI is providing - * read/write/data_not_sent UI ops. - * - * @param xfer The file transfer which is ready. - * - * @since 2.6.0 - */ -void purple_xfer_ui_ready(PurpleXfer *xfer); - -/** - * Allows the prpl to signal it's ready to send/receive data (depending on - * the direction of the file transfer. Used when the prpl provides read/write - * ops and cannot/does not provide a raw fd to the core. - * - * @param xfer The file transfer which is ready. - * - * @since 2.6.0 - */ -void purple_xfer_prpl_ready(PurpleXfer *xfer); - -/** - * Gets the thumbnail data for a transfer - * - * @param xfer The file transfer to get the thumbnail for - * @param len If not @c NULL, the length of the thumbnail data returned - * will be set in the location pointed to by this. - * @return The thumbnail data, or NULL if there is no thumbnail - * @since 2.7.0 - */ -gconstpointer purple_xfer_get_thumbnail(const PurpleXfer *xfer, gsize *len); - -/** - * Gets the mimetype of the thumbnail preview for a transfer - * - * @param xfer The file transfer to get the mimetype for - * @return The mimetype of the thumbnail, or @c NULL if not thumbnail is set - * @since 2.7.0 - */ -const gchar *purple_xfer_get_thumbnail_mimetype(const PurpleXfer *xfer); - - -/** - * Sets the thumbnail data for a transfer - * - * @param xfer The file transfer to set the data for - * @param thumbnail A pointer to the thumbnail data, this will be copied - * @param size The size in bytes of the passed in thumbnail data - * @param mimetype The mimetype of the generated thumbnail - * @since 2.7.0 - */ -void purple_xfer_set_thumbnail(PurpleXfer *xfer, gconstpointer thumbnail, - gsize size, const gchar *mimetype); - -/** - * Prepare a thumbnail for a transfer (if the UI supports it) - * will be no-op in case the UI doesn't implement thumbnail creation - * - * @param xfer The file transfer to create a thumbnail for - * @param formats A comma-separated list of mimetypes for image formats - * the protocols can use for thumbnails. - * @since 2.7.0 - */ -void purple_xfer_prepare_thumbnail(PurpleXfer *xfer, const gchar *formats); - - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the handle to the file transfer subsystem - * - * @return The handle - */ -void *purple_xfers_get_handle(void); - -/** - * Initializes the file transfer subsystem - */ -void purple_xfers_init(void); - -/** - * Uninitializes the file transfer subsystem - */ -void purple_xfers_uninit(void); - -/** - * Sets the UI operations structure to be used in all purple file transfers. - * - * @param ops The UI operations structure. - */ -void purple_xfers_set_ui_ops(PurpleXferUiOps *ops); - -/** - * Returns the UI operations structure to be used in all purple file transfers. - * - * @return The UI operations structure. - */ -PurpleXferUiOps *purple_xfers_get_ui_ops(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_FT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gaim-compat.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gaim-compat.h deleted file mode 100644 index 848b9c4..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gaim-compat.h +++ /dev/null @@ -1,2317 +0,0 @@ -/** - * @file gaim-compat.h Gaim Compat macros - * @ingroup core - */ - -/* pidgin - * - * Pidgin is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _GAIM_COMPAT_H_ -#define _GAIM_COMPAT_H_ - -#include - -/* from account.h */ -#define GaimAccountUiOps PurpleAccountUiOps -#define GaimAccount PurpleAccount - -#define GaimFilterAccountFunc PurpleFilterAccountFunc -#define GaimAccountRequestAuthorizationCb PurpleAccountRequestAuthorizationCb - -#define gaim_account_new purple_account_new -#define gaim_account_destroy purple_account_destroy -#define gaim_account_connect purple_account_connect -#define gaim_account_register purple_account_register -#define gaim_account_disconnect purple_account_disconnect -#define gaim_account_notify_added purple_account_notify_added -#define gaim_account_request_add purple_account_request_add -#define gaim_account_request_close purple_account_request_close - -#define gaim_account_request_authorization purple_account_request_authorization -#define gaim_account_request_change_password purple_account_request_change_password -#define gaim_account_request_change_user_info purple_account_request_change_user_info - -#define gaim_account_set_username purple_account_set_username -#define gaim_account_set_password purple_account_set_password -#define gaim_account_set_alias purple_account_set_alias -#define gaim_account_set_user_info purple_account_set_user_info -#define gaim_account_set_buddy_icon_path purple_account_set_buddy_icon_path -#define gaim_account_set_protocol_id purple_account_set_protocol_id -#define gaim_account_set_connection purple_account_set_connection -#define gaim_account_set_remember_password purple_account_set_remember_password -#define gaim_account_set_check_mail purple_account_set_check_mail -#define gaim_account_set_enabled purple_account_set_enabled -#define gaim_account_set_proxy_info purple_account_set_proxy_info -#define gaim_account_set_status_types purple_account_set_status_types -#define gaim_account_set_status purple_account_set_status -#define gaim_account_set_status_list purple_account_set_status_list - -#define gaim_account_clear_settings purple_account_clear_settings - -#define gaim_account_set_int purple_account_set_int -#define gaim_account_set_string purple_account_set_string -#define gaim_account_set_bool purple_account_set_bool - -#define gaim_account_set_ui_int purple_account_set_ui_int -#define gaim_account_set_ui_string purple_account_set_ui_string -#define gaim_account_set_ui_bool purple_account_set_ui_bool - -#define gaim_account_is_connected purple_account_is_connected -#define gaim_account_is_connecting purple_account_is_connecting -#define gaim_account_is_disconnected purple_account_is_disconnected - -#define gaim_account_get_username purple_account_get_username -#define gaim_account_get_password purple_account_get_password -#define gaim_account_get_alias purple_account_get_alias -#define gaim_account_get_user_info purple_account_get_user_info -#define gaim_account_get_buddy_icon_path purple_account_get_buddy_icon_path -#define gaim_account_get_protocol_id purple_account_get_protocol_id -#define gaim_account_get_protocol_name purple_account_get_protocol_name -#define gaim_account_get_connection purple_account_get_connection -#define gaim_account_get_remember_password purple_account_get_remember_password -#define gaim_account_get_check_mail purple_account_get_check_mail -#define gaim_account_get_enabled purple_account_get_enabled -#define gaim_account_get_proxy_info purple_account_get_proxy_info -#define gaim_account_get_active_status purple_account_get_active_status -#define gaim_account_get_status purple_account_get_status -#define gaim_account_get_status_type purple_account_get_status_type -#define gaim_account_get_status_type_with_primitive \ - purple_account_get_status_type_with_primitive - -#define gaim_account_get_presence purple_account_get_presence -#define gaim_account_is_status_active purple_account_is_status_active -#define gaim_account_get_status_types purple_account_get_status_types - -#define gaim_account_get_int purple_account_get_int -#define gaim_account_get_string purple_account_get_string -#define gaim_account_get_bool purple_account_get_bool - -#define gaim_account_get_ui_int purple_account_get_ui_int -#define gaim_account_get_ui_string purple_account_get_ui_string -#define gaim_account_get_ui_bool purple_account_get_ui_bool - - -#define gaim_account_get_log purple_account_get_log -#define gaim_account_destroy_log purple_account_destroy_log - -#define gaim_account_add_buddy purple_account_add_buddy -#define gaim_account_add_buddies purple_account_add_buddies -#define gaim_account_remove_buddy purple_account_remove_buddy -#define gaim_account_remove_buddies purple_account_remove_buddies - -#define gaim_account_remove_group purple_account_remove_group - -#define gaim_account_change_password purple_account_change_password - -#define gaim_account_supports_offline_message purple_account_supports_offline_message - -#define gaim_accounts_add purple_accounts_add -#define gaim_accounts_remove purple_accounts_remove -#define gaim_accounts_delete purple_accounts_delete -#define gaim_accounts_reorder purple_accounts_reorder - -#define gaim_accounts_get_all purple_accounts_get_all -#define gaim_accounts_get_all_active purple_accounts_get_all_active - -#define gaim_accounts_find purple_accounts_find - -#define gaim_accounts_restore_current_statuses purple_accounts_restore_current_statuses - -#define gaim_accounts_set_ui_ops purple_accounts_set_ui_ops -#define gaim_accounts_get_ui_ops purple_accounts_get_ui_ops - -#define gaim_accounts_get_handle purple_accounts_get_handle - -#define gaim_accounts_init purple_accounts_init -#define gaim_accounts_uninit purple_accounts_uninit - -/* from accountopt.h */ - -#define GaimAccountOption PurpleAccountOption -#define GaimAccountUserSplit PurpleAccountUserSplit - -#define gaim_account_option_new purple_account_option_new -#define gaim_account_option_bool_new purple_account_option_bool_new -#define gaim_account_option_int_new purple_account_option_int_new -#define gaim_account_option_string_new purple_account_option_string_new -#define gaim_account_option_list_new purple_account_option_list_new - -#define gaim_account_option_destroy purple_account_option_destroy - -#define gaim_account_option_set_default_bool purple_account_option_set_default_bool -#define gaim_account_option_set_default_int purple_account_option_set_default_int -#define gaim_account_option_set_default_string purple_account_option_set_default_string - -#define gaim_account_option_set_masked purple_account_option_set_masked - -#define gaim_account_option_set_list purple_account_option_set_list - -#define gaim_account_option_add_list_item purple_account_option_add_list_item - -#define gaim_account_option_get_type purple_account_option_get_type -#define gaim_account_option_get_text purple_account_option_get_text -#define gaim_account_option_get_setting purple_account_option_get_setting - -#define gaim_account_option_get_default_bool purple_account_option_get_default_bool -#define gaim_account_option_get_default_int purple_account_option_get_default_int -#define gaim_account_option_get_default_string purple_account_option_get_default_string -#define gaim_account_option_get_default_list_value purple_account_option_get_default_list_value - -#define gaim_account_option_get_masked purple_account_option_get_masked -#define gaim_account_option_get_list purple_account_option_get_list - -#define gaim_account_user_split_new purple_account_user_split_new -#define gaim_account_user_split_destroy purple_account_user_split_destroy - -#define gaim_account_user_split_get_text purple_account_user_split_get_text -#define gaim_account_user_split_get_default_value purple_account_user_split_get_default_value -#define gaim_account_user_split_get_separator purple_account_user_split_get_separator - -/* from blist.h */ - -#define GaimBuddyList PurpleBuddyList -#define GaimBlistUiOps PurpleBlistUiOps -#define GaimBlistNode PurpleBlistNode - -#define GaimChat PurpleChat -#define GaimGroup PurpleGroup -#define GaimContact PurpleContact -#define GaimBuddy PurpleBuddy - -#define GAIM_BLIST_GROUP_NODE PURPLE_BLIST_GROUP_NODE -#define GAIM_BLIST_CONTACT_NODE PURPLE_BLIST_CONTACT_NODE -#define GAIM_BLIST_BUDDY_NODE PURPLE_BLIST_BUDDY_NODE -#define GAIM_BLIST_CHAT_NODE PURPLE_BLIST_CHAT_NODE -#define GAIM_BLIST_OTHER_NODE PURPLE_BLIST_OTHER_NODE -#define GaimBlistNodeType PurpleBlistNodeType - -#define GAIM_BLIST_NODE_IS_CHAT PURPLE_BLIST_NODE_IS_CHAT -#define GAIM_BLIST_NODE_IS_BUDDY PURPLE_BLIST_NODE_IS_BUDDY -#define GAIM_BLIST_NODE_IS_CONTACT PURPLE_BLIST_NODE_IS_CONTACT -#define GAIM_BLIST_NODE_IS_GROUP PURPLE_BLIST_NODE_IS_GROUP - -#define GAIM_BUDDY_IS_ONLINE PURPLE_BUDDY_IS_ONLINE - -#define GAIM_BLIST_NODE_FLAG_NO_SAVE PURPLE_BLIST_NODE_FLAG_NO_SAVE -#define GaimBlistNodeFlags PurpleBlistNodeFlags - -#define GAIM_BLIST_NODE_HAS_FLAG PURPLE_BLIST_NODE_HAS_FLAG -#define GAIM_BLIST_NODE_SHOULD_SAVE PURPLE_BLIST_NODE_SHOULD_SAVE - -#define GAIM_BLIST_NODE_NAME PURPLE_BLIST_NODE_NAME - - -#define gaim_blist_new purple_blist_new -#define gaim_set_blist purple_set_blist -#define gaim_get_blist purple_get_blist - -#define gaim_blist_get_root purple_blist_get_root -#define gaim_blist_node_next purple_blist_node_next - -#define gaim_blist_show purple_blist_show - -#define gaim_blist_destroy purple_blist_destroy - -#define gaim_blist_set_visible purple_blist_set_visible - -#define gaim_blist_update_buddy_status purple_blist_update_buddy_status -#define gaim_blist_update_buddy_icon purple_blist_update_buddy_icon - - -#define gaim_blist_alias_contact purple_blist_alias_contact -#define gaim_blist_alias_buddy purple_blist_alias_buddy -#define gaim_blist_server_alias_buddy purple_blist_server_alias_buddy -#define gaim_blist_alias_chat purple_blist_alias_chat - -#define gaim_blist_rename_buddy purple_blist_rename_buddy -#define gaim_blist_rename_group purple_blist_rename_group - -#define gaim_chat_new purple_chat_new -#define gaim_blist_add_chat purple_blist_add_chat - -#define gaim_buddy_new purple_buddy_new -#define gaim_buddy_set_icon purple_buddy_set_icon -#define gaim_buddy_get_account purple_buddy_get_account -#define gaim_buddy_get_name purple_buddy_get_name -#define gaim_buddy_get_icon purple_buddy_get_icon -#define gaim_buddy_get_contact purple_buddy_get_contact -#define gaim_buddy_get_presence purple_buddy_get_presence - -#define gaim_blist_add_buddy purple_blist_add_buddy - -#define gaim_group_new purple_group_new - -#define gaim_blist_add_group purple_blist_add_group - -#define gaim_contact_new purple_contact_new - -#define gaim_blist_add_contact purple_blist_add_contact -#define gaim_blist_merge_contact purple_blist_merge_contact - -#define gaim_contact_get_priority_buddy purple_contact_get_priority_buddy -#define gaim_contact_set_alias purple_contact_set_alias -#define gaim_contact_get_alias purple_contact_get_alias -#define gaim_contact_on_account purple_contact_on_account - -#define gaim_contact_invalidate_priority_buddy purple_contact_invalidate_priority_buddy - -#define gaim_blist_remove_buddy purple_blist_remove_buddy -#define gaim_blist_remove_contact purple_blist_remove_contact -#define gaim_blist_remove_chat purple_blist_remove_chat -#define gaim_blist_remove_group purple_blist_remove_group - -#define gaim_buddy_get_alias_only purple_buddy_get_alias_only -#define gaim_buddy_get_server_alias purple_buddy_get_server_alias -#define gaim_buddy_get_contact_alias purple_buddy_get_contact_alias -#define gaim_buddy_get_local_alias purple_buddy_get_local_alias -#define gaim_buddy_get_alias purple_buddy_get_alias - -#define gaim_chat_get_name purple_chat_get_name - -#define gaim_find_buddy purple_find_buddy -#define gaim_find_buddy_in_group purple_find_buddy_in_group -#define gaim_find_buddies purple_find_buddies - -#define gaim_find_group purple_find_group - -#define gaim_blist_find_chat purple_blist_find_chat - -#define gaim_chat_get_group purple_chat_get_group -#define gaim_buddy_get_group purple_buddy_get_group - -#define gaim_group_get_accounts purple_group_get_accounts -#define gaim_group_on_account purple_group_on_account - -#define gaim_blist_add_account purple_blist_add_account -#define gaim_blist_remove_account purple_blist_remove_account - -#define gaim_blist_get_group_size purple_blist_get_group_size -#define gaim_blist_get_group_online_count purple_blist_get_group_online_count - -#define gaim_blist_load purple_blist_load -#define gaim_blist_schedule_save purple_blist_schedule_save - -#define gaim_blist_request_add_buddy purple_blist_request_add_buddy -#define gaim_blist_request_add_chat purple_blist_request_add_chat -#define gaim_blist_request_add_group purple_blist_request_add_group - -#define gaim_blist_node_set_bool purple_blist_node_set_bool -#define gaim_blist_node_get_bool purple_blist_node_get_bool -#define gaim_blist_node_set_int purple_blist_node_set_int -#define gaim_blist_node_get_int purple_blist_node_get_int -#define gaim_blist_node_set_string purple_blist_node_set_string -#define gaim_blist_node_get_string purple_blist_node_get_string - -#define gaim_blist_node_remove_setting purple_blist_node_remove_setting - -#define gaim_blist_node_set_flags purple_blist_node_set_flags -#define gaim_blist_node_get_flags purple_blist_node_get_flags - -#define gaim_blist_node_get_extended_menu purple_blist_node_get_extended_menu - -#define gaim_blist_set_ui_ops purple_blist_set_ui_ops -#define gaim_blist_get_ui_ops purple_blist_get_ui_ops - -#define gaim_blist_get_handle purple_blist_get_handle - -#define gaim_blist_init purple_blist_init -#define gaim_blist_uninit purple_blist_uninit - - -#define GaimBuddyIcon PurpleBuddyIcon - -#define gaim_buddy_icon_new(account, username, icon_data, icon_len)\ - purple_buddy_icon_new(account, username, g_memdup(icon_data, icon_len), icon_len) -#define gaim_buddy_icon_ref purple_buddy_icon_ref -#define gaim_buddy_icon_unref purple_buddy_icon_unref -#define gaim_buddy_icon_update purple_buddy_icon_update - -#define gaim_buddy_icon_set_data(icon, data, len) \ - purple_buddy_icon_set_data(icon, g_memdup(data, len), len, NULL); - -#define gaim_buddy_icon_get_account purple_buddy_icon_get_account -#define gaim_buddy_icon_get_username purple_buddy_icon_get_username -#define gaim_buddy_icon_get_data purple_buddy_icon_get_data -#define gaim_buddy_icon_get_type purple_buddy_icon_get_extension - -#define gaim_buddy_icons_set_for_user(icon, data, len) \ - purple_buddy_icons_set_for_user(icon, g_memdup(data, len), len, NULL) -#define gaim_buddy_icons_set_caching purple_buddy_icons_set_caching -#define gaim_buddy_icons_is_caching purple_buddy_icons_is_caching -#define gaim_buddy_icons_set_cache_dir purple_buddy_icons_set_cache_dir -#define gaim_buddy_icons_get_cache_dir purple_buddy_icons_get_cache_dir -#define gaim_buddy_icons_get_handle purple_buddy_icons_get_handle - -#define gaim_buddy_icons_init purple_buddy_icons_init -#define gaim_buddy_icons_uninit purple_buddy_icons_uninit - -#define gaim_buddy_icon_get_scale_size purple_buddy_icon_get_scale_size - -/* from cipher.h */ - -#define GAIM_CIPHER PURPLE_CIPHER -#define GAIM_CIPHER_OPS PURPLE_CIPHER_OPS -#define GAIM_CIPHER_CONTEXT PURPLE_CIPHER_CONTEXT - -#define GaimCipher PurpleCipher -#define GaimCipherOps PurpleCipherOps -#define GaimCipherContext PurpleCipherContext - -#define GAIM_CIPHER_CAPS_SET_OPT PURPLE_CIPHER_CAPS_SET_OPT -#define GAIM_CIPHER_CAPS_GET_OPT PURPLE_CIPHER_CAPS_GET_OPT -#define GAIM_CIPHER_CAPS_INIT PURPLE_CIPHER_CAPS_INIT -#define GAIM_CIPHER_CAPS_RESET PURPLE_CIPHER_CAPS_RESET -#define GAIM_CIPHER_CAPS_UNINIT PURPLE_CIPHER_CAPS_UNINIT -#define GAIM_CIPHER_CAPS_SET_IV PURPLE_CIPHER_CAPS_SET_IV -#define GAIM_CIPHER_CAPS_APPEND PURPLE_CIPHER_CAPS_APPEND -#define GAIM_CIPHER_CAPS_DIGEST PURPLE_CIPHER_CAPS_DIGEST -#define GAIM_CIPHER_CAPS_ENCRYPT PURPLE_CIPHER_CAPS_ENCRYPT -#define GAIM_CIPHER_CAPS_DECRYPT PURPLE_CIPHER_CAPS_DECRYPT -#define GAIM_CIPHER_CAPS_SET_SALT PURPLE_CIPHER_CAPS_SET_SALT -#define GAIM_CIPHER_CAPS_GET_SALT_SIZE PURPLE_CIPHER_CAPS_GET_SALT_SIZE -#define GAIM_CIPHER_CAPS_SET_KEY PURPLE_CIPHER_CAPS_SET_KEY -#define GAIM_CIPHER_CAPS_GET_KEY_SIZE PURPLE_CIPHER_CAPS_GET_KEY_SIZE -#define GAIM_CIPHER_CAPS_UNKNOWN PURPLE_CIPHER_CAPS_UNKNOWN - -#define gaim_cipher_get_name purple_cipher_get_name -#define gaim_cipher_get_capabilities purple_cipher_get_capabilities -#define gaim_cipher_digest_region purple_cipher_digest_region - -#define gaim_ciphers_find_cipher purple_ciphers_find_cipher -#define gaim_ciphers_register_cipher purple_ciphers_register_cipher -#define gaim_ciphers_unregister_cipher purple_ciphers_unregister_cipher -#define gaim_ciphers_get_ciphers purple_ciphers_get_ciphers - -#define gaim_ciphers_get_handle purple_ciphers_get_handle -#define gaim_ciphers_init purple_ciphers_init -#define gaim_ciphers_uninit purple_ciphers_uninit - -#define gaim_cipher_context_set_option purple_cipher_context_set_option -#define gaim_cipher_context_get_option purple_cipher_context_get_option - -#define gaim_cipher_context_new purple_cipher_context_new -#define gaim_cipher_context_new_by_name purple_cipher_context_new_by_name -#define gaim_cipher_context_reset purple_cipher_context_reset -#define gaim_cipher_context_destroy purple_cipher_context_destroy -#define gaim_cipher_context_set_iv purple_cipher_context_set_iv -#define gaim_cipher_context_append purple_cipher_context_append -#define gaim_cipher_context_digest purple_cipher_context_digest -#define gaim_cipher_context_digest_to_str purple_cipher_context_digest_to_str -#define gaim_cipher_context_encrypt purple_cipher_context_encrypt -#define gaim_cipher_context_decrypt purple_cipher_context_decrypt -#define gaim_cipher_context_set_salt purple_cipher_context_set_salt -#define gaim_cipher_context_get_salt_size purple_cipher_context_get_salt_size -#define gaim_cipher_context_set_key purple_cipher_context_set_key -#define gaim_cipher_context_get_key_size purple_cipher_context_get_key_size -#define gaim_cipher_context_set_data purple_cipher_context_set_data -#define gaim_cipher_context_get_data purple_cipher_context_get_data - -#define gaim_cipher_http_digest_calculate_session_key \ - purple_cipher_http_digest_calculate_session_key - -#define gaim_cipher_http_digest_calculate_response \ - purple_cipher_http_digest_calculate_response - -/* from circbuffer.h */ - -#define GaimCircBuffer PurpleCircBuffer - -#define gaim_circ_buffer_new purple_circ_buffer_new -#define gaim_circ_buffer_destroy purple_circ_buffer_destroy -#define gaim_circ_buffer_append purple_circ_buffer_append -#define gaim_circ_buffer_get_max_read purple_circ_buffer_get_max_read -#define gaim_circ_buffer_mark_read purple_circ_buffer_mark_read - -/* from cmds.h */ - -#define GaimCmdPriority PurpleCmdPriority -#define GaimCmdFlag PurpleCmdFlag -#define GaimCmdStatus PurpleCmdStatus -#define GaimCmdRet PurpleCmdRet - -#define GAIM_CMD_STATUS_OK PURPLE_CMD_STATUS_OK -#define GAIM_CMD_STATUS_FAILED PURPLE_CMD_STATUS_FAILED -#define GAIM_CMD_STATUS_NOT_FOUND PURPLE_CMD_STATUS_NOT_FOUND -#define GAIM_CMD_STATUS_WRONG_ARGS PURPLE_CMD_STATUS_WRONG_ARGS -#define GAIM_CMD_STATUS_WRONG_PRPL PURPLE_CMD_STATUS_WRONG_PRPL -#define GAIM_CMD_STATUS_WRONG_TYPE PURPLE_CMD_STATUS_WRONG_TYPE - -#define GAIM_CMD_FUNC PURPLE_CMD_FUNC - -#define GAIM_CMD_RET_OK PURPLE_CMD_RET_OK -#define GAIM_CMD_RET_FAILED PURPLE_CMD_RET_FAILED -#define GAIM_CMD_RET_CONTINUE PURPLE_CMD_RET_CONTINUE - -#define GAIM_CMD_P_VERY_LOW PURPLE_CMD_P_VERY_LOW -#define GAIM_CMD_P_LOW PURPLE_CMD_P_LOW -#define GAIM_CMD_P_DEFAULT PURPLE_CMD_P_DEFAULT -#define GAIM_CMD_P_PRPL PURPLE_CMD_P_PRPL -#define GAIM_CMD_P_PLUGIN PURPLE_CMD_P_PLUGIN -#define GAIM_CMD_P_ALIAS PURPLE_CMD_P_ALIAS -#define GAIM_CMD_P_HIGH PURPLE_CMD_P_HIGH -#define GAIM_CMD_P_VERY_HIGH PURPLE_CMD_P_VERY_HIGH - -#define GAIM_CMD_FLAG_IM PURPLE_CMD_FLAG_IM -#define GAIM_CMD_FLAG_CHAT PURPLE_CMD_FLAG_CHAT -#define GAIM_CMD_FLAG_PRPL_ONLY PURPLE_CMD_FLAG_PRPL_ONLY -#define GAIM_CMD_FLAG_ALLOW_WRONG_ARGS PURPLE_CMD_FLAG_ALLOW_WRONG_ARGS - - -#define GaimCmdFunc PurpleCmdFunc - -#define GaimCmdId PurpleCmdId - -#define gaim_cmd_register purple_cmd_register -#define gaim_cmd_unregister purple_cmd_unregister -#define gaim_cmd_do_command purple_cmd_do_command -#define gaim_cmd_list purple_cmd_list -#define gaim_cmd_help purple_cmd_help - -/* from connection.h */ - -#define GaimConnection PurpleConnection - -#define GAIM_CONNECTION_HTML PURPLE_CONNECTION_HTML -#define GAIM_CONNECTION_NO_BGCOLOR PURPLE_CONNECTION_NO_BGCOLOR -#define GAIM_CONNECTION_AUTO_RESP PURPLE_CONNECTION_AUTO_RESP -#define GAIM_CONNECTION_FORMATTING_WBFO PURPLE_CONNECTION_FORMATTING_WBFO -#define GAIM_CONNECTION_NO_NEWLINES PURPLE_CONNECTION_NO_NEWLINES -#define GAIM_CONNECTION_NO_FONTSIZE PURPLE_CONNECTION_NO_FONTSIZE -#define GAIM_CONNECTION_NO_URLDESC PURPLE_CONNECTION_NO_URLDESC -#define GAIM_CONNECTION_NO_IMAGES PURPLE_CONNECTION_NO_IMAGES - -#define GaimConnectionFlags PurpleConnectionFlags - -#define GAIM_DISCONNECTED PURPLE_DISCONNECTED -#define GAIM_CONNECTED PURPLE_CONNECTED -#define GAIM_CONNECTING PURPLE_CONNECTING - -#define GaimConnectionState PurpleConnectionState - -#define GaimConnectionUiOps PurpleConnectionUiOps - -#define gaim_connection_new purple_connection_new -#define gaim_connection_destroy purple_connection_destroy - -#define gaim_connection_set_state purple_connection_set_state -#define gaim_connection_set_account purple_connection_set_account -#define gaim_connection_set_display_name purple_connection_set_display_name -#define gaim_connection_get_state purple_connection_get_state - -#define GAIM_CONNECTION_IS_CONNECTED PURPLE_CONNECTION_IS_CONNECTED - -#define gaim_connection_get_account purple_connection_get_account -#define gaim_connection_get_password purple_connection_get_password -#define gaim_connection_get_display_name purple_connection_get_display_name - -#define gaim_connection_update_progress purple_connection_update_progress - -#define gaim_connection_notice purple_connection_notice -#define gaim_connection_error purple_connection_error - -#define gaim_connections_disconnect_all purple_connections_disconnect_all - -#define gaim_connections_get_all purple_connections_get_all -#define gaim_connections_get_connecting purple_connections_get_connecting - -#define GAIM_CONNECTION_IS_VALID PURPLE_CONNECTION_IS_VALID - -#define gaim_connections_set_ui_ops purple_connections_set_ui_ops -#define gaim_connections_get_ui_ops purple_connections_get_ui_ops - -#define gaim_connections_init purple_connections_init -#define gaim_connections_uninit purple_connections_uninit -#define gaim_connections_get_handle purple_connections_get_handle - - -/* from conversation.h */ - -#define GaimConversationUiOps PurpleConversationUiOps -#define GaimConversation PurpleConversation -#define GaimConvIm PurpleConvIm -#define GaimConvChat PurpleConvChat -#define GaimConvChatBuddy PurpleConvChatBuddy - -#define GAIM_CONV_TYPE_UNKNOWN PURPLE_CONV_TYPE_UNKNOWN -#define GAIM_CONV_TYPE_IM PURPLE_CONV_TYPE_IM -#define GAIM_CONV_TYPE_CHAT PURPLE_CONV_TYPE_CHAT -#define GAIM_CONV_TYPE_MISC PURPLE_CONV_TYPE_MISC -#define GAIM_CONV_TYPE_ANY PURPLE_CONV_TYPE_ANY - -#define GaimConversationType PurpleConversationType - -#define GAIM_CONV_UPDATE_ADD PURPLE_CONV_UPDATE_ADD -#define GAIM_CONV_UPDATE_REMOVE PURPLE_CONV_UPDATE_REMOVE -#define GAIM_CONV_UPDATE_ACCOUNT PURPLE_CONV_UPDATE_ACCOUNT -#define GAIM_CONV_UPDATE_TYPING PURPLE_CONV_UPDATE_TYPING -#define GAIM_CONV_UPDATE_UNSEEN PURPLE_CONV_UPDATE_UNSEEN -#define GAIM_CONV_UPDATE_LOGGING PURPLE_CONV_UPDATE_LOGGING -#define GAIM_CONV_UPDATE_TOPIC PURPLE_CONV_UPDATE_TOPIC -#define GAIM_CONV_ACCOUNT_ONLINE PURPLE_CONV_ACCOUNT_ONLINE -#define GAIM_CONV_ACCOUNT_OFFLINE PURPLE_CONV_ACCOUNT_OFFLINE -#define GAIM_CONV_UPDATE_AWAY PURPLE_CONV_UPDATE_AWAY -#define GAIM_CONV_UPDATE_ICON PURPLE_CONV_UPDATE_ICON -#define GAIM_CONV_UPDATE_TITLE PURPLE_CONV_UPDATE_TITLE -#define GAIM_CONV_UPDATE_CHATLEFT PURPLE_CONV_UPDATE_CHATLEFT -#define GAIM_CONV_UPDATE_FEATURES PURPLE_CONV_UPDATE_FEATURES - -#define GaimConvUpdateType PurpleConvUpdateType - -#define GAIM_NOT_TYPING PURPLE_NOT_TYPING -#define GAIM_TYPING PURPLE_TYPING -#define GAIM_TYPED PURPLE_TYPED - -#define GaimTypingState PurpleTypingState - -#define GAIM_MESSAGE_SEND PURPLE_MESSAGE_SEND -#define GAIM_MESSAGE_RECV PURPLE_MESSAGE_RECV -#define GAIM_MESSAGE_SYSTEM PURPLE_MESSAGE_SYSTEM -#define GAIM_MESSAGE_AUTO_RESP PURPLE_MESSAGE_AUTO_RESP -#define GAIM_MESSAGE_ACTIVE_ONLY PURPLE_MESSAGE_ACTIVE_ONLY -#define GAIM_MESSAGE_NICK PURPLE_MESSAGE_NICK -#define GAIM_MESSAGE_NO_LOG PURPLE_MESSAGE_NO_LOG -#define GAIM_MESSAGE_WHISPER PURPLE_MESSAGE_WHISPER -#define GAIM_MESSAGE_ERROR PURPLE_MESSAGE_ERROR -#define GAIM_MESSAGE_DELAYED PURPLE_MESSAGE_DELAYED -#define GAIM_MESSAGE_RAW PURPLE_MESSAGE_RAW -#define GAIM_MESSAGE_IMAGES PURPLE_MESSAGE_IMAGES - -#define GaimMessageFlags PurpleMessageFlags - -#define GAIM_CBFLAGS_NONE PURPLE_CBFLAGS_NONE -#define GAIM_CBFLAGS_VOICE PURPLE_CBFLAGS_VOICE -#define GAIM_CBFLAGS_HALFOP PURPLE_CBFLAGS_HALFOP -#define GAIM_CBFLAGS_OP PURPLE_CBFLAGS_OP -#define GAIM_CBFLAGS_FOUNDER PURPLE_CBFLAGS_FOUNDER -#define GAIM_CBFLAGS_TYPING PURPLE_CBFLAGS_TYPING - -#define GaimConvChatBuddyFlags PurpleConvChatBuddyFlags - -#define gaim_conversations_set_ui_ops purple_conversations_set_ui_ops - -#define gaim_conversation_new purple_conversation_new -#define gaim_conversation_destroy purple_conversation_destroy -#define gaim_conversation_present purple_conversation_present -#define gaim_conversation_get_type purple_conversation_get_type -#define gaim_conversation_set_ui_ops purple_conversation_set_ui_ops -#define gaim_conversation_get_ui_ops purple_conversation_get_ui_ops -#define gaim_conversation_set_account purple_conversation_set_account -#define gaim_conversation_get_account purple_conversation_get_account -#define gaim_conversation_get_gc purple_conversation_get_gc -#define gaim_conversation_set_title purple_conversation_set_title -#define gaim_conversation_get_title purple_conversation_get_title -#define gaim_conversation_autoset_title purple_conversation_autoset_title -#define gaim_conversation_set_name purple_conversation_set_name -#define gaim_conversation_get_name purple_conversation_get_name -#define gaim_conversation_set_logging purple_conversation_set_logging -#define gaim_conversation_is_logging purple_conversation_is_logging -#define gaim_conversation_close_logs purple_conversation_close_logs -#define gaim_conversation_get_im_data purple_conversation_get_im_data - -#define GAIM_CONV_IM PURPLE_CONV_IM - -#define gaim_conversation_get_chat_data purple_conversation_get_chat_data - -#define GAIM_CONV_CHAT PURPLE_CONV_CHAT - -#define gaim_conversation_set_data purple_conversation_set_data -#define gaim_conversation_get_data purple_conversation_get_data - -#define gaim_get_conversations purple_get_conversations -#define gaim_get_ims purple_get_ims -#define gaim_get_chats purple_get_chats - -#define gaim_find_conversation_with_account \ - purple_find_conversation_with_account - -#define gaim_conversation_write purple_conversation_write -#define gaim_conversation_set_features purple_conversation_set_features -#define gaim_conversation_get_features purple_conversation_get_features -#define gaim_conversation_has_focus purple_conversation_has_focus -#define gaim_conversation_update purple_conversation_update -#define gaim_conversation_foreach purple_conversation_foreach - -#define gaim_conv_im_get_conversation purple_conv_im_get_conversation -#define gaim_conv_im_set_icon purple_conv_im_set_icon -#define gaim_conv_im_get_icon purple_conv_im_get_icon -#define gaim_conv_im_set_typing_state purple_conv_im_set_typing_state -#define gaim_conv_im_get_typing_state purple_conv_im_get_typing_state - -#define gaim_conv_im_start_typing_timeout purple_conv_im_start_typing_timeout -#define gaim_conv_im_stop_typing_timeout purple_conv_im_stop_typing_timeout -#define gaim_conv_im_get_typing_timeout purple_conv_im_get_typing_timeout -#define gaim_conv_im_set_type_again purple_conv_im_set_type_again -#define gaim_conv_im_get_type_again purple_conv_im_get_type_again - -#define gaim_conv_im_start_send_typed_timeout \ - purple_conv_im_start_send_typed_timeout - -#define gaim_conv_im_stop_send_typed_timeout \ - purple_conv_im_stop_send_typed_timeout - -#define gaim_conv_im_get_send_typed_timeout \ - purple_conv_im_get_send_typed_timeout - -#define gaim_conv_present_error purple_conv_present_error -#define gaim_conv_send_confirm purple_conv_send_confirm - -#define gaim_conv_im_update_typing purple_conv_im_update_typing -#define gaim_conv_im_write purple_conv_im_write -#define gaim_conv_im_send purple_conv_im_send -#define gaim_conv_im_send_with_flags purple_conv_im_send_with_flags - -#define gaim_conv_custom_smiley_add purple_conv_custom_smiley_add -#define gaim_conv_custom_smiley_write purple_conv_custom_smiley_write -#define gaim_conv_custom_smiley_close purple_conv_custom_smiley_close - -#define gaim_conv_chat_get_conversation purple_conv_chat_get_conversation -#define gaim_conv_chat_set_users purple_conv_chat_set_users -#define gaim_conv_chat_get_users purple_conv_chat_get_users -#define gaim_conv_chat_ignore purple_conv_chat_ignore -#define gaim_conv_chat_unignore purple_conv_chat_unignore -#define gaim_conv_chat_set_ignored purple_conv_chat_set_ignored -#define gaim_conv_chat_get_ignored purple_conv_chat_get_ignored -#define gaim_conv_chat_get_ignored_user purple_conv_chat_get_ignored_user -#define gaim_conv_chat_is_user_ignored purple_conv_chat_is_user_ignored -#define gaim_conv_chat_set_topic purple_conv_chat_set_topic -#define gaim_conv_chat_get_topic purple_conv_chat_get_topic -#define gaim_conv_chat_set_id purple_conv_chat_set_id -#define gaim_conv_chat_get_id purple_conv_chat_get_id -#define gaim_conv_chat_write purple_conv_chat_write -#define gaim_conv_chat_send purple_conv_chat_send -#define gaim_conv_chat_send_with_flags purple_conv_chat_send_with_flags -#define gaim_conv_chat_add_user purple_conv_chat_add_user -#define gaim_conv_chat_add_users purple_conv_chat_add_users -#define gaim_conv_chat_rename_user purple_conv_chat_rename_user -#define gaim_conv_chat_remove_user purple_conv_chat_remove_user -#define gaim_conv_chat_remove_users purple_conv_chat_remove_users -#define gaim_conv_chat_find_user purple_conv_chat_find_user -#define gaim_conv_chat_user_set_flags purple_conv_chat_user_set_flags -#define gaim_conv_chat_user_get_flags purple_conv_chat_user_get_flags -#define gaim_conv_chat_clear_users purple_conv_chat_clear_users -#define gaim_conv_chat_set_nick purple_conv_chat_set_nick -#define gaim_conv_chat_get_nick purple_conv_chat_get_nick -#define gaim_conv_chat_left purple_conv_chat_left -#define gaim_conv_chat_has_left purple_conv_chat_has_left - -#define gaim_find_chat purple_find_chat - -#define gaim_conv_chat_cb_new purple_conv_chat_cb_new -#define gaim_conv_chat_cb_find purple_conv_chat_cb_find -#define gaim_conv_chat_cb_get_name purple_conv_chat_cb_get_name -#define gaim_conv_chat_cb_destroy purple_conv_chat_cb_destroy - -#define gaim_conversations_get_handle purple_conversations_get_handle -#define gaim_conversations_init purple_conversations_init -#define gaim_conversations_uninit purple_conversations_uninit - -/* from core.h */ - -#define GaimCore PurpleCore - -#define GaimCoreUiOps PurpleCoreUiOps - -#define gaim_core_init purple_core_init -#define gaim_core_quit purple_core_quit - -#define gaim_core_quit_cb purple_core_quit_cb -#define gaim_core_get_version purple_core_get_version -#define gaim_core_get_ui purple_core_get_ui -#define gaim_get_core purple_get_core -#define gaim_core_set_ui_ops purple_core_set_ui_ops -#define gaim_core_get_ui_ops purple_core_get_ui_ops - -/* from debug.h */ - -#define GAIM_DEBUG_ALL PURPLE_DEBUG_ALL -#define GAIM_DEBUG_MISC PURPLE_DEBUG_MISC -#define GAIM_DEBUG_INFO PURPLE_DEBUG_INFO -#define GAIM_DEBUG_WARNING PURPLE_DEBUG_WARNING -#define GAIM_DEBUG_ERROR PURPLE_DEBUG_ERROR -#define GAIM_DEBUG_FATAL PURPLE_DEBUG_FATAL - -#define GaimDebugLevel PurpleDebugLevel - -#define GaimDebugUiOps PurpleDebugUiOps - - -#define gaim_debug purple_debug -#define gaim_debug_misc purple_debug_misc -#define gaim_debug_info purple_debug_info -#define gaim_debug_warning purple_debug_warning -#define gaim_debug_error purple_debug_error -#define gaim_debug_fatal purple_debug_fatal - -#define gaim_debug_set_enabled purple_debug_set_enabled -#define gaim_debug_is_enabled purple_debug_is_enabled - -#define gaim_debug_set_ui_ops purple_debug_set_ui_ops -#define gaim_debug_get_ui_ops purple_debug_get_ui_ops - -#define gaim_debug_init purple_debug_init - -/* from desktopitem.h */ - -#define GAIM_DESKTOP_ITEM_TYPE_NULL PURPLE_DESKTOP_ITEM_TYPE_NULL -#define GAIM_DESKTOP_ITEM_TYPE_OTHER PURPLE_DESKTOP_ITEM_TYPE_OTHER -#define GAIM_DESKTOP_ITEM_TYPE_APPLICATION PURPLE_DESKTOP_ITEM_TYPE_APPLICATION -#define GAIM_DESKTOP_ITEM_TYPE_LINK PURPLE_DESKTOP_ITEM_TYPE_LINK -#define GAIM_DESKTOP_ITEM_TYPE_FSDEVICE PURPLE_DESKTOP_ITEM_TYPE_FSDEVICE -#define GAIM_DESKTOP_ITEM_TYPE_MIME_TYPE PURPLE_DESKTOP_ITEM_TYPE_MIME_TYPE -#define GAIM_DESKTOP_ITEM_TYPE_DIRECTORY PURPLE_DESKTOP_ITEM_TYPE_DIRECTORY -#define GAIM_DESKTOP_ITEM_TYPE_SERVICE PURPLE_DESKTOP_ITEM_TYPE_SERVICE -#define GAIM_DESKTOP_ITEM_TYPE_SERVICE_TYPE PURPLE_DESKTOP_ITEM_TYPE_SERVICE_TYPE - -#define GaimDesktopItemType PurpleDesktopItemType - -#define GaimDesktopItem PurpleDesktopItem - -#define GAIM_TYPE_DESKTOP_ITEM PURPLE_TYPE_DESKTOP_ITEM -#define gaim_desktop_item_get_type purple_desktop_item_get_type - -/* standard */ -/* ugh, i'm just copying these as strings, rather than pidginifying them */ -#define GAIM_DESKTOP_ITEM_ENCODING "Encoding" /* string */ -#define GAIM_DESKTOP_ITEM_VERSION "Version" /* numeric */ -#define GAIM_DESKTOP_ITEM_NAME "Name" /* localestring */ -#define GAIM_DESKTOP_ITEM_GENERIC_NAME "GenericName" /* localestring */ -#define GAIM_DESKTOP_ITEM_TYPE "Type" /* string */ -#define GAIM_DESKTOP_ITEM_FILE_PATTERN "FilePattern" /* regexp(s) */ -#define GAIM_DESKTOP_ITEM_TRY_EXEC "TryExec" /* string */ -#define GAIM_DESKTOP_ITEM_NO_DISPLAY "NoDisplay" /* boolean */ -#define GAIM_DESKTOP_ITEM_COMMENT "Comment" /* localestring */ -#define GAIM_DESKTOP_ITEM_EXEC "Exec" /* string */ -#define GAIM_DESKTOP_ITEM_ACTIONS "Actions" /* strings */ -#define GAIM_DESKTOP_ITEM_ICON "Icon" /* string */ -#define GAIM_DESKTOP_ITEM_MINI_ICON "MiniIcon" /* string */ -#define GAIM_DESKTOP_ITEM_HIDDEN "Hidden" /* boolean */ -#define GAIM_DESKTOP_ITEM_PATH "Path" /* string */ -#define GAIM_DESKTOP_ITEM_TERMINAL "Terminal" /* boolean */ -#define GAIM_DESKTOP_ITEM_TERMINAL_OPTIONS "TerminalOptions" /* string */ -#define GAIM_DESKTOP_ITEM_SWALLOW_TITLE "SwallowTitle" /* string */ -#define GAIM_DESKTOP_ITEM_SWALLOW_EXEC "SwallowExec" /* string */ -#define GAIM_DESKTOP_ITEM_MIME_TYPE "MimeType" /* regexp(s) */ -#define GAIM_DESKTOP_ITEM_PATTERNS "Patterns" /* regexp(s) */ -#define GAIM_DESKTOP_ITEM_DEFAULT_APP "DefaultApp" /* string */ -#define GAIM_DESKTOP_ITEM_DEV "Dev" /* string */ -#define GAIM_DESKTOP_ITEM_FS_TYPE "FSType" /* string */ -#define GAIM_DESKTOP_ITEM_MOUNT_POINT "MountPoint" /* string */ -#define GAIM_DESKTOP_ITEM_READ_ONLY "ReadOnly" /* boolean */ -#define GAIM_DESKTOP_ITEM_UNMOUNT_ICON "UnmountIcon" /* string */ -#define GAIM_DESKTOP_ITEM_SORT_ORDER "SortOrder" /* strings */ -#define GAIM_DESKTOP_ITEM_URL "URL" /* string */ -#define GAIM_DESKTOP_ITEM_DOC_PATH "X-GNOME-DocPath" /* string */ - -#define gaim_desktop_item_new_from_file purple_desktop_item_new_from_file -#define gaim_desktop_item_get_entry_type purple_desktop_item_get_entry_type -#define gaim_desktop_item_get_string purple_desktop_item_get_string -#define gaim_desktop_item_copy purple_desktop_item_copy -#define gaim_desktop_item_unref purple_desktop_item_unref - -/* from dnsquery.h */ - -#define GaimDnsQueryData PurpleDnsQueryData -#define GaimDnsQueryConnectFunction PurpleDnsQueryConnectFunction - -#define gaim_dnsquery_a purple_dnsquery_a -#define gaim_dnsquery_destroy purple_dnsquery_destroy -#define gaim_dnsquery_init purple_dnsquery_init -#define gaim_dnsquery_uninit purple_dnsquery_uninit -#define gaim_dnsquery_set_ui_ops purple_dnsquery_set_ui_ops -#define gaim_dnsquery_get_host purple_dnsquery_get_host -#define gaim_dnsquery_get_port purple_dnsquery_get_port - -/* from dnssrv.h */ - -#define GaimSrvResponse PurpleSrvResponse -#define GaimSrvQueryData PurpleSrvTxtQueryData -#define GaimSrvCallback PurpleSrvCallback - -#define gaim_srv_resolve purple_srv_resolve -#define gaim_srv_cancel purple_srv_cancel - -/* from eventloop.h */ - -#define GAIM_INPUT_READ PURPLE_INPUT_READ -#define GAIM_INPUT_WRITE PURPLE_INPUT_WRITE - -#define GaimInputCondition PurpleInputCondition -#define GaimInputFunction PurpleInputFunction -#define GaimEventLoopUiOps PurpleEventLoopUiOps - -#define gaim_timeout_add purple_timeout_add -#define gaim_timeout_remove purple_timeout_remove -#define gaim_input_add purple_input_add -#define gaim_input_remove purple_input_remove - -#define gaim_eventloop_set_ui_ops purple_eventloop_set_ui_ops -#define gaim_eventloop_get_ui_ops purple_eventloop_get_ui_ops - -/* from ft.h */ - -#define GaimXfer PurpleXfer - -#define GAIM_XFER_UNKNOWN PURPLE_XFER_UNKNOWN -#define GAIM_XFER_SEND PURPLE_XFER_SEND -#define GAIM_XFER_RECEIVE PURPLE_XFER_RECEIVE - -#define GaimXferType PurpleXferType - -#define GAIM_XFER_STATUS_UNKNOWN PURPLE_XFER_STATUS_UNKNOWN -#define GAIM_XFER_STATUS_NOT_STARTED PURPLE_XFER_STATUS_NOT_STARTED -#define GAIM_XFER_STATUS_ACCEPTED PURPLE_XFER_STATUS_ACCEPTED -#define GAIM_XFER_STATUS_STARTED PURPLE_XFER_STATUS_STARTED -#define GAIM_XFER_STATUS_DONE PURPLE_XFER_STATUS_DONE -#define GAIM_XFER_STATUS_CANCEL_LOCAL PURPLE_XFER_STATUS_CANCEL_LOCAL -#define GAIM_XFER_STATUS_CANCEL_REMOTE PURPLE_XFER_STATUS_CANCEL_REMOTE - -#define GaimXferStatusType PurpleXferStatusType - -#define GaimXferUiOps PurpleXferUiOps - -#define gaim_xfer_new purple_xfer_new -#define gaim_xfer_ref purple_xfer_ref -#define gaim_xfer_unref purple_xfer_unref -#define gaim_xfer_request purple_xfer_request -#define gaim_xfer_request_accepted purple_xfer_request_accepted -#define gaim_xfer_request_denied purple_xfer_request_denied -#define gaim_xfer_get_type purple_xfer_get_type -#define gaim_xfer_get_account purple_xfer_get_account -#define gaim_xfer_get_status purple_xfer_get_status -#define gaim_xfer_is_canceled purple_xfer_is_canceled -#define gaim_xfer_is_completed purple_xfer_is_completed -#define gaim_xfer_get_filename purple_xfer_get_filename -#define gaim_xfer_get_local_filename purple_xfer_get_local_filename -#define gaim_xfer_get_bytes_sent purple_xfer_get_bytes_sent -#define gaim_xfer_get_bytes_remaining purple_xfer_get_bytes_remaining -#define gaim_xfer_get_size purple_xfer_get_size -#define gaim_xfer_get_progress purple_xfer_get_progress -#define gaim_xfer_get_local_port purple_xfer_get_local_port -#define gaim_xfer_get_remote_ip purple_xfer_get_remote_ip -#define gaim_xfer_get_remote_port purple_xfer_get_remote_port -#define gaim_xfer_set_completed purple_xfer_set_completed -#define gaim_xfer_set_message purple_xfer_set_message -#define gaim_xfer_set_filename purple_xfer_set_filename -#define gaim_xfer_set_local_filename purple_xfer_set_local_filename -#define gaim_xfer_set_size purple_xfer_set_size -#define gaim_xfer_set_bytes_sent purple_xfer_set_bytes_sent -#define gaim_xfer_get_ui_ops purple_xfer_get_ui_ops -#define gaim_xfer_set_read_fnc purple_xfer_set_read_fnc -#define gaim_xfer_set_write_fnc purple_xfer_set_write_fnc -#define gaim_xfer_set_ack_fnc purple_xfer_set_ack_fnc -#define gaim_xfer_set_request_denied_fnc purple_xfer_set_request_denied_fnc -#define gaim_xfer_set_init_fnc purple_xfer_set_init_fnc -#define gaim_xfer_set_start_fnc purple_xfer_set_start_fnc -#define gaim_xfer_set_end_fnc purple_xfer_set_end_fnc -#define gaim_xfer_set_cancel_send_fnc purple_xfer_set_cancel_send_fnc -#define gaim_xfer_set_cancel_recv_fnc purple_xfer_set_cancel_recv_fnc - -#define gaim_xfer_read purple_xfer_read -#define gaim_xfer_write purple_xfer_write -#define gaim_xfer_start purple_xfer_start -#define gaim_xfer_end purple_xfer_end -#define gaim_xfer_add purple_xfer_add -#define gaim_xfer_cancel_local purple_xfer_cancel_local -#define gaim_xfer_cancel_remote purple_xfer_cancel_remote -#define gaim_xfer_error purple_xfer_error -#define gaim_xfer_update_progress purple_xfer_update_progress -#define gaim_xfer_conversation_write purple_xfer_conversation_write - -#define gaim_xfers_get_handle purple_xfers_get_handle -#define gaim_xfers_init purple_xfers_init -#define gaim_xfers_uninit purple_xfers_uninit -#define gaim_xfers_set_ui_ops purple_xfers_set_ui_ops -#define gaim_xfers_get_ui_ops purple_xfers_get_ui_ops - -/* from gaim-client.h */ - -#define gaim_init purple_init - -/* from idle.h */ - -#define GaimIdleUiOps PurpleIdleUiOps - -#define gaim_idle_touch purple_idle_touch -#define gaim_idle_set purple_idle_set -#define gaim_idle_set_ui_ops purple_idle_set_ui_ops -#define gaim_idle_get_ui_ops purple_idle_get_ui_ops -#define gaim_idle_init purple_idle_init -#define gaim_idle_uninit purple_idle_uninit - -/* from imgstore.h */ - -#define GaimStoredImage PurpleStoredImage - -#define gaim_imgstore_add(data, size, filename) \ - purple_imgstore_add_with_id(g_memdup(data, size), size, filename) -#define gaim_imgstore_get purple_imgstore_find_by_id -#define gaim_imgstore_get_data purple_imgstore_get_data -#define gaim_imgstore_get_size purple_imgstore_get_size -#define gaim_imgstore_get_filename purple_imgstore_get_filename -#define gaim_imgstore_ref purple_imgstore_ref_by_id -#define gaim_imgstore_unref purple_imgstore_unref_by_id - - -/* from log.h */ - -#define GaimLog PurpleLog -#define GaimLogLogger PurpleLogLogger -#define GaimLogCommonLoggerData PurpleLogCommonLoggerData -#define GaimLogSet PurpleLogSet - -#define GAIM_LOG_IM PURPLE_LOG_IM -#define GAIM_LOG_CHAT PURPLE_LOG_CHAT -#define GAIM_LOG_SYSTEM PURPLE_LOG_SYSTEM - -#define GaimLogType PurpleLogType - -#define GAIM_LOG_READ_NO_NEWLINE PURPLE_LOG_READ_NO_NEWLINE - -#define GaimLogReadFlags PurpleLogReadFlags - -#define GaimLogSetCallback PurpleLogSetCallback - -#define gaim_log_new purple_log_new -#define gaim_log_free purple_log_free -#define gaim_log_write purple_log_write -#define gaim_log_read purple_log_read - -#define gaim_log_get_logs purple_log_get_logs -#define gaim_log_get_log_sets purple_log_get_log_sets -#define gaim_log_get_system_logs purple_log_get_system_logs -#define gaim_log_get_size purple_log_get_size -#define gaim_log_get_total_size purple_log_get_total_size -#define gaim_log_get_log_dir purple_log_get_log_dir -#define gaim_log_compare purple_log_compare -#define gaim_log_set_compare purple_log_set_compare -#define gaim_log_set_free purple_log_set_free - -#define gaim_log_common_writer purple_log_common_writer -#define gaim_log_common_lister purple_log_common_lister -#define gaim_log_common_total_sizer purple_log_common_total_sizer -#define gaim_log_common_sizer purple_log_common_sizer - -#define gaim_log_logger_new purple_log_logger_new -#define gaim_log_logger_free purple_log_logger_free -#define gaim_log_logger_add purple_log_logger_add -#define gaim_log_logger_remove purple_log_logger_remove -#define gaim_log_logger_set purple_log_logger_set -#define gaim_log_logger_get purple_log_logger_get - -#define gaim_log_logger_get_options purple_log_logger_get_options - -#define gaim_log_init purple_log_init -#define gaim_log_get_handle purple_log_get_handle -#define gaim_log_uninit purple_log_uninit - -/* from mime.h */ - -#define GaimMimeDocument PurpleMimeDocument -#define GaimMimePart PurpleMimePart - -#define gaim_mime_document_new purple_mime_document_new -#define gaim_mime_document_free purple_mime_document_free -#define gaim_mime_document_parse purple_mime_document_parse -#define gaim_mime_document_parsen purple_mime_document_parsen -#define gaim_mime_document_write purple_mime_document_write -#define gaim_mime_document_get_fields purple_mime_document_get_fields -#define gaim_mime_document_get_field purple_mime_document_get_field -#define gaim_mime_document_set_field purple_mime_document_set_field -#define gaim_mime_document_get_parts purple_mime_document_get_parts - -#define gaim_mime_part_new purple_mime_part_new -#define gaim_mime_part_get_fields purple_mime_part_get_fields -#define gaim_mime_part_get_field purple_mime_part_get_field -#define gaim_mime_part_get_field_decoded purple_mime_part_get_field_decoded -#define gaim_mime_part_set_field purple_mime_part_set_field -#define gaim_mime_part_get_data purple_mime_part_get_data -#define gaim_mime_part_get_data_decoded purple_mime_part_get_data_decoded -#define gaim_mime_part_get_length purple_mime_part_get_length -#define gaim_mime_part_set_data purple_mime_part_set_data - - -/* from network.h */ - -#define GaimNetworkListenData PurpleNetworkListenData - -#define GaimNetworkListenCallback PurpleNetworkListenCallback - -#define gaim_network_ip_atoi purple_network_ip_atoi -#define gaim_network_set_public_ip purple_network_set_public_ip -#define gaim_network_get_public_ip purple_network_get_public_ip -#define gaim_network_get_local_system_ip purple_network_get_local_system_ip -#define gaim_network_get_my_ip purple_network_get_my_ip - -#define gaim_network_listen purple_network_listen -#define gaim_network_listen_range purple_network_listen_range -#define gaim_network_listen_cancel purple_network_listen_cancel -#define gaim_network_get_port_from_fd purple_network_get_port_from_fd - -#define gaim_network_is_available purple_network_is_available - -#define gaim_network_init purple_network_init -#define gaim_network_uninit purple_network_uninit - -/* from notify.h */ - - -#define GaimNotifyUserInfoEntry PurpleNotifyUserInfoEntry -#define GaimNotifyUserInfo PurpleNotifyUserInfo - -#define GaimNotifyCloseCallback PurpleNotifyCloseCallback - -#define GAIM_NOTIFY_MESSAGE PURPLE_NOTIFY_MESSAGE -#define GAIM_NOTIFY_EMAIL PURPLE_NOTIFY_EMAIL -#define GAIM_NOTIFY_EMAILS PURPLE_NOTIFY_EMAILS -#define GAIM_NOTIFY_FORMATTED PURPLE_NOTIFY_FORMATTED -#define GAIM_NOTIFY_SEARCHRESULTS PURPLE_NOTIFY_SEARCHRESULTS -#define GAIM_NOTIFY_USERINFO PURPLE_NOTIFY_USERINFO -#define GAIM_NOTIFY_URI PURPLE_NOTIFY_URI - -#define GaimNotifyType PurpleNotifyType - -#define GAIM_NOTIFY_MSG_ERROR PURPLE_NOTIFY_MSG_ERROR -#define GAIM_NOTIFY_MSG_WARNING PURPLE_NOTIFY_MSG_WARNING -#define GAIM_NOTIFY_MSG_INFO PURPLE_NOTIFY_MSG_INFO - -#define GaimNotifyMsgType PurpleNotifyMsgType - -#define GAIM_NOTIFY_BUTTON_LABELED PURPLE_NOTIFY_BUTTON_LABELED -#define GAIM_NOTIFY_BUTTON_CONTINUE PURPLE_NOTIFY_BUTTON_CONTINUE -#define GAIM_NOTIFY_BUTTON_ADD PURPLE_NOTIFY_BUTTON_ADD -#define GAIM_NOTIFY_BUTTON_INFO PURPLE_NOTIFY_BUTTON_INFO -#define GAIM_NOTIFY_BUTTON_IM PURPLE_NOTIFY_BUTTON_IM -#define GAIM_NOTIFY_BUTTON_JOIN PURPLE_NOTIFY_BUTTON_JOIN -#define GAIM_NOTIFY_BUTTON_INVITE PURPLE_NOTIFY_BUTTON_INVITE - -#define GaimNotifySearchButtonType PurpleNotifySearchButtonType - -#define GaimNotifySearchResults PurpleNotifySearchResults - -#define GAIM_NOTIFY_USER_INFO_ENTRY_PAIR PURPLE_NOTIFY_USER_INFO_ENTRY_PAIR -#define GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK -#define GAIM_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER - -#define GaimNotifyUserInfoEntryType PurpleNotifyUserInfoEntryType - -#define GaimNotifySearchColumn PurpleNotifySearchColumn -#define GaimNotifySearchResultsCallback PurpleNotifySearchResultsCallback -#define GaimNotifySearchButton PurpleNotifySearchButton - -#define GaimNotifyUiOps PurpleNotifyUiOps - -#define gaim_notify_searchresults purple_notify_searchresults -#define gaim_notify_searchresults_free purple_notify_searchresults_free -#define gaim_notify_searchresults_new_rows purple_notify_searchresults_new_rows -#define gaim_notify_searchresults_button_add purple_notify_searchresults_button_add -#define gaim_notify_searchresults_button_add_labeled purple_notify_searchresults_button_add_labeled -#define gaim_notify_searchresults_new purple_notify_searchresults_new -#define gaim_notify_searchresults_column_new purple_notify_searchresults_column_new -#define gaim_notify_searchresults_column_add purple_notify_searchresults_column_add -#define gaim_notify_searchresults_row_add purple_notify_searchresults_row_add -#define gaim_notify_searchresults_get_rows_count purple_notify_searchresults_get_rows_count -#define gaim_notify_searchresults_get_columns_count purple_notify_searchresults_get_columns_count -#define gaim_notify_searchresults_row_get purple_notify_searchresults_row_get -#define gaim_notify_searchresults_column_get_title purple_notify_searchresults_column_get_title - -#define gaim_notify_message purple_notify_message -#define gaim_notify_email purple_notify_email -#define gaim_notify_emails purple_notify_emails -#define gaim_notify_formatted purple_notify_formatted -#define gaim_notify_userinfo purple_notify_userinfo - -#define gaim_notify_user_info_new purple_notify_user_info_new -#define gaim_notify_user_info_destroy purple_notify_user_info_destroy -#define gaim_notify_user_info_get_entries purple_notify_user_info_get_entries -#define gaim_notify_user_info_get_text_with_newline purple_notify_user_info_get_text_with_newline -#define gaim_notify_user_info_add_pair purple_notify_user_info_add_pair -#define gaim_notify_user_info_prepend_pair purple_notify_user_info_prepend_pair -#define gaim_notify_user_info_remove_entry purple_notify_user_info_remove_entry -#define gaim_notify_user_info_entry_new purple_notify_user_info_entry_new -#define gaim_notify_user_info_add_section_break purple_notify_user_info_add_section_break -#define gaim_notify_user_info_add_section_header purple_notify_user_info_add_section_header -#define gaim_notify_user_info_remove_last_item purple_notify_user_info_remove_last_item -#define gaim_notify_user_info_entry_get_label purple_notify_user_info_entry_get_label -#define gaim_notify_user_info_entry_set_label purple_notify_user_info_entry_set_label -#define gaim_notify_user_info_entry_get_value purple_notify_user_info_entry_get_value -#define gaim_notify_user_info_entry_set_value purple_notify_user_info_entry_set_value -#define gaim_notify_user_info_entry_get_type purple_notify_user_info_entry_get_type -#define gaim_notify_user_info_entry_set_type purple_notify_user_info_entry_set_type - -#define gaim_notify_uri purple_notify_uri -#define gaim_notify_close purple_notify_close -#define gaim_notify_close_with_handle purple_notify_close_with_handle - -#define gaim_notify_info purple_notify_info -#define gaim_notify_warning purple_notify_warning -#define gaim_notify_error purple_notify_error - -#define gaim_notify_set_ui_ops purple_notify_set_ui_ops -#define gaim_notify_get_ui_ops purple_notify_get_ui_ops - -#define gaim_notify_get_handle purple_notify_get_handle - -#define gaim_notify_init purple_notify_init -#define gaim_notify_uninit purple_notify_uninit - -/* from ntlm.h */ - -#define gaim_ntlm_gen_type1 purple_ntlm_gen_type1 -#define gaim_ntlm_parse_type2 purple_ntlm_parse_type2 -#define gaim_ntlm_gen_type3 purple_ntlm_gen_type3 - -/* from plugin.h */ - -#ifdef GAIM_PLUGINS -#ifndef PURPLE_PLUGINS -#define PURPLE_PLUGINS -#endif -#endif - -#define GaimPlugin PurplePlugin -#define GaimPluginInfo PurplePluginInfo -#define GaimPluginUiInfo PurplePluginUiInfo -#define GaimPluginLoaderInfo PurplePluginLoaderInfo -#define GaimPluginAction PurplePluginAction -#define GaimPluginPriority PurplePluginPriority - -#define GAIM_PLUGIN_UNKNOWN PURPLE_PLUGIN_UNKNOWN -#define GAIM_PLUGIN_STANDARD PURPLE_PLUGIN_STANDARD -#define GAIM_PLUGIN_LOADER PURPLE_PLUGIN_LOADER -#define GAIM_PLUGIN_PROTOCOL PURPLE_PLUGIN_PROTOCOL - -#define GaimPluginType PurplePluginType - -#define GAIM_PRIORITY_DEFAULT PURPLE_PRIORITY_DEFAULT -#define GAIM_PRIORITY_HIGHEST PURPLE_PRIORITY_HIGHEST -#define GAIM_PRIORITY_LOWEST PURPLE_PRIORITY_LOWEST - -#define GAIM_PLUGIN_FLAG_INVISIBLE PURPLE_PLUGIN_FLAG_INVISIBLE - -#define GAIM_PLUGIN_MAGIC PURPLE_PLUGIN_MAGIC - -#define GAIM_PLUGIN_LOADER_INFO PURPLE_PLUGIN_LOADER_INFO -#define GAIM_PLUGIN_HAS_PREF_FRAME PURPLE_PLUGIN_HAS_PREF_FRAME -#define GAIM_PLUGIN_UI_INFO PURPLE_PLUGIN_UI_INFO - -#define GAIM_PLUGIN_HAS_ACTIONS PURPLE_PLUGIN_HAS_ACTIONS -#define GAIM_PLUGIN_ACTIONS PURPLE_PLUGIN_ACTIONS - -#define GAIM_INIT_PLUGIN PURPLE_INIT_PLUGIN - -#define gaim_plugin_new purple_plugin_new -#define gaim_plugin_probe purple_plugin_probe -#define gaim_plugin_register purple_plugin_register -#define gaim_plugin_load purple_plugin_load -#define gaim_plugin_unload purple_plugin_unload -#define gaim_plugin_reload purple_plugin_reload -#define gaim_plugin_destroy purple_plugin_destroy -#define gaim_plugin_is_loaded purple_plugin_is_loaded -#define gaim_plugin_is_unloadable purple_plugin_is_unloadable -#define gaim_plugin_get_id purple_plugin_get_id -#define gaim_plugin_get_name purple_plugin_get_name -#define gaim_plugin_get_version purple_plugin_get_version -#define gaim_plugin_get_summary purple_plugin_get_summary -#define gaim_plugin_get_description purple_plugin_get_description -#define gaim_plugin_get_author purple_plugin_get_author -#define gaim_plugin_get_homepage purple_plugin_get_homepage - -#define gaim_plugin_ipc_register purple_plugin_ipc_register -#define gaim_plugin_ipc_unregister purple_plugin_ipc_unregister -#define gaim_plugin_ipc_unregister_all purple_plugin_ipc_unregister_all -#define gaim_plugin_ipc_get_params purple_plugin_ipc_get_params -#define gaim_plugin_ipc_call purple_plugin_ipc_call - -#define gaim_plugins_add_search_path purple_plugins_add_search_path -#define gaim_plugins_unload_all purple_plugins_unload_all -#define gaim_plugins_destroy_all purple_plugins_destroy_all -#define gaim_plugins_save_loaded purple_plugins_save_loaded -#define gaim_plugins_load_saved purple_plugins_load_saved -#define gaim_plugins_probe purple_plugins_probe -#define gaim_plugins_enabled purple_plugins_enabled - -#define gaim_plugins_register_probe_notify_cb purple_plugins_register_probe_notify_cb -#define gaim_plugins_unregister_probe_notify_cb purple_plugins_unregister_probe_notify_cb -#define gaim_plugins_register_load_notify_cb purple_plugins_register_load_notify_cb -#define gaim_plugins_unregister_load_notify_cb purple_plugins_unregister_load_notify_cb -#define gaim_plugins_register_unload_notify_cb purple_plugins_register_unload_notify_cb -#define gaim_plugins_unregister_unload_notify_cb purple_plugins_unregister_unload_notify_cb - -#define gaim_plugins_find_with_name purple_plugins_find_with_name -#define gaim_plugins_find_with_filename purple_plugins_find_with_filename -#define gaim_plugins_find_with_basename purple_plugins_find_with_basename -#define gaim_plugins_find_with_id purple_plugins_find_with_id - -#define gaim_plugins_get_loaded purple_plugins_get_loaded -#define gaim_plugins_get_protocols purple_plugins_get_protocols -#define gaim_plugins_get_all purple_plugins_get_all - -#define gaim_plugins_get_handle purple_plugins_get_handle -#define gaim_plugins_init purple_plugins_init -#define gaim_plugins_uninit purple_plugins_uninit - -#define gaim_plugin_action_new purple_plugin_action_new -#define gaim_plugin_action_free purple_plugin_action_free - -/* pluginpref.h */ - -#define GaimPluginPrefFrame PurplePluginPrefFrame -#define GaimPluginPref PurplePluginPref - -#define GAIM_STRING_FORMAT_TYPE_NONE PURPLE_STRING_FORMAT_TYPE_NONE -#define GAIM_STRING_FORMAT_TYPE_MULTILINE PURPLE_STRING_FORMAT_TYPE_MULTILINE -#define GAIM_STRING_FORMAT_TYPE_HTML PURPLE_STRING_FORMAT_TYPE_HTML - -#define GaimStringFormatType PurpleStringFormatType - -#define GAIM_PLUGIN_PREF_NONE PURPLE_PLUGIN_PREF_NONE -#define GAIM_PLUGIN_PREF_CHOICE PURPLE_PLUGIN_PREF_CHOICE -#define GAIM_PLUGIN_PREF_INFO PURPLE_PLUGIN_PREF_INFO -#define GAIM_PLUGIN_PREF_STRING_FORMAT PURPLE_PLUGIN_PREF_STRING_FORMAT - -#define GaimPluginPrefType PurplePluginPrefType - -#define gaim_plugin_pref_frame_new purple_plugin_pref_frame_new -#define gaim_plugin_pref_frame_destroy purple_plugin_pref_frame_destroy -#define gaim_plugin_pref_frame_add purple_plugin_pref_frame_add -#define gaim_plugin_pref_frame_get_prefs purple_plugin_pref_frame_get_prefs - -#define gaim_plugin_pref_new purple_plugin_pref_new -#define gaim_plugin_pref_new_with_name purple_plugin_pref_new_with_name -#define gaim_plugin_pref_new_with_label purple_plugin_pref_new_with_label -#define gaim_plugin_pref_new_with_name_and_label purple_plugin_pref_new_with_name_and_label -#define gaim_plugin_pref_destroy purple_plugin_pref_destroy -#define gaim_plugin_pref_set_name purple_plugin_pref_set_name -#define gaim_plugin_pref_get_name purple_plugin_pref_get_name -#define gaim_plugin_pref_set_label purple_plugin_pref_set_label -#define gaim_plugin_pref_get_label purple_plugin_pref_get_label -#define gaim_plugin_pref_set_bounds purple_plugin_pref_set_bounds -#define gaim_plugin_pref_get_bounds purple_plugin_pref_get_bounds -#define gaim_plugin_pref_set_type purple_plugin_pref_set_type -#define gaim_plugin_pref_get_type purple_plugin_pref_get_type -#define gaim_plugin_pref_add_choice purple_plugin_pref_add_choice -#define gaim_plugin_pref_get_choices purple_plugin_pref_get_choices -#define gaim_plugin_pref_set_max_length purple_plugin_pref_set_max_length -#define gaim_plugin_pref_get_max_length purple_plugin_pref_get_max_length -#define gaim_plugin_pref_set_masked purple_plugin_pref_set_masked -#define gaim_plugin_pref_get_masked purple_plugin_pref_get_masked -#define gaim_plugin_pref_set_format_type purple_plugin_pref_set_format_type -#define gaim_plugin_pref_get_format_type purple_plugin_pref_get_format_type - -/* from pounce.h */ - -#define GaimPounce PurplePounce - -#define GAIM_POUNCE_NONE PURPLE_POUNCE_NONE -#define GAIM_POUNCE_SIGNON PURPLE_POUNCE_SIGNON -#define GAIM_POUNCE_SIGNOFF PURPLE_POUNCE_SIGNOFF -#define GAIM_POUNCE_AWAY PURPLE_POUNCE_AWAY -#define GAIM_POUNCE_AWAY_RETURN PURPLE_POUNCE_AWAY_RETURN -#define GAIM_POUNCE_IDLE PURPLE_POUNCE_IDLE -#define GAIM_POUNCE_IDLE_RETURN PURPLE_POUNCE_IDLE_RETURN -#define GAIM_POUNCE_TYPING PURPLE_POUNCE_TYPING -#define GAIM_POUNCE_TYPED PURPLE_POUNCE_TYPED -#define GAIM_POUNCE_TYPING_STOPPED PURPLE_POUNCE_TYPING_STOPPED -#define GAIM_POUNCE_MESSAGE_RECEIVED PURPLE_POUNCE_MESSAGE_RECEIVED -#define GaimPounceEvent PurplePounceEvent - -#define GAIM_POUNCE_OPTION_NONE PURPLE_POUNCE_OPTION_NONE -#define GAIM_POUNCE_OPTION_AWAY PURPLE_POUNCE_OPTION_AWAY -#define GaimPounceOption PurplePounceOption - -#define GaimPounceCb PurplePounceCb - -#define gaim_pounce_new purple_pounce_new -#define gaim_pounce_destroy purple_pounce_destroy -#define gaim_pounce_destroy_all_by_account purple_pounce_destroy_all_by_account -#define gaim_pounce_set_events purple_pounce_set_events -#define gaim_pounce_set_options purple_pounce_set_options -#define gaim_pounce_set_pouncer purple_pounce_set_pouncer -#define gaim_pounce_set_pouncee purple_pounce_set_pouncee -#define gaim_pounce_set_save purple_pounce_set_save -#define gaim_pounce_action_register purple_pounce_action_register -#define gaim_pounce_action_set_enabled purple_pounce_action_set_enabled -#define gaim_pounce_action_set_attribute purple_pounce_action_set_attribute -#define gaim_pounce_set_data purple_pounce_set_data -#define gaim_pounce_get_events purple_pounce_get_events -#define gaim_pounce_get_options purple_pounce_get_options -#define gaim_pounce_get_pouncer purple_pounce_get_pouncer -#define gaim_pounce_get_pouncee purple_pounce_get_pouncee -#define gaim_pounce_get_save purple_pounce_get_save -#define gaim_pounce_action_is_enabled purple_pounce_action_is_enabled -#define gaim_pounce_action_get_attribute purple_pounce_action_get_attribute -#define gaim_pounce_get_data purple_pounce_get_data -#define gaim_pounce_execute purple_pounce_execute - -#define gaim_find_pounce purple_find_pounce -#define gaim_pounces_load purple_pounces_load -#define gaim_pounces_register_handler purple_pounces_register_handler -#define gaim_pounces_unregister_handler purple_pounces_unregister_handler -#define gaim_pounces_get_all purple_pounces_get_all -#define gaim_pounces_get_handle purple_pounces_get_handle -#define gaim_pounces_init purple_pounces_init -#define gaim_pounces_uninit purple_pounces_uninit - -/* from prefs.h */ - - -#define GAIM_PREF_NONE PURPLE_PREF_NONE -#define GAIM_PREF_BOOLEAN PURPLE_PREF_BOOLEAN -#define GAIM_PREF_INT PURPLE_PREF_INT -#define GAIM_PREF_STRING PURPLE_PREF_STRING -#define GAIM_PREF_STRING_LIST PURPLE_PREF_STRING_LIST -#define GAIM_PREF_PATH PURPLE_PREF_PATH -#define GAIM_PREF_PATH_LIST PURPLE_PREF_PATH_LIST -#define GaimPrefType PurplePrefType - -#define GaimPrefCallback PurplePrefCallback - -#define gaim_prefs_get_handle purple_prefs_get_handle -#define gaim_prefs_init purple_prefs_init -#define gaim_prefs_uninit purple_prefs_uninit -#define gaim_prefs_add_none purple_prefs_add_none -#define gaim_prefs_add_bool purple_prefs_add_bool -#define gaim_prefs_add_int purple_prefs_add_int -#define gaim_prefs_add_string purple_prefs_add_string -#define gaim_prefs_add_string_list purple_prefs_add_string_list -#define gaim_prefs_add_path purple_prefs_add_path -#define gaim_prefs_add_path_list purple_prefs_add_path_list -#define gaim_prefs_remove purple_prefs_remove -#define gaim_prefs_rename purple_prefs_rename -#define gaim_prefs_rename_boolean_toggle purple_prefs_rename_boolean_toggle -#define gaim_prefs_destroy purple_prefs_destroy -#define gaim_prefs_set_generic purple_prefs_set_generic -#define gaim_prefs_set_bool purple_prefs_set_bool -#define gaim_prefs_set_int purple_prefs_set_int -#define gaim_prefs_set_string purple_prefs_set_string -#define gaim_prefs_set_string_list purple_prefs_set_string_list -#define gaim_prefs_set_path purple_prefs_set_path -#define gaim_prefs_set_path_list purple_prefs_set_path_list -#define gaim_prefs_exists purple_prefs_exists -#define gaim_prefs_get_type purple_prefs_get_type -#define gaim_prefs_get_bool purple_prefs_get_bool -#define gaim_prefs_get_int purple_prefs_get_int -#define gaim_prefs_get_string purple_prefs_get_string -#define gaim_prefs_get_string_list purple_prefs_get_string_list -#define gaim_prefs_get_path purple_prefs_get_path -#define gaim_prefs_get_path_list purple_prefs_get_path_list -#define gaim_prefs_connect_callback purple_prefs_connect_callback -#define gaim_prefs_disconnect_callback purple_prefs_disconnect_callback -#define gaim_prefs_disconnect_by_handle purple_prefs_disconnect_by_handle -#define gaim_prefs_trigger_callback purple_prefs_trigger_callback -#define gaim_prefs_load purple_prefs_load -#define gaim_prefs_update_old purple_prefs_update_old - -/* from privacy.h */ - -#define GAIM_PRIVACY_ALLOW_ALL PURPLE_PRIVACY_ALLOW_ALL -#define GAIM_PRIVACY_DENY_ALL PURPLE_PRIVACY_DENY_ALL -#define GAIM_PRIVACY_ALLOW_USERS PURPLE_PRIVACY_ALLOW_USERS -#define GAIM_PRIVACY_DENY_USERS PURPLE_PRIVACY_DENY_USERS -#define GAIM_PRIVACY_ALLOW_BUDDYLIST PURPLE_PRIVACY_ALLOW_BUDDYLIST -#define GaimPrivacyType PurplePrivacyType - -#define GaimPrivacyUiOps PurplePrivacyUiOps - -#define gaim_privacy_permit_add purple_privacy_permit_add -#define gaim_privacy_permit_remove purple_privacy_permit_remove -#define gaim_privacy_deny_add purple_privacy_deny_add -#define gaim_privacy_deny_remove purple_privacy_deny_remove -#define gaim_privacy_allow purple_privacy_allow -#define gaim_privacy_deny purple_privacy_deny -#define gaim_privacy_check purple_privacy_check -#define gaim_privacy_set_ui_ops purple_privacy_set_ui_ops -#define gaim_privacy_get_ui_ops purple_privacy_get_ui_ops -#define gaim_privacy_init purple_privacy_init - -/* from proxy.h */ - -#define GAIM_PROXY_USE_GLOBAL PURPLE_PROXY_USE_GLOBAL -#define GAIM_PROXY_NONE PURPLE_PROXY_NONE -#define GAIM_PROXY_HTTP PURPLE_PROXY_HTTP -#define GAIM_PROXY_SOCKS4 PURPLE_PROXY_SOCKS4 -#define GAIM_PROXY_SOCKS5 PURPLE_PROXY_SOCKS5 -#define GAIM_PROXY_USE_ENVVAR PURPLE_PROXY_USE_ENVVAR -#define GaimProxyType PurpleProxyType - -#define GaimProxyInfo PurpleProxyInfo - -#define GaimProxyConnectData PurpleProxyConnectData -#define GaimProxyConnectFunction PurpleProxyConnectFunction - -#define gaim_proxy_info_new purple_proxy_info_new -#define gaim_proxy_info_destroy purple_proxy_info_destroy -#define gaim_proxy_info_set_type purple_proxy_info_set_type -#define gaim_proxy_info_set_host purple_proxy_info_set_host -#define gaim_proxy_info_set_port purple_proxy_info_set_port -#define gaim_proxy_info_set_username purple_proxy_info_set_username -#define gaim_proxy_info_set_password purple_proxy_info_set_password -#define gaim_proxy_info_get_type purple_proxy_info_get_type -#define gaim_proxy_info_get_host purple_proxy_info_get_host -#define gaim_proxy_info_get_port purple_proxy_info_get_port -#define gaim_proxy_info_get_username purple_proxy_info_get_username -#define gaim_proxy_info_get_password purple_proxy_info_get_password - -#define gaim_global_proxy_get_info purple_global_proxy_get_info -#define gaim_proxy_get_handle purple_proxy_get_handle -#define gaim_proxy_init purple_proxy_init -#define gaim_proxy_uninit purple_proxy_uninit -#define gaim_proxy_get_setup purple_proxy_get_setup - -#define gaim_proxy_connect purple_proxy_connect -#define gaim_proxy_connect_socks5 purple_proxy_connect_socks5 -#define gaim_proxy_connect_cancel purple_proxy_connect_cancel -#define gaim_proxy_connect_cancel_with_handle purple_proxy_connect_cancel_with_handle - -/* from prpl.h */ - -#define GaimPluginProtocolInfo PurplePluginProtocolInfo - -#define GAIM_ICON_SCALE_DISPLAY PURPLE_ICON_SCALE_DISPLAY -#define GAIM_ICON_SCALE_SEND PURPLE_ICON_SCALE_SEND -#define GaimIconScaleRules PurpleIconScaleRules - -#define GaimBuddyIconSpec PurpleBuddyIconSpec - -#define GaimProtocolOptions PurpleProtocolOptions - -#define GAIM_IS_PROTOCOL_PLUGIN PURPLE_IS_PROTOCOL_PLUGIN - -#define GAIM_PLUGIN_PROTOCOL_INFO PURPLE_PLUGIN_PROTOCOL_INFO - -#define gaim_prpl_got_account_idle purple_prpl_got_account_idle -#define gaim_prpl_got_account_login_time purple_prpl_got_account_login_time -#define gaim_prpl_got_account_status purple_prpl_got_account_status -#define gaim_prpl_got_user_idle purple_prpl_got_user_idle -#define gaim_prpl_got_user_login_time purple_prpl_got_user_login_time -#define gaim_prpl_got_user_status purple_prpl_got_user_status -#define gaim_prpl_change_account_status purple_prpl_change_account_status -#define gaim_prpl_get_statuses purple_prpl_get_statuses - -#define gaim_find_prpl purple_find_prpl - -/* from request.h */ - -#define GAIM_DEFAULT_ACTION_NONE PURPLE_DEFAULT_ACTION_NONE - -#define GAIM_REQUEST_INPUT PURPLE_REQUEST_INPUT -#define GAIM_REQUEST_CHOICE PURPLE_REQUEST_CHOICE -#define GAIM_REQUEST_ACTION PURPLE_REQUEST_ACTION -#define GAIM_REQUEST_FIELDS PURPLE_REQUEST_FIELDS -#define GAIM_REQUEST_FILE PURPLE_REQUEST_FILE -#define GAIM_REQUEST_FOLDER PURPLE_REQUEST_FOLDER -#define GaimRequestType PurpleRequestType - -#define GAIM_REQUEST_FIELD_NONE PURPLE_REQUEST_FIELD_NONE -#define GAIM_REQUEST_FIELD_STRING PURPLE_REQUEST_FIELD_STRING -#define GAIM_REQUEST_FIELD_INTEGER PURPLE_REQUEST_FIELD_INTEGER -#define GAIM_REQUEST_FIELD_BOOLEAN PURPLE_REQUEST_FIELD_BOOLEAN -#define GAIM_REQUEST_FIELD_CHOICE PURPLE_REQUEST_FIELD_CHOICE -#define GAIM_REQUEST_FIELD_LIST PURPLE_REQUEST_FIELD_LIST -#define GAIM_REQUEST_FIELD_LABEL PURPLE_REQUEST_FIELD_LABEL -#define GAIM_REQUEST_FIELD_IMAGE PURPLE_REQUEST_FIELD_IMAGE -#define GAIM_REQUEST_FIELD_ACCOUNT PURPLE_REQUEST_FIELD_ACCOUNT -#define GaimRequestFieldType PurpleRequestFieldType - -#define GaimRequestFields PurpleRequestFields - -#define GaimRequestFieldGroup PurpleRequestFieldGroup - -#define GaimRequestField PurpleRequestField - -#define GaimRequestUiOps PurpleRequestUiOps - -#define GaimRequestInputCb PurpleRequestInputCb -#define GaimRequestActionCb PurpleRequestActionCb -#define GaimRequestChoiceCb PurpleRequestChoiceCb -#define GaimRequestFieldsCb PurpleRequestFieldsCb -#define GaimRequestFileCb PurpleRequestFileCb - -#define gaim_request_fields_new purple_request_fields_new -#define gaim_request_fields_destroy purple_request_fields_destroy -#define gaim_request_fields_add_group purple_request_fields_add_group -#define gaim_request_fields_get_groups purple_request_fields_get_groups -#define gaim_request_fields_exists purple_request_fields_exists -#define gaim_request_fields_get_required purple_request_fields_get_required -#define gaim_request_fields_is_field_required purple_request_fields_is_field_required -#define gaim_request_fields_all_required_filled purple_request_fields_all_required_filled -#define gaim_request_fields_get_field purple_request_fields_get_field -#define gaim_request_fields_get_string purple_request_fields_get_string -#define gaim_request_fields_get_integer purple_request_fields_get_integer -#define gaim_request_fields_get_bool purple_request_fields_get_bool -#define gaim_request_fields_get_choice purple_request_fields_get_choice -#define gaim_request_fields_get_account purple_request_fields_get_account - -#define gaim_request_field_group_new purple_request_field_group_new -#define gaim_request_field_group_destroy purple_request_field_group_destroy -#define gaim_request_field_group_add_field purple_request_field_group_add_field -#define gaim_request_field_group_get_title purple_request_field_group_get_title -#define gaim_request_field_group_get_fields purple_request_field_group_get_fields - -#define gaim_request_field_new purple_request_field_new -#define gaim_request_field_destroy purple_request_field_destroy -#define gaim_request_field_set_label purple_request_field_set_label -#define gaim_request_field_set_visible purple_request_field_set_visible -#define gaim_request_field_set_type_hint purple_request_field_set_type_hint -#define gaim_request_field_set_required purple_request_field_set_required -#define gaim_request_field_get_type purple_request_field_get_type -#define gaim_request_field_get_id purple_request_field_get_id -#define gaim_request_field_get_label purple_request_field_get_label -#define gaim_request_field_is_visible purple_request_field_is_visible -#define gaim_request_field_get_type_hint purple_request_field_get_type_hint -#define gaim_request_field_is_required purple_request_field_is_required - -#define gaim_request_field_string_new purple_request_field_string_new -#define gaim_request_field_string_set_default_value \ - purple_request_field_string_set_default_value -#define gaim_request_field_string_set_value purple_request_field_string_set_value -#define gaim_request_field_string_set_masked purple_request_field_string_set_masked -#define gaim_request_field_string_set_editable purple_request_field_string_set_editable -#define gaim_request_field_string_get_default_value \ - purple_request_field_string_get_default_value -#define gaim_request_field_string_get_value purple_request_field_string_get_value -#define gaim_request_field_string_is_multiline purple_request_field_string_is_multiline -#define gaim_request_field_string_is_masked purple_request_field_string_is_masked -#define gaim_request_field_string_is_editable purple_request_field_string_is_editable - -#define gaim_request_field_int_new purple_request_field_int_new -#define gaim_request_field_int_set_default_value \ - purple_request_field_int_set_default_value -#define gaim_request_field_int_set_value purple_request_field_int_set_value -#define gaim_request_field_int_get_default_value \ - purple_request_field_int_get_default_value -#define gaim_request_field_int_get_value purple_request_field_int_get_value - -#define gaim_request_field_bool_new purple_request_field_bool_new -#define gaim_request_field_bool_set_default_value \ - purple_request_field_book_set_default_value -#define gaim_request_field_bool_set_value purple_request_field_bool_set_value -#define gaim_request_field_bool_get_default_value \ - purple_request_field_bool_get_default_value -#define gaim_request_field_bool_get_value purple_request_field_bool_get_value - -#define gaim_request_field_choice_new purple_request_field_choice_new -#define gaim_request_field_choice_add purple_request_field_choice_add -#define gaim_request_field_choice_set_default_value \ - purple_request_field_choice_set_default_value -#define gaim_request_field_choice_set_value purple_request_field_choice_set_value -#define gaim_request_field_choice_get_default_value \ - purple_request_field_choice_get_default_value -#define gaim_request_field_choice_get_value purple_request_field_choice_get_value -#define gaim_request_field_choice_get_labels purple_request_field_choice_get_labels - -#define gaim_request_field_list_new purple_request_field_list_new -#define gaim_request_field_list_set_multi_select purple_request_field_list_set_multi_select -#define gaim_request_field_list_get_multi_select purple_request_field_list_get_multi_select -#define gaim_request_field_list_get_data purple_request_field_list_get_data -#define gaim_request_field_list_add purple_request_field_list_add -#define gaim_request_field_list_add_selected purple_request_field_list_add_selected -#define gaim_request_field_list_clear_selected purple_request_field_list_clear_selected -#define gaim_request_field_list_set_selected purple_request_field_list_set_selected -#define gaim_request_field_list_is_selected purple_request_field_list_is_selected -#define gaim_request_field_list_get_selected purple_request_field_list_get_selected -#define gaim_request_field_list_get_items purple_request_field_list_get_items - -#define gaim_request_field_label_new purple_request_field_label_new - -#define gaim_request_field_image_new purple_request_field_image_new -#define gaim_request_field_image_set_scale purple_request_field_image_set_scale -#define gaim_request_field_image_get_buffer purple_request_field_image_get_buffer -#define gaim_request_field_image_get_size purple_request_field_image_get_size -#define gaim_request_field_image_get_scale_x purple_request_field_image_get_scale_x -#define gaim_request_field_image_get_scale_y purple_request_field_image_get_scale_y - -#define gaim_request_field_account_new purple_request_field_account_new -#define gaim_request_field_account_set_default_value purple_request_field_account_set_default_value -#define gaim_request_field_account_set_value purple_request_field_account_set_value -#define gaim_request_field_account_set_show_all purple_request_field_account_set_show_all -#define gaim_request_field_account_set_filter purple_request_field_account_set_filter -#define gaim_request_field_account_get_default_value purple_request_field_account_get_default_value -#define gaim_request_field_account_get_value purple_request_field_account_get_value -#define gaim_request_field_account_get_show_all purple_request_field_account_get_show_all -#define gaim_request_field_account_get_filter purple_request_field_account_get_filter - -#define gaim_request_input purple_request_input -#define gaim_request_choice purple_request_choice -#define gaim_request_choice_varg purple_request_choice_varg -#define gaim_request_action purple_request_action -#define gaim_request_action_varg purple_request_action_varg -#define gaim_request_fields(handle, title, primary, secondary, fields, ok_text, ok_cb, cancel_text, cancel_cb, user_data) purple_request_fields(handle, title, primary, secondary, fields, ok_text, ok_cb, cancel_text, cancel_cb, NULL, NULL, NULL, user_data) -#define gaim_request_close purple_request_close -#define gaim_request_close_with_handle purple_request_close_with_handle - -#define gaim_request_yes_no purple_request_yes_no -#define gaim_request_ok_cancel purple_request_ok_cancel -#define gaim_request_accept_cancel purple_request_accept_cancel - -#define gaim_request_file purple_request_file -#define gaim_request_folder purple_request_folder - -#define gaim_request_set_ui_ops purple_request_set_ui_ops -#define gaim_request_get_ui_ops purple_request_get_ui_ops - -/* from roomlist.h */ - -#define GaimRoomlist PurpleRoomlist -#define GaimRoomlistRoom PurpleRoomlistRoom -#define GaimRoomlistField PurpleRoomlistField -#define GaimRoomlistUiOps PurpleRoomlistUiOps - -#define GAIM_ROOMLIST_ROOMTYPE_CATEGORY PURPLE_ROOMLIST_ROOMTYPE_CATEGORY -#define GAIM_ROOMLIST_ROOMTYPE_ROOM PURPLE_ROOMLIST_ROOMTYPE_ROOM -#define GaimRoomlistRoomType PurpleRoomlistRoomType - -#define GAIM_ROOMLIST_FIELD_BOOL PURPLE_ROOMLIST_BOOL -#define GAIM_ROOMLIST_FIELD_INT PURPLE_ROOMLIST_INT -#define GAIM_ROOMLIST_FIELD_STRING PURPLE_ROOMLIST_STRING -#define GaimRoomlistFieldType PurpleRoomlistFieldType - -#define gaim_roomlist_show_with_account purple_roomlist_show_with_account -#define gaim_roomlist_new purple_roomlist_new -#define gaim_roomlist_ref purple_roomlist_ref -#define gaim_roomlist_unref purple_roomlist_unref -#define gaim_roomlist_set_fields purple_roomlist_set_fields -#define gaim_roomlist_set_in_progress purple_roomlist_set_in_progress -#define gaim_roomlist_get_in_progress purple_roomlist_get_in_progress -#define gaim_roomlist_room_add purple_roomlist_room_add - -#define gaim_roomlist_get_list purple_roomlist_get_list -#define gaim_roomlist_cancel_get_list purple_roomlist_cancel_get_list -#define gaim_roomlist_expand_category purple_roomlist_expand_category - -#define gaim_roomlist_room_new purple_roomlist_room_new -#define gaim_roomlist_room_add_field purple_roomlist_room_add_field -#define gaim_roomlist_room_join purple_roomlist_room_join -#define gaim_roomlist_field_new purple_roomlist_field_new - -#define gaim_roomlist_set_ui_ops purple_roomlist_set_ui_ops -#define gaim_roomlist_get_ui_ops purple_roomlist_get_ui_ops - -/* from savedstatuses.h */ - -#define GaimSavedStatus PurpleSavedStatus -#define GaimSavedStatusSub PurpleSavedStatusSub - -#define gaim_savedstatus_new purple_savedstatus_new -#define gaim_savedstatus_set_title purple_savedstatus_set_title -#define gaim_savedstatus_set_type purple_savedstatus_set_type -#define gaim_savedstatus_set_message purple_savedstatus_set_message -#define gaim_savedstatus_set_substatus purple_savedstatus_set_substatus -#define gaim_savedstatus_unset_substatus purple_savedstatus_unset_substatus -#define gaim_savedstatus_delete purple_savedstatus_delete - -#define gaim_savedstatuses_get_all purple_savedstatuses_get_all -#define gaim_savedstatuses_get_popular purple_savedstatuses_get_popular -#define gaim_savedstatus_get_current purple_savedstatus_get_current -#define gaim_savedstatus_get_default purple_savedstatus_get_default -#define gaim_savedstatus_get_idleaway purple_savedstatus_get_idleaway -#define gaim_savedstatus_is_idleaway purple_savedstatus_is_idleaway -#define gaim_savedstatus_set_idleaway purple_savedstatus_set_idleaway -#define gaim_savedstatus_get_startup purple_savedstatus_get_startup -#define gaim_savedstatus_find purple_savedstatus_find -#define gaim_savedstatus_find_by_creation_time purple_savedstatus_find_by_creation_time -#define gaim_savedstatus_find_transient_by_type_and_message \ - purple_savedstatus_find_transient_by_type_and_message - -#define gaim_savedstatus_is_transient purple_savedstatus_is_transient -#define gaim_savedstatus_get_title purple_savedstatus_get_title -#define gaim_savedstatus_get_type purple_savedstatus_get_type -#define gaim_savedstatus_get_message purple_savedstatus_get_message -#define gaim_savedstatus_get_creation_time purple_savedstatus_get_creation_time -#define gaim_savedstatus_has_substatuses purple_savedstatus_has_substatuses -#define gaim_savedstatus_get_substatus purple_savedstatus_get_substatus -#define gaim_savedstatus_substatus_get_type purple_savedstatus_substatus_get_type -#define gaim_savedstatus_substatus_get_message purple_savedstatus_substatus_get_message -#define gaim_savedstatus_activate purple_savedstatus_activate -#define gaim_savedstatus_activate_for_account purple_savedstatus_activate_for_account - -#define gaim_savedstatuses_get_handle purple_savedstatuses_get_handle -#define gaim_savedstatuses_init purple_savedstatuses_init -#define gaim_savedstatuses_uninit purple_savedstatuses_uninit - -/* from signals.h */ - -#define GAIM_CALLBACK PURPLE_CALLBACK - -#define GaimCallback PurpleCallback -#define GaimSignalMarshalFunc PurpleSignalMarshalFunc - -#define GAIM_SIGNAL_PRIORITY_DEFAULT PURPLE_SIGNAL_PRIORITY_DEFAULT -#define GAIM_SIGNAL_PRIORITY_HIGHEST PURPLE_SIGNAL_PRIORITY_HIGHEST -#define GAIM_SIGNAL_PRIORITY_LOWEST PURPLE_SIGNAL_PRIORITY_LOWEST - -#define gaim_signal_register purple_signal_register -#define gaim_signal_unregister purple_signal_unregister - -#define gaim_signals_unregister_by_instance purple_signals_unregister_by_instance - -#define gaim_signal_get_values purple_signal_get_values -#define gaim_signal_connect_priority purple_signal_connect_priority -#define gaim_signal_connect purple_signal_connect -#define gaim_signal_connect_priority_vargs purple_signal_connect_priority_vargs -#define gaim_signal_connect_vargs purple_signal_connect_vargs -#define gaim_signal_disconnect purple_signal_disconnect - -#define gaim_signals_disconnect_by_handle purple_signals_disconnect_by_handle - -#define gaim_signal_emit purple_signal_emit -#define gaim_signal_emit_vargs purple_signal_emit_vargs -#define gaim_signal_emit_return_1 purple_signal_emit_vargs -#define gaim_signal_emit_vargs_return_1 purple_signal_emit_vargs_return_1 - -#define gaim_signals_init purple_signals_init -#define gaim_signals_uninit purple_signals_uninit - -#define gaim_marshal_VOID \ - purple_marshal_VOID -#define gaim_marshal_VOID__INT \ - purple_marshal_VOID__INT -#define gaim_marshal_VOID__INT_INT \ - purple_marshal_VOID_INT_INT -#define gaim_marshal_VOID__POINTER \ - purple_marshal_VOID__POINTER -#define gaim_marshal_VOID__POINTER_UINT \ - purple_marshal_VOID__POINTER_UINT -#define gaim_marshal_VOID__POINTER_INT_INT \ - purple_marshal_VOID__POINTER_INT_INT -#define gaim_marshal_VOID__POINTER_POINTER \ - purple_marshal_VOID__POINTER_POINTER -#define gaim_marshal_VOID__POINTER_POINTER_UINT \ - purple_marshal_VOID__POINTER_POINTER_UINT -#define gaim_marshal_VOID__POINTER_POINTER_UINT_UINT \ - purple_marshal_VOID__POINTER_POINTER_UINT_UINT -#define gaim_marshal_VOID__POINTER_POINTER_POINTER \ - purple_marshal_VOID__POINTER_POINTER_POINTER -#define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER \ - purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER -#define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER \ - purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER -#define gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT \ - purple_marshal_VOID__POINTER_POINTER_POINTER_UINT -#define gaim_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT \ - purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT -#define gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT \ - purple_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT - -#define gaim_marshal_INT__INT \ - purple_marshal_INT__INT -#define gaim_marshal_INT__INT_INT \ - purple_marshal_INT__INT_INT -#define gaim_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER \ - purple_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER - -#define gaim_marshal_BOOLEAN__POINTER \ - purple_marshal_BOOLEAN__POINTER -#define gaim_marshal_BOOLEAN__POINTER_POINTER \ - purple_marshal_BOOLEAN__POINTER_POINTER -#define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER \ - purple_marshal_BOOLEAN__POINTER_POINTER_POINTER -#define gaim_marshal_BOOLEAN__POINTER_POINTER_UINT \ - purple_marshal_BOOLEAN__POINTER_POINTER_UINT -#define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT \ - purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT -#define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER \ - purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER -#define gaim_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER \ - purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER - -#define gaim_marshal_BOOLEAN__INT_POINTER \ - purple_marshal_BOOLEAN__INT_POINTER - -#define gaim_marshal_POINTER__POINTER_INT \ - purple_marshal_POINTER__POINTER_INT -#define gaim_marshal_POINTER__POINTER_INT64 \ - purple_marshal_POINTER__POINTER_INT64 -#define gaim_marshal_POINTER__POINTER_INT_BOOLEAN \ - purple_marshal_POINTER__POINTER_INT_BOOLEAN -#define gaim_marshal_POINTER__POINTER_INT64_BOOLEAN \ - purple_marshal_POINTER__POINTER_INT64_BOOLEAN -#define gaim_marshal_POINTER__POINTER_POINTER \ - purple_marshal_POINTER__POINTER_POINTER - -/* from sound.h */ - -#define GAIM_SOUND_BUDDY_ARRIVE PURPLE_SOUND_BUDDY_ARRIVE -#define GAIM_SOUND_BUDDY_LEAVE PURPLE_SOUND_BUDDY_LEAVE -#define GAIM_SOUND_RECEIVE PURPLE_SOUND_RECEIVE -#define GAIM_SOUND_FIRST_RECEIVE PURPLE_SOUND_FIRST_RECEIVE -#define GAIM_SOUND_SEND PURPLE_SOUND_SEND -#define GAIM_SOUND_CHAT_JOIN PURPLE_SOUND_CHAT_JOIN -#define GAIM_SOUND_CHAT_LEAVE PURPLE_SOUND_CHAT_LEAVE -#define GAIM_SOUND_CHAT_YOU_SAY PURPLE_SOUND_CHAT_YOU_SAY -#define GAIM_SOUND_CHAT_SAY PURPLE_SOUND_CHAT_SAY -#define GAIM_SOUND_POUNCE_DEFAULT PURPLE_SOUND_POUNCE_DEFAULT -#define GAIM_SOUND_CHAT_NICK PURPLE_SOUND_CHAT_NICK -#define GAIM_NUM_SOUNDS PURPLE_NUM_SOUNDS -#define GaimSoundEventID PurpleSoundEventID - -#define GaimSoundUiOps PurpleSoundUiOps - -#define gaim_sound_play_file purple_sound_play_file -#define gaim_sound_play_event purple_sound_play_event -#define gaim_sound_set_ui_ops purple_sound_set_ui_ops -#define gaim_sound_get_ui_ops purple_sound_get_ui_ops -#define gaim_sound_init purple_sound_init -#define gaim_sound_uninit purple_sound_uninit - -#define gaim_sounds_get_handle purple_sounds_get_handle - -/* from sslconn.h */ - -#define GAIM_SSL_DEFAULT_PORT PURPLE_SSL_DEFAULT_PORT - -#define GAIM_SSL_HANDSHAKE_FAILED PURPLE_SSL_HANDSHAKE_FAILED -#define GAIM_SSL_CONNECT_FAILED PURPLE_SSL_CONNECT_FAILED -#define GaimSslErrorType PurpleSslErrorType - -#define GaimSslConnection PurpleSslConnection - -#define GaimSslInputFunction PurpleSslInputFunction -#define GaimSslErrorFunction PurpleSslErrorFunction - -#define GaimSslOps PurpleSslOps - -#define gaim_ssl_is_supported purple_ssl_is_supported -#define gaim_ssl_connect purple_ssl_connect -#define gaim_ssl_connect_fd purple_ssl_connect_fd -#define gaim_ssl_input_add purple_ssl_input_add -#define gaim_ssl_close purple_ssl_close -#define gaim_ssl_read purple_ssl_read -#define gaim_ssl_write purple_ssl_write - -#define gaim_ssl_set_ops purple_ssl_set_ops -#define gaim_ssl_get_ops purple_ssl_get_ops -#define gaim_ssl_init purple_ssl_init -#define gaim_ssl_uninit purple_ssl_uninit - -/* from status.h */ - -#define GaimStatusType PurpleStatusType -#define GaimStatusAttr PurpleStatusAttr -#define GaimPresence PurplePresence -#define GaimStatus PurpleStatus - -#define GAIM_PRESENCE_CONTEXT_UNSET PURPLE_PRESENCE_CONTEXT_UNSET -#define GAIM_PRESENCE_CONTEXT_ACCOUNT PURPLE_PRESENCE_CONTEXT_ACCOUNT -#define GAIM_PRESENCE_CONTEXT_CONV PURPLE_PRESENCE_CONTEXT_CONV -#define GAIM_PRESENCE_CONTEXT_BUDDY PURPLE_PRESENCE_CONTEXT_BUDDY -#define GaimPresenceContext PurplePresenceContext - -#define GAIM_STATUS_UNSET PURPLE_STATUS_UNSET -#define GAIM_STATUS_OFFLINE PURPLE_STATUS_OFFLINE -#define GAIM_STATUS_AVAILABLE PURPLE_STATUS_AVAILABLE -#define GAIM_STATUS_UNAVAILABLE PURPLE_STATUS_UNAVAILABLE -#define GAIM_STATUS_INVISIBLE PURPLE_STATUS_INVISIBLE -#define GAIM_STATUS_AWAY PURPLE_STATUS_AWAY -#define GAIM_STATUS_EXTENDED_AWAY PURPLE_STATUS_EXTENDED_AWAY -#define GAIM_STATUS_MOBILE PURPLE_STATUS_MOBILE -#define GAIM_STATUS_NUM_PRIMITIVES PURPLE_STATUS_NUM_PRIMITIVES -#define GaimStatusPrimitive PurpleStatusPrimitive - -#define gaim_primitive_get_id_from_type purple_primitive_get_id_from_type -#define gaim_primitive_get_name_from_type purple_primitive_get_name_from_type -#define gaim_primitive_get_type_from_id purple_primitive_get_type_from_id - -#define gaim_status_type_new_full purple_status_type_new_full -#define gaim_status_type_new purple_status_type_new -#define gaim_status_type_new_with_attrs purple_status_type_new_with_attrs -#define gaim_status_type_destroy purple_status_type_destroy -#define gaim_status_type_set_primary_attr purple_status_type_set_primary_attr -#define gaim_status_type_add_attr purple_status_type_add_attr -#define gaim_status_type_add_attrs purple_status_type_add_attrs -#define gaim_status_type_add_attrs_vargs purple_status_type_add_attrs_vargs -#define gaim_status_type_get_primitive purple_status_type_get_primitive -#define gaim_status_type_get_id purple_status_type_get_id -#define gaim_status_type_get_name purple_status_type_get_name -#define gaim_status_type_is_saveable purple_status_type_is_saveable -#define gaim_status_type_is_user_settable purple_status_type_is_user_settable -#define gaim_status_type_is_independent purple_status_type_is_independent -#define gaim_status_type_is_exclusive purple_status_type_is_exclusive -#define gaim_status_type_is_available purple_status_type_is_available -#define gaim_status_type_get_primary_attr purple_status_type_get_primary_attr -#define gaim_status_type_get_attr purple_status_type_get_attr -#define gaim_status_type_get_attrs purple_status_type_get_attrs -#define gaim_status_type_find_with_id purple_status_type_find_with_id - -#define gaim_status_attr_new purple_status_attr_new -#define gaim_status_attr_destroy purple_status_attr_destroy -#define gaim_status_attr_get_id purple_status_attr_get_id -#define gaim_status_attr_get_name purple_status_attr_get_name -#define gaim_status_attr_get_value purple_status_attr_get_value - -#define gaim_status_new purple_status_new -#define gaim_status_destroy purple_status_destroy -#define gaim_status_set_active purple_status_set_active -#define gaim_status_set_active_with_attrs purple_status_set_active_with_attrs -#define gaim_status_set_active_with_attrs_list purple_status_set_active_with_attrs_list -#define gaim_status_set_attr_boolean purple_status_set_attr_boolean -#define gaim_status_set_attr_int purple_status_set_attr_int -#define gaim_status_set_attr_string purple_status_set_attr_string -#define gaim_status_get_type purple_status_get_type -#define gaim_status_get_presence purple_status_get_presence -#define gaim_status_get_id purple_status_get_id -#define gaim_status_get_name purple_status_get_name -#define gaim_status_is_independent purple_status_is_independent -#define gaim_status_is_exclusive purple_status_is_exclusive -#define gaim_status_is_available purple_status_is_available -#define gaim_status_is_active purple_status_is_active -#define gaim_status_is_online purple_status_is_online -#define gaim_status_get_attr_value purple_status_get_attr_value -#define gaim_status_get_attr_boolean purple_status_get_attr_boolean -#define gaim_status_get_attr_int purple_status_get_attr_int -#define gaim_status_get_attr_string purple_status_get_attr_string -#define gaim_status_compare purple_status_compare - -#define gaim_presence_new purple_presence_new -#define gaim_presence_new_for_account purple_presence_new_for_account -#define gaim_presence_new_for_conv purple_presence_new_for_conv -#define gaim_presence_new_for_buddy purple_presence_new_for_buddy -#define gaim_presence_destroy purple_presence_destroy -#define gaim_presence_add_status purple_presence_add_status -#define gaim_presence_add_list purple_presence_add_list -#define gaim_presence_set_status_active purple_presence_set_status_active -#define gaim_presence_switch_status purple_presence_switch_status -#define gaim_presence_set_idle purple_presence_set_idle -#define gaim_presence_set_login_time purple_presence_set_login_time -#define gaim_presence_get_context purple_presence_get_context -#define gaim_presence_get_account purple_presence_get_account -#define gaim_presence_get_conversation purple_presence_get_conversation -#define gaim_presence_get_chat_user purple_presence_get_chat_user -#define gaim_presence_get_statuses purple_presence_get_statuses -#define gaim_presence_get_status purple_presence_get_status -#define gaim_presence_get_active_status purple_presence_get_active_status -#define gaim_presence_is_available purple_presence_is_available -#define gaim_presence_is_online purple_presence_is_online -#define gaim_presence_is_status_active purple_presence_is_status_active -#define gaim_presence_is_status_primitive_active \ - purple_presence_is_status_primitive_active -#define gaim_presence_is_idle purple_presence_is_idle -#define gaim_presence_get_idle_time purple_presence_get_idle_time -#define gaim_presence_get_login_time purple_presence_get_login_time -#define gaim_presence_compare purple_presence_compare - -#define gaim_status_get_handle purple_status_get_handle -#define gaim_status_init purple_status_init -#define gaim_status_uninit purple_status_uninit - -/* from stringref.h */ - -#define GaimStringref PurpleStringref - -#define gaim_stringref_new purple_stringref_new -#define gaim_stringref_new_noref purple_stringref_new_noref -#define gaim_stringref_printf purple_stringref_printf -#define gaim_stringref_ref purple_stringref_ref -#define gaim_stringref_unref purple_stringref_unref -#define gaim_stringref_value purple_stringref_value -#define gaim_stringref_cmp purple_stringref_cmp -#define gaim_stringref_len purple_stringref_len - -/* from stun.h */ - -#define GaimStunNatDiscovery PurpleStunNatDiscovery - -#define GAIM_STUN_STATUS_UNDISCOVERED PURPLE_STUN_STATUS_UNDISCOVERED -#define GAIM_STUN_STATUS_UNKNOWN PURPLE_STUN_STATUS_UNKNOWN -#define GAIM_STUN_STATUS_DISCOVERING PURPLE_STUN_STATUS_DISCOVERING -#define GAIM_STUN_STATUS_DISCOVERED PURPLE_STUN_STATUS_DISCOVERED -#define GaimStunStatus PurpleStunStatus - -#define GAIM_STUN_NAT_TYPE_PUBLIC_IP PURPLE_STUN_NAT_TYPE_PUBLIC_IP -#define GAIM_STUN_NAT_TYPE_UNKNOWN_NAT PURPLE_STUN_NAT_TYPE_UNKNOWN_NAT -#define GAIM_STUN_NAT_TYPE_FULL_CONE PURPLE_STUN_NAT_TYPE_FULL_CONE -#define GAIM_STUN_NAT_TYPE_RESTRICTED_CONE PURPLE_STUN_NAT_TYPE_RESTRICTED_CONE -#define GAIM_STUN_NAT_TYPE_PORT_RESTRICTED_CONE PURPLE_STUN_NAT_TYPE_PORT_RESTRICTED_CONE -#define GAIM_STUN_NAT_TYPE_SYMMETRIC PURPLE_STUN_NAT_TYPE_SYMMETRIC -#define GaimStunNatType PurpleStunNatType - -/* why didn't this have a Gaim prefix before? */ -#define StunCallback PurpleStunCallback - -#define gaim_stun_discover purple_stun_discover -#define gaim_stun_init purple_stun_init - -/* from upnp.h */ - -/* suggested rename: PurpleUPnpMappingHandle */ -#define UPnPMappingAddRemove PurpleUPnPMappingAddRemove - -#define GaimUPnPCallback PurpleUPnPCallback - -#define gaim_upnp_discover purple_upnp_discover -#define gaim_upnp_get_public_ip purple_upnp_get_public_ip -#define gaim_upnp_cancel_port_mapping purple_upnp_cancel_port_mapping -#define gaim_upnp_set_port_mapping purple_upnp_set_port_mapping - -#define gaim_upnp_remove_port_mapping purple_upnp_remove_port_mapping - -/* from util.h */ - -#define GaimUtilFetchUrlData PurpleUtilFetchUrlData -#define GaimMenuAction PurpleMenuAction - -#define GaimInfoFieldFormatCallback PurpleIntoFieldFormatCallback - -#define GaimKeyValuePair PurpleKeyValuePair - -#define gaim_menu_action_new purple_menu_action_new -#define gaim_menu_action_free purple_menu_action_free - -#define gaim_base16_encode purple_base16_encode -#define gaim_base16_decode purple_base16_decode -#define gaim_base64_encode purple_base64_encode -#define gaim_base64_decode purple_base64_decode -#define gaim_quotedp_decode purple_quotedp_decode - -#define gaim_mime_decode_field purple_mime_deco_field - -#define gaim_utf8_strftime purple_utf8_strftime -#define gaim_date_format_short purple_date_format_short -#define gaim_date_format_long purple_date_format_long -#define gaim_date_format_full purple_date_format_full -#define gaim_time_format purple_time_format -#define gaim_time_build purple_time_build - -#define GAIM_NO_TZ_OFF PURPLE_NO_TZ_OFF - -#define gaim_str_to_time purple_str_to_time - -#define gaim_markup_find_tag purple_markup_find_tag -#define gaim_markup_extract_info_field purple_markup_extract_info_field -#define gaim_markup_html_to_xhtml purple_markup_html_to_xhtml -#define gaim_markup_strip_html purple_markup_strip_html -#define gaim_markup_linkify purple_markup_linkify -#define gaim_markup_slice purple_markup_slice -#define gaim_markup_get_tag_name purple_markup_get_tag_name -#define gaim_unescape_html purple_unescape_html - -#define gaim_home_dir purple_home_dir -#define gaim_user_dir purple_user_dir - -#define gaim_util_set_user_dir purple_util_set_user_dir - -#define gaim_build_dir purple_build_dir - -#define gaim_util_write_data_to_file purple_util_write_data_to_file - -#define gaim_util_read_xml_from_file purple_util_read_xml_from_file - -#define gaim_mkstemp purple_mkstemp - -#define gaim_program_is_valid purple_program_is_valid - -#define gaim_running_gnome purple_running_gnome -#define gaim_running_kde purple_running_kde -#define gaim_running_osx purple_running_osx - -#define gaim_fd_get_ip purple_fd_get_ip - -#define gaim_normalize purple_normalize -#define gaim_normalize_nocase purple_normalize_nocase - -#define gaim_strdup_withhtml purple_strdup_withhtml - -#define gaim_str_has_prefix purple_str_has_prefix -#define gaim_str_has_suffix purple_str_has_suffix -#define gaim_str_add_cr purple_str_add_cr -#define gaim_str_strip_char purple_str_strip_char - -#define gaim_util_chrreplace purple_util_chrreplace - -#define gaim_strreplace purple_strreplace - -#define gaim_utf8_ncr_encode purple_utf8_ncr_encode -#define gaim_utf8_ncr_decode purple_utf8_ncr_decode - -#define gaim_strcasereplace purple_strcasereplace -#define gaim_strcasestr purple_strcasestr - -#define gaim_str_size_to_units purple_str_size_to_units -#define gaim_str_seconds_to_string purple_str_seconds_to_string -#define gaim_str_binary_to_ascii purple_str_binary_to_ascii - - -#define gaim_got_protocol_handler_uri purple_got_protocol_handler_uri - -#define gaim_url_parse purple_url_parse - -#define GaimUtilFetchUrlCallback PurpleUtilFetchUrlCallback -#define gaim_util_fetch_url purple_util_fetch_url -#define gaim_util_fetch_url_request purple_util_fetch_url_request -#define gaim_util_fetch_url_cancel purple_util_fetch_url_cancel - -#define gaim_url_decode purple_url_decode -#define gaim_url_encode purple_url_encode - -#define gaim_email_is_valid purple_email_is_valid - -#define gaim_uri_list_extract_uris purple_uri_list_extract_uris -#define gaim_uri_list_extract_filenames purple_uri_list_extract_filenames - -#define gaim_utf8_try_convert purple_utf8_try_convert -#define gaim_utf8_salvage purple_utf8_salvage -#define gaim_utf8_strcasecmp purple_utf8_strcasecmp -#define gaim_utf8_has_word purple_utf8_has_word - -#define gaim_print_utf8_to_console purple_print_utf8_to_console - -#define gaim_message_meify purple_message_meify - -#define gaim_text_strip_mnemonic purple_text_strip_mnemonic - -#define gaim_unescape_filename purple_unescape_filename -#define gaim_escape_filename purple_escape_filename - -/* from value.h */ - -#define GAIM_TYPE_UNKNOWN PURPLE_TYPE_UNKNOWN -#define GAIM_TYPE_SUBTYPE PURPLE_TYPE_SUBTYPE -#define GAIM_TYPE_CHAR PURPLE_TYPE_CHAR -#define GAIM_TYPE_UCHAR PURPLE_TYPE_UCHAR -#define GAIM_TYPE_BOOLEAN PURPLE_TYPE_BOOLEAN -#define GAIM_TYPE_SHORT PURPLE_TYPE_SHORT -#define GAIM_TYPE_USHORT PURPLE_TYPE_USHORT -#define GAIM_TYPE_INT PURPLE_TYPE_INT -#define GAIM_TYPE_UINT PURPLE_TYPE_UINT -#define GAIM_TYPE_LONG PURPLE_TYPE_LONG -#define GAIM_TYPE_ULONG PURPLE_TYPE_ULONG -#define GAIM_TYPE_INT64 PURPLE_TYPE_INT64 -#define GAIM_TYPE_UINT64 PURPLE_TYPE_UINT64 -#define GAIM_TYPE_STRING PURPLE_TYPE_STRING -#define GAIM_TYPE_OBJECT PURPLE_TYPE_OBJECT -#define GAIM_TYPE_POINTER PURPLE_TYPE_POINTER -#define GAIM_TYPE_ENUM PURPLE_TYPE_ENUM -#define GAIM_TYPE_BOXED PURPLE_TYPE_BOXED -#define GaimType PurpleType - - -#define GAIM_SUBTYPE_UNKNOWN PURPLE_SUBTYPE_UNKNOWN -#define GAIM_SUBTYPE_ACCOUNT PURPLE_SUBTYPE_ACCOUNT -#define GAIM_SUBTYPE_BLIST PURPLE_SUBTYPE_BLIST -#define GAIM_SUBTYPE_BLIST_BUDDY PURPLE_SUBTYPE_BLIST_BUDDY -#define GAIM_SUBTYPE_BLIST_GROUP PURPLE_SUBTYPE_BLIST_GROUP -#define GAIM_SUBTYPE_BLIST_CHAT PURPLE_SUBTYPE_BLIST_CHAT -#define GAIM_SUBTYPE_BUDDY_ICON PURPLE_SUBTYPE_BUDDY_ICON -#define GAIM_SUBTYPE_CONNECTION PURPLE_SUBTYPE_CONNECTION -#define GAIM_SUBTYPE_CONVERSATION PURPLE_SUBTYPE_CONVERSATION -#define GAIM_SUBTYPE_PLUGIN PURPLE_SUBTYPE_PLUGIN -#define GAIM_SUBTYPE_BLIST_NODE PURPLE_SUBTYPE_BLIST_NODE -#define GAIM_SUBTYPE_CIPHER PURPLE_SUBTYPE_CIPHER -#define GAIM_SUBTYPE_STATUS PURPLE_SUBTYPE_STATUS -#define GAIM_SUBTYPE_LOG PURPLE_SUBTYPE_LOG -#define GAIM_SUBTYPE_XFER PURPLE_SUBTYPE_XFER -#define GAIM_SUBTYPE_SAVEDSTATUS PURPLE_SUBTYPE_SAVEDSTATUS -#define GAIM_SUBTYPE_XMLNODE PURPLE_SUBTYPE_XMLNODE -#define GAIM_SUBTYPE_USERINFO PURPLE_SUBTYPE_USERINFO -#define GaimSubType PurpleSubType - -#define GaimValue PurpleValue - -#define gaim_value_new purple_value_new -#define gaim_value_new_outgoing purple_value_new_outgoing -#define gaim_value_destroy purple_value_destroy -#define gaim_value_dup purple_value_dup -#define gaim_value_purple_buddy_icon_get_extensionget_type purple_value_get_type -#define gaim_value_get_subtype purple_value_get_subtype -#define gaim_value_get_specific_type purple_value_get_specific_type -#define gaim_value_is_outgoing purple_value_is_outgoing -#define gaim_value_set_char purple_value_set_char -#define gaim_value_set_uchar purple_value_set_uchar -#define gaim_value_set_boolean purple_value_set_boolean -#define gaim_value_set_short purple_value_set_short -#define gaim_value_set_ushort purple_value_set_ushort -#define gaim_value_set_int purple_value_set_int -#define gaim_value_set_uint purple_value_set_uint -#define gaim_value_set_long purple_value_set_long -#define gaim_value_set_ulong purple_value_set_ulong -#define gaim_value_set_int64 purple_value_set_int64 -#define gaim_value_set_uint64 purple_value_set_uint64 -#define gaim_value_set_string purple_value_set_string -#define gaim_value_set_object purple_value_set_object -#define gaim_value_set_pointer purple_value_set_pointer -#define gaim_value_set_enum purple_value_set_enum -#define gaim_value_set_boxed purple_value_set_boxed -#define gaim_value_get_char purple_value_get_char -#define gaim_value_get_uchar purple_value_get_uchar -#define gaim_value_get_boolean purple_value_get_boolean -#define gaim_value_get_short purple_value_get_short -#define gaim_value_get_ushort purple_value_get_ushort -#define gaim_value_get_int purple_value_get_int -#define gaim_value_get_uint purple_value_get_uint -#define gaim_value_get_long purple_value_get_long -#define gaim_value_get_ulong purple_value_get_ulong -#define gaim_value_get_int64 purple_value_get_int64 -#define gaim_value_get_uint64 purple_value_get_uint64 -#define gaim_value_get_string purple_value_get_string -#define gaim_value_get_object purple_value_get_object -#define gaim_value_get_pointer purple_value_get_pointer -#define gaim_value_get_enum purple_value_get_enum -#define gaim_value_get_boxed purple_value_get_boxed - -/* from version.h */ - -#define GAIM_MAJOR_VERSION PURPLE_MAJOR_VERSION -#define GAIM_MINOR_VERSION PURPLE_MINOR_VERSION -#define GAIM_MICRO_VERSION PURPLE_MICRO_VERSION - -#define GAIM_VERSION_CHECK PURPLE_VERSION_CHECK - -/* from whiteboard.h */ - -#define GaimWhiteboardPrplOps PurpleWhiteboardPrplOps -#define GaimWhiteboard PurpleWhiteboard -#define GaimWhiteboardUiOps PurpleWhiteboardUiOps - -#define gaim_whiteboard_set_ui_ops purple_whiteboard_set_ui_ops -#define gaim_whiteboard_set_prpl_ops purple_whiteboard_set_prpl_ops - -#define gaim_whiteboard_create purple_whiteboard_create -#define gaim_whiteboard_destroy purple_whiteboard_destroy -#define gaim_whiteboard_start purple_whiteboard_start -#define gaim_whiteboard_get_session purple_whiteboard_get_session -#define gaim_whiteboard_draw_list_destroy purple_whiteboard_draw_list_destroy -#define gaim_whiteboard_get_dimensions purple_whiteboard_get_dimensions -#define gaim_whiteboard_set_dimensions purple_whiteboard_set_dimensions -#define gaim_whiteboard_draw_point purple_whiteboard_draw_point -#define gaim_whiteboard_send_draw_list purple_whiteboard_send_draw_list -#define gaim_whiteboard_draw_line purple_whiteboard_draw_line -#define gaim_whiteboard_clear purple_whiteboard_clear -#define gaim_whiteboard_send_clear purple_whiteboard_send_clear -#define gaim_whiteboard_send_brush purple_whiteboard_send_brush -#define gaim_whiteboard_get_brush purple_whiteboard_get_brush -#define gaim_whiteboard_set_brush purple_whiteboard_set_brush - -/* for static plugins */ -#define gaim_init_ssl_plugin purple_init_ssl_plugin -#define gaim_init_ssl_openssl_plugin purple_init_ssl_openssl_plugin -#define gaim_init_ssl_gnutls_plugin purple_init_ssl_gnutls_plugin -#define gaim_init_gg_plugin purple_init_gg_plugin -#define gaim_init_jabber_plugin purple_init_jabber_plugin -#define gaim_init_sametime_plugin purple_init_sametime_plugin -#define gaim_init_msn_plugin purple_init_msn_plugin -#define gaim_init_novell_plugin purple_init_novell_plugin -#define gaim_init_qq_plugin purple_init_qq_plugin -#define gaim_init_simple_plugin purple_init_simple_plugin -#define gaim_init_yahoo_plugin purple_init_yahoo_plugin -#define gaim_init_zephyr_plugin purple_init_zephyr_plugin -#define gaim_init_aim_plugin purple_init_aim_plugin -#define gaim_init_icq_plugin purple_init_icq_plugin - -#endif /* _GAIM_COMPAT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gg.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gg.h deleted file mode 100644 index 3e75a08..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/gg.h +++ /dev/null @@ -1,72 +0,0 @@ -/** - * @file gg.h - * - * purple - * - * Copyright (C) 2005 Bartosz Oler - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - - -#ifndef _PURPLE_GG_H -#define _PURPLE_GG_H - -#include -#include "internal.h" -#include "search.h" -#include "connection.h" - - -#define PUBDIR_RESULTS_MAX 20 - - -typedef struct -{ - char *name; - GList *participants; - -} GGPChat; - -typedef void (*GGPTokenCallback)(PurpleConnection *); - -typedef struct -{ - char *id; - char *data; - unsigned int size; - - struct gg_http *req; - guint inpa; - - GGPTokenCallback cb; - -} GGPToken; - -typedef struct { - - struct gg_session *session; - GGPToken *token; - GList *chats; - GGPSearches *searches; - int chats_count; - GList *pending_richtext_messages; - GHashTable *pending_images; - gboolean status_broadcasting; //When TRUE status is visible to all, when FALSE status is visible only to friends. -} GGPInfo; - -#endif /* _PURPLE_GG_H */ - -/* vim: set ts=8 sts=0 sw=8 noet: */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/group.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/group.h deleted file mode 100644 index 620d241..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/group.h +++ /dev/null @@ -1,109 +0,0 @@ -/** - * @file group.h Group functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_GROUP_H -#define MSN_GROUP_H - -typedef struct _MsnGroup MsnGroup; - -#include "internal.h" - -#include "session.h" -#include "user.h" -#include "userlist.h" - -#define MSN_INDIVIDUALS_GROUP_ID "1983" -#define MSN_INDIVIDUALS_GROUP_NAME _("Other Contacts") - -#define MSN_NON_IM_GROUP_ID "email" -#define MSN_NON_IM_GROUP_NAME _("Non-IM Contacts") - -/** - * A group. - */ -struct _MsnGroup -{ - MsnSession *session; /**< The MSN session. */ - - char *id; /**< The group ID. */ - char *name; /**< The name of the group. */ -}; - -/************************************************************************** - ** @name Group API * - **************************************************************************/ -/*@{*/ - -/** - * Creates a new group structure. - * - * @param session The MSN session. - * @param id The group ID. - * @param name The name of the group. - * - * @return A new group structure. - */ -MsnGroup *msn_group_new(MsnUserList *userlist, const char *id, const char *name); - -/** - * Destroys a group structure. - * - * @param group The group to destroy. - */ -void msn_group_destroy(MsnGroup *group); - -/** - * Sets the ID for a group. - * - * @param group The group. - * @param id The ID. - */ -void msn_group_set_id(MsnGroup *group, const char *id); - -/** - * Sets the name for a group. - * - * @param group The group. - * @param name The name. - */ -void msn_group_set_name(MsnGroup *group, const char *name); - -/** - * Returns the ID for a group. - * - * @param group The group. - * - * @return The ID. - */ -char* msn_group_get_id(const MsnGroup *group); - -/** - * Returns the name for a group. - * - * @param group The group. - * - * @return The name. - */ -const char *msn_group_get_name(const MsnGroup *group); - -#endif /* MSN_GROUP_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/history.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/history.h deleted file mode 100644 index 7ceef1f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/history.h +++ /dev/null @@ -1,50 +0,0 @@ -/** - * @file history.h MSN history functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_HISTORY_H -#define MSN_HISTORY_H - -#include "internal.h" - -typedef struct _MsnHistory MsnHistory; - -#include "transaction.h" - -#define MSN_NS_HIST_ELEMS 0x300 -#define MSN_SB_HIST_ELEMS 0x30 - -/** - * The history. - */ -struct _MsnHistory -{ - GQueue *queue; - unsigned int trId; -}; - -MsnHistory *msn_history_new(void); -void msn_history_destroy(MsnHistory *history); -MsnTransaction *msn_history_find(MsnHistory *history, unsigned int triId); -void msn_history_add(MsnHistory *history, MsnTransaction *trans); - -#endif /* MSN_HISTORY_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/httpconn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/httpconn.h deleted file mode 100644 index 381a27b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/httpconn.h +++ /dev/null @@ -1,112 +0,0 @@ -/** - * @file httpconn.h HTTP connection - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_HTTPCONN_H -#define MSN_HTTPCONN_H - -typedef struct _MsnHttpConn MsnHttpConn; - -#include "circbuffer.h" -#include "servconn.h" -#include "session.h" - -/** - * An HTTP Connection. - */ -struct _MsnHttpConn -{ - MsnSession *session; /**< The MSN Session. */ - MsnServConn *servconn; /**< The connection object. */ - - PurpleProxyConnectData *connect_data; - - char *full_session_id; /**< The full session id. */ - char *session_id; /**< The trimmed session id. */ - - int timer; /**< The timer for polling. */ - - gboolean waiting_response; /**< The flag that states if we are waiting - a response from the server. */ - gboolean connected; /**< The flag that states if the connection is on. */ - gboolean virgin; /**< The flag that states if this connection - should specify the host (not gateway) to - connect to. */ - - char *host; /**< The HTTP gateway host. */ - GList *queue; /**< The queue of data chunks to write. */ - - int fd; /**< The connection's file descriptor. */ - guint inpa; /**< The connection's input handler. */ - - char *rx_buf; /**< The receive buffer. */ - int rx_len; /**< The receive buffer length. */ - - PurpleCircBuffer *tx_buf; - guint tx_handler; -}; - -/** - * Creates a new HTTP connection object. - * - * @param servconn The connection object. - * - * @return The new object. - */ -MsnHttpConn *msn_httpconn_new(MsnServConn *servconn); - -/** - * Destroys an HTTP connection object. - * - * @param httpconn The HTTP connection object. - */ -void msn_httpconn_destroy(MsnHttpConn *httpconn); - -/** - * Writes a chunk of data to the HTTP connection. - * - * @param servconn The server connection. - * @param data The data to write. - * @param data_len The size of the data to write. - * - * @return The number of bytes written. - */ -gssize msn_httpconn_write(MsnHttpConn *httpconn, const char *data, size_t data_len); - -/** - * Connects the HTTP connection object to a host. - * - * @param httpconn The HTTP connection object. - * @param host The host to connect to. - * @param port The port to connect to. - */ -gboolean msn_httpconn_connect(MsnHttpConn *httpconn, - const char *host, int port); - -/** - * Disconnects the HTTP connection object. - * - * @param httpconn The HTTP connection object. - */ -void msn_httpconn_disconnect(MsnHttpConn *httpconn); - -#endif /* MSN_HTTPCONN_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/idle.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/idle.h deleted file mode 100644 index f01c75b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/idle.h +++ /dev/null @@ -1,104 +0,0 @@ -/** - * @file idle.h Idle API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_IDLE_H_ -#define _PURPLE_IDLE_H_ - -#include - -/** - * Idle UI operations. - */ -typedef struct -{ - time_t (*get_time_idle)(void); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleIdleUiOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Idle API */ -/**************************************************************************/ -/*@{*/ - -/** - * Touch our idle tracker. This signifies that the user is - * 'active'. The conversation code calls this when the - * user sends an IM, for example. - */ -void purple_idle_touch(void); - -/** - * Fake our idle time by setting the time at which our - * accounts purportedly became idle. This is used by - * the I'dle Mak'er plugin. - */ -void purple_idle_set(time_t time); - -/*@}*/ - -/**************************************************************************/ -/** @name Idle Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used for idle reporting. - * - * @param ops The UI operations structure. - */ -void purple_idle_set_ui_ops(PurpleIdleUiOps *ops); - -/** - * Returns the UI operations structure used for idle reporting. - * - * @return The UI operations structure in use. - */ -PurpleIdleUiOps *purple_idle_get_ui_ops(void); - -/** - * Initializes the idle system. - */ -void purple_idle_init(void); - -/** - * Uninitializes the idle system. - */ -void purple_idle_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_IDLE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/imgstore.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/imgstore.h deleted file mode 100644 index 17e15a1..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/imgstore.h +++ /dev/null @@ -1,230 +0,0 @@ -/** - * @file imgstore.h IM Image Store API - * @ingroup core - * @see @ref imgstore-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_IMGSTORE_H_ -#define _PURPLE_IMGSTORE_H_ - -#include - -/** - * A set of utility functions that provide a reference-counted immutable - * wrapper around an image's data and filename. These functions do not - * cache any data to disk. - */ -typedef struct _PurpleStoredImage PurpleStoredImage; - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Create a new PurpleStoredImage. - * - * Despite the name of this function, the image is NOT added to the image - * store and no ID is assigned. If you need to reference the image by an - * ID, use purple_imgstore_add_with_id() instead. - * - * The caller owns a reference to this image and must dereference it with - * purple_imgstore_unref() for it to be freed. - * - * @param data Pointer to the image data, which the imgstore will take - * ownership of and free as appropriate. If you want a - * copy of the data, make it before calling this function. - * @param size Image data's size. - * @param filename Filename associated with image. This is for your - * convenience. It could be the full path to the - * image or, more commonly, the filename of the image - * without any directory information. It can also be - * NULL, if you don't need to keep track of a filename. - * - * @return The stored image, or NULL if the image was not added (because of - * empty data or size). - */ -PurpleStoredImage * -purple_imgstore_add(gpointer data, size_t size, const char *filename); - -/** - * Create a PurpleStoredImage using purple_imgstore_add() by reading the - * given filename from disk. - * - * The image is not added to the image store and no ID is assigned. If you - * need to reference the image by an ID, use purple_imgstore_add_with_id() - * instead. - * - * The caller owns a reference to this image and must dereference it with - * purple_imgstore_unref() for it to be freed. - * - * @param path The path to the image. - * - * @return The stored image, or NULL if the image was not added (because of - * empty data or size). - * - * @since 2.5.0 - */ -PurpleStoredImage * -purple_imgstore_new_from_file(const char *path); - -/** - * Create a PurpleStoredImage using purple_imgstore_add() and add the - * image to the image store. A unique ID will be assigned to the image. - * - * The caller owns a reference to the image and must dereference it with - * purple_imgstore_unref() or purple_imgstore_unref_by_id() for it to be - * freed. - * - * @param data Pointer to the image data, which the imgstore will take - * ownership of and free as appropriate. If you want a - * copy of the data, make it before calling this function. - * @param size Image data's size. - * @param filename Filename associated with image. This is for your - * convenience. It could be the full path to the - * image or, more commonly, the filename of the image - * without any directory information. It can also be - * NULL, if you don't need to keep track of a filename. - * - * @return ID for the image. This is a unique number that can be used - * within libpurple to reference the image. 0 is returned if the - * image was not added (because of empty data or size). - */ -int purple_imgstore_add_with_id(gpointer data, size_t size, const char *filename); - -/** - * Retrieve an image from the store. The caller does not own a - * reference to the image. - * - * @param id The ID for the image. - * - * @return A pointer to the requested image, or NULL if it was not found. - */ -PurpleStoredImage *purple_imgstore_find_by_id(int id); - -/** - * Retrieves a pointer to the image's data. - * - * @param img The Image. - * - * @return A pointer to the data, which must not - * be freed or modified. - */ -gconstpointer purple_imgstore_get_data(PurpleStoredImage *img); - -/** - * Retrieves the length of the image's data. - * - * @param img The Image. - * - * @return The size of the data that the pointer returned by - * purple_imgstore_get_data points to. - */ -size_t purple_imgstore_get_size(PurpleStoredImage *img); - -/** - * Retrieves a pointer to the image's filename. - * - * @param img The image. - * - * @return A pointer to the filename, which must not - * be freed or modified. - */ -const char *purple_imgstore_get_filename(const PurpleStoredImage *img); - -/** - * Looks at the magic numbers of the image data (the first few bytes) - * and returns an extension corresponding to the image's file type. - * - * @param img The image. - * - * @return The image's extension (for example "png") or "icon" - * if unknown. - */ -const char *purple_imgstore_get_extension(PurpleStoredImage *img); - -/** - * Increment the reference count. - * - * @param img The image. - * - * @return @a img - */ -PurpleStoredImage * -purple_imgstore_ref(PurpleStoredImage *img); - -/** - * Decrement the reference count. - * - * If the reference count reaches zero, the image will be freed. - * - * @param img The image. - * - * @return @a img or @c NULL if the reference count reached zero. - */ -PurpleStoredImage * -purple_imgstore_unref(PurpleStoredImage *img); - -/** - * Increment the reference count using an ID. - * - * This is a convience wrapper for purple_imgstore_find_by_id() and - * purple_imgstore_ref(), so if you have a PurpleStoredImage, it'll - * be more efficient to call purple_imgstore_ref() directly. - * - * @param id The ID for the image. - */ -void purple_imgstore_ref_by_id(int id); - -/** - * Decrement the reference count using an ID. - * - * This is a convience wrapper for purple_imgstore_find_by_id() and - * purple_imgstore_unref(), so if you have a PurpleStoredImage, it'll - * be more efficient to call purple_imgstore_unref() directly. - * - * @param id The ID for the image. - */ -void purple_imgstore_unref_by_id(int id); - -/** - * Returns the image store subsystem handle. - * - * @return The subsystem handle. - */ -void *purple_imgstore_get_handle(void); - -/** - * Initializes the image store subsystem. - */ -void purple_imgstore_init(void); - -/** - * Uninitializes the image store subsystem. - */ -void purple_imgstore_uninit(void); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_IMGSTORE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/internal.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/internal.h deleted file mode 100644 index dfc1195..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/internal.h +++ /dev/null @@ -1,229 +0,0 @@ -/** - * @file internal.h Internal definitions and includes - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_INTERNAL_H_ -#define _PURPLE_INTERNAL_H_ - -#ifdef HAVE_CONFIG_H -# include -#endif - -/* for SIOCGIFCONF in SKYOS */ -#ifdef SKYOS -#include -#endif -/* - * If we're using NLS, make sure gettext works. If not, then define - * dummy macros in place of the normal gettext macros. - * - * Also, the perl XS config.h file sometimes defines _ So we need to - * make sure _ isn't already defined before trying to define it. - * - * The Singular/Plural/Number ngettext dummy definition below was - * taken from an email to the texinfo mailing list by Manuel Guerrero. - * Thank you Manuel, and thank you Alex's good friend Google. - */ -#ifdef ENABLE_NLS -# include -# include -# define _(String) ((const char *)dgettext(PACKAGE, String)) -# ifdef gettext_noop -# define N_(String) gettext_noop (String) -# else -# define N_(String) (String) -# endif -#else -# include -# define N_(String) (String) -# ifndef _ -# define _(String) ((const char *)String) -# endif -# define ngettext(Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural)) -# define dngettext(Domain, Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural)) -#endif - -#ifdef HAVE_ENDIAN_H -# include -#endif - -#define MSG_LEN 2048 -/* The above should normally be the same as BUF_LEN, - * but just so we're explicitly asking for the max message - * length. */ -#define BUF_LEN MSG_LEN -#define BUF_LONG BUF_LEN * 2 - -#include -#include -#ifndef _WIN32 -#include -#include -#include -#endif -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef HAVE_ICONV -#include -#endif - -#ifdef HAVE_LANGINFO_CODESET -#include -#endif - -#include - -#ifdef PURPLE_PLUGINS -# ifdef HAVE_DLFCN_H -# include -# endif -#endif - -#ifndef _WIN32 -# include -# include -# include -# include -# include -# include -# include -# include -#endif - -#ifndef HOST_NAME_MAX -# define HOST_NAME_MAX 255 -#endif - -#include - -/* This wasn't introduced until Glib 2.14 :( */ -#ifndef G_MAXSSIZE -# if GLIB_SIZEOF_LONG == 8 -# define G_MAXSSIZE ((gssize) 0x7fffffffffffffff) -# else -# define G_MAXSSIZE ((gssize) 0x7fffffff) -# endif -#endif - -#include - -#ifdef _WIN32 -#include "win32dep.h" -#endif - -#ifdef HAVE_CONFIG_H -#if SIZEOF_TIME_T == 4 -# define PURPLE_TIME_T_MODIFIER "lu" -#elif SIZEOF_TIME_T == 8 -# define PURPLE_TIME_T_MODIFIER "zu" -#else -#error Unknown size of time_t -#endif -#endif - -#include - -/* Safer ways to work with static buffers. When using non-static - * buffers, either use g_strdup_* functions (preferred) or use - * g_strlcpy/g_strlcpy directly. */ -#define purple_strlcpy(dest, src) g_strlcpy(dest, src, sizeof(dest)) -#define purple_strlcat(dest, src) g_strlcat(dest, src, sizeof(dest)) - -#define PURPLE_WEBSITE "http://pidgin.im/" -#define PURPLE_DEVEL_WEBSITE "http://developer.pidgin.im/" - - -/* INTERNAL FUNCTIONS */ - -#include "account.h" -#include "connection.h" - -/* This is for the accounts code to notify the buddy icon code that - * it's done loading. We may want to replace this with a signal. */ -void -_purple_buddy_icons_account_loaded_cb(void); - -/* This is for the buddy list to notify the buddy icon code that - * it's done loading. We may want to replace this with a signal. */ -void -_purple_buddy_icons_blist_loaded_cb(void); - -/* This is for the purple_core_migrate() code to tell the buddy - * icon subsystem about the old icons directory so it can - * migrate any icons in use. */ -void -_purple_buddy_icon_set_old_icons_dir(const char *dirname); - -/** - * Creates a connection to the specified account and either connects - * or attempts to register a new account. If you are logging in, - * the connection uses the current active status for this account. - * So if you want to sign on as "away," for example, you need to - * have called purple_account_set_status(account, "away"). - * (And this will call purple_account_connect() automatically). - * - * @note This function should only be called by purple_account_connect() - * in account.c. If you're trying to sign on an account, use that - * function instead. - * - * @param account The account the connection should be connecting to. - * @param regist Whether we are registering a new account or just - * trying to do a normal signon. - * @param password The password to use. - */ -void _purple_connection_new(PurpleAccount *account, gboolean regist, - const char *password); -/** - * Tries to unregister the account on the server. If the account is not - * connected, also creates a new connection. - * - * @note This function should only be called by purple_account_unregister() - * in account.c. - * - * @param account The account to unregister - * @param password The password to use. - * @param cb Optional callback to be called when unregistration is complete - * @param user_data user data to pass to the callback - */ -void _purple_connection_new_unregister(PurpleAccount *account, const char *password, - PurpleAccountUnregistrationCb cb, void *user_data); -/** - * Disconnects and destroys a PurpleConnection. - * - * @note This function should only be called by purple_account_disconnect() - * in account.c. If you're trying to sign off an account, use that - * function instead. - * - * @param gc The purple connection to destroy. - */ -void _purple_connection_destroy(PurpleConnection *gc); - -#endif /* _PURPLE_INTERNAL_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/iq.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/iq.h deleted file mode 100644 index aa4123f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/iq.h +++ /dev/null @@ -1,116 +0,0 @@ -/** - * @file iq.h JabberID handlers - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_IQ_H_ -#define PURPLE_JABBER_IQ_H_ - -typedef enum { - JABBER_IQ_SET, - JABBER_IQ_GET, - JABBER_IQ_RESULT, - JABBER_IQ_ERROR, - JABBER_IQ_NONE -} JabberIqType; - -#include "jabber.h" -#include "connection.h" - -typedef struct _JabberIq JabberIq; - -/** - * A JabberIqHandler is called to process an incoming IQ stanza. - * Handlers typically process unsolicited incoming GETs or SETs for their - * registered namespace, but may be called to handle the results of a - * GET or SET that we generated if no JabberIqCallback was generated - * The handler may be called for the results of a GET or SET (RESULT or ERROR) - * that we generated - * if the generating function did not register a JabberIqCallback. - * - * @param js The JabberStream object. - * @param from The remote entity (the from attribute on the stanza) - * @param type The IQ type. - * @param id The IQ id (the id attribute on the stanza) - * @param child The child element of the stanza that matches the name - * and namespace registered with jabber_iq_register_handler. - * - * @see jabber_iq_register_handler() - * @see JabberIqCallback - */ -typedef void (JabberIqHandler)(JabberStream *js, const char *from, - JabberIqType type, const char *id, - xmlnode *child); - -/** - * A JabberIqCallback is called to process the results of a GET or SET that - * we send to a remote entity. The callback is matched based on the id - * of the incoming stanza (which matches the one on the initial stanza). - * - * @param js The JabberStream object. - * @param from The remote entity (the from attribute on the stanza) - * @param type The IQ type. The only possible values are JABBER_IQ_RESULT - * and JABBER_IQ_ERROR. - * @param id The IQ id (the id attribute on the stanza) - * @param packet The stanza - * @param data The callback data passed to jabber_iq_set_callback() - * - * @see jabber_iq_set_callback() - */ -typedef void (JabberIqCallback)(JabberStream *js, const char *from, - JabberIqType type, const char *id, - xmlnode *packet, gpointer data); - -struct _JabberIq { - JabberIqType type; - char *id; - xmlnode *node; - - JabberIqCallback *callback; - gpointer callback_data; - - JabberStream *js; -}; - -JabberIq *jabber_iq_new(JabberStream *js, JabberIqType type); -JabberIq *jabber_iq_new_query(JabberStream *js, JabberIqType type, - const char *xmlns); - -void jabber_iq_parse(JabberStream *js, xmlnode *packet); - -void jabber_iq_remove_callback_by_id(JabberStream *js, const char *id); -void jabber_iq_set_callback(JabberIq *iq, JabberIqCallback *cb, gpointer data); -void jabber_iq_set_id(JabberIq *iq, const char *id); - -void jabber_iq_send(JabberIq *iq); -void jabber_iq_free(JabberIq *iq); - -void jabber_iq_init(void); -void jabber_iq_uninit(void); - -void jabber_iq_register_handler(const char *node, const char *xmlns, - JabberIqHandler *func); - -/* Connected to namespace-handler registration signals */ -void jabber_iq_signal_register(const gchar *node, const gchar *xmlns); -void jabber_iq_signal_unregister(const gchar *node, const gchar *xmlns); - -#endif /* PURPLE_JABBER_IQ_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/irc.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/irc.h deleted file mode 100644 index 6fc7fae..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/irc.h +++ /dev/null @@ -1,224 +0,0 @@ -/** - * @file irc.h - * - * purple - * - * Copyright (C) 2003, 2012 Ethan Blanton - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_IRC_H -#define _PURPLE_IRC_H - -#include - -#ifdef HAVE_CYRUS_SASL -#include -#endif - -#include "circbuffer.h" -#include "ft.h" -#include "roomlist.h" -#include "sslconn.h" - -#define IRC_DEFAULT_SERVER "irc.freenode.net" -#define IRC_DEFAULT_PORT 6667 -#define IRC_DEFAULT_SSL_PORT 994 - -#define IRC_DEFAULT_CHARSET "UTF-8" -#define IRC_DEFAULT_AUTODETECT FALSE -#define IRC_DEFAULT_ALIAS "purple" - -#define IRC_DEFAULT_QUIT "Leaving." - -#define IRC_INITIAL_BUFSIZE 1024 - -#define IRC_NAMES_FLAG "irc-namelist" - - -enum { IRC_USEROPT_SERVER, IRC_USEROPT_PORT, IRC_USEROPT_CHARSET }; -enum irc_state { IRC_STATE_NEW, IRC_STATE_ESTABLISHED }; - -struct irc_conn { - PurpleAccount *account; - GHashTable *msgs; - GHashTable *cmds; - char *server; - int fd; - guint timer; - GHashTable *buddies; - - gboolean ison_outstanding; - GList *buddies_outstanding; - - char *inbuf; - int inbuflen; - int inbufused; - - GString *motd; - GString *names; - struct _whois { - char *nick; - char *away; - char *userhost; - char *name; - char *server; - char *serverinfo; - GString *channels; - int ircop; - int identified; - int idle; - time_t signon; - } whois; - PurpleRoomlist *roomlist; - PurpleSslConnection *gsc; - - gboolean quitting; - - PurpleCircBuffer *outbuf; - guint writeh; - - time_t recv_time; - - char *mode_chars; - char *reqnick; - gboolean nickused; -#ifdef HAVE_CYRUS_SASL - sasl_conn_t *sasl_conn; - const char *current_mech; - GString *sasl_mechs; - gboolean mech_works; - sasl_callback_t *sasl_cb; -#endif -}; - -struct irc_buddy { - char *name; - gboolean online; - gboolean flag; - gboolean new_online_status; - int ref; -}; - -typedef int (*IRCCmdCallback) (struct irc_conn *irc, const char *cmd, const char *target, const char **args); - -int irc_send(struct irc_conn *irc, const char *buf); -int irc_send_len(struct irc_conn *irc, const char *buf, int len); -gboolean irc_blist_timeout(struct irc_conn *irc); -gboolean irc_who_channel_timeout(struct irc_conn *irc); -void irc_buddy_query(struct irc_conn *irc); - -char *irc_escape_privmsg(const char *text, gssize length); - -char *irc_mirc2html(const char *string); -char *irc_mirc2txt(const char *string); - -const char *irc_nick_skip_mode(struct irc_conn *irc, const char *string); - -gboolean irc_ischannel(const char *string); - -void irc_register_commands(void); -void irc_msg_table_build(struct irc_conn *irc); -void irc_parse_msg(struct irc_conn *irc, char *input); -char *irc_parse_ctcp(struct irc_conn *irc, const char *from, const char *to, const char *msg, int notice); -char *irc_format(struct irc_conn *irc, const char *format, ...); - -void irc_msg_default(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_away(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_badmode(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_badnick(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_ban(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_banfull(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_banned(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_chanmode(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_endwhois(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_features(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_invite(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_inviteonly(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_ison(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_join(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_kick(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_list(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_luser(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_mode(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_motd(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_names(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nick(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nickused(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nochan(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nonick(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nochangenick(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_nosend(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_notice(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_notinchan(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_notop(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_part(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_ping(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_pong(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_privmsg(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_quit(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_regonly(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_time(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_topic(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_topicinfo(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_unavailable(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_unknown(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_wallops(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_whois(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_who(struct irc_conn *irc, const char *name, const char *from, char **args); -#ifdef HAVE_CYRUS_SASL -void irc_msg_cap(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_auth(struct irc_conn *irc, char *arg); -void irc_msg_authok(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_authtryagain(struct irc_conn *irc, const char *name, const char *from, char **args); -void irc_msg_authfail(struct irc_conn *irc, const char *name, const char *from, char **args); -#endif - -void irc_msg_ignore(struct irc_conn *irc, const char *name, const char *from, char **args); - -void irc_cmd_table_build(struct irc_conn *irc); - -int irc_cmd_default(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_away(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_ctcp(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_ctcp_action(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_ctcp_version(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_invite(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_join(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_kick(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_list(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_mode(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_names(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_nick(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_op(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_privmsg(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_part(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_ping(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_quit(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_quote(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_query(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_remove(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_service(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_time(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_topic(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_wallops(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_whois(struct irc_conn *irc, const char *cmd, const char *target, const char **args); -int irc_cmd_whowas(struct irc_conn *irc, const char *cmd, const char *target, const char **args); - -PurpleXfer *irc_dccsend_new_xfer(PurpleConnection *gc, const char *who); -void irc_dccsend_send_file(PurpleConnection *gc, const char *who, const char *file); -void irc_dccsend_recv(struct irc_conn *irc, const char *from, const char *msg); -#endif /* _PURPLE_IRC_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jabber.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jabber.h deleted file mode 100644 index ae8e470..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jabber.h +++ /dev/null @@ -1,425 +0,0 @@ -/** - * @file jabber.h - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_H_ -#define PURPLE_JABBER_H_ - -typedef enum { - JABBER_CAP_NONE = 0, -/* JABBER_CAP_XHTML = 1 << 0, */ -/* JABBER_CAP_COMPOSING = 1 << 1, */ - JABBER_CAP_SI = 1 << 2, - JABBER_CAP_SI_FILE_XFER = 1 << 3, - JABBER_CAP_BYTESTREAMS = 1 << 4, - JABBER_CAP_IBB = 1 << 5, - JABBER_CAP_CHAT_STATES = 1 << 6, - JABBER_CAP_IQ_SEARCH = 1 << 7, - JABBER_CAP_IQ_REGISTER = 1 << 8, - - /* Google Talk extensions: - * http://code.google.com/apis/talk/jep_extensions/extensions.html - */ - JABBER_CAP_GMAIL_NOTIFY = 1 << 9, - JABBER_CAP_GOOGLE_ROSTER = 1 << 10, - - JABBER_CAP_PING = 1 << 11, - JABBER_CAP_ADHOC = 1 << 12, - JABBER_CAP_BLOCKING = 1 << 13, - - JABBER_CAP_ITEMS = 1 << 14, - JABBER_CAP_ROSTER_VERSIONING = 1 << 15, - - JABBER_CAP_CARBONS = 1 << 16, - - JABBER_CAP_RETRIEVED = 1 << 31 -} JabberCapabilities; - -typedef struct _JabberStream JabberStream; - -#include -#include -#include "circbuffer.h" -#include "connection.h" -#include "dnsquery.h" -#include "dnssrv.h" -#include "media.h" -#include "mediamanager.h" -#include "roomlist.h" -#include "sslconn.h" - -#include "namespaces.h" - -#include "auth.h" -#include "iq.h" -#include "jutil.h" -#include "xmlnode.h" -#include "buddy.h" -#include "bosh.h" - -#ifdef HAVE_CYRUS_SASL -#include -#endif - -#define CAPS0115_NODE "http://pidgin.im/" - -#define JABBER_DEFAULT_REQUIRE_TLS "require_starttls" -#define JABBER_DEFAULT_FT_PROXIES "proxy.eu.jabber.org" - -/* Index into attention_types list */ -#define JABBER_BUZZ 0 - -typedef enum { - JABBER_STREAM_OFFLINE, - JABBER_STREAM_CONNECTING, - JABBER_STREAM_INITIALIZING, - JABBER_STREAM_INITIALIZING_ENCRYPTION, - JABBER_STREAM_AUTHENTICATING, - JABBER_STREAM_POST_AUTH, - JABBER_STREAM_CONNECTED -} JabberStreamState; - -struct _JabberStream -{ - int fd; - - PurpleSrvTxtQueryData *srv_query_data; - - xmlParserCtxt *context; - xmlnode *current; - - struct { - guint8 major; - guint8 minor; - } protocol_version; - - JabberSaslMech *auth_mech; - gpointer auth_mech_data; - - /** - * The header from the opening tag. This being NULL is treated - * as a special condition in the parsing code (signifying the next - * stanza started is an opening stream tag), and its being missing on - * the stream header is treated as a fatal error. - */ - char *stream_id; - JabberStreamState state; - - GHashTable *buddies; - - /* - * This boolean was added to eliminate a heinous bug where we would - * get into a loop with the server and move a buddy back and forth - * from one group to another. - * - * The sequence goes something like this: - * 1. Our resource and another resource both approve an authorization - * request at the exact same time. We put the buddy in group A and - * the other resource put the buddy in group B. - * 2. The server receives the roster add for group B and sends us a - * roster push. - * 3. We receive this roster push and modify our local blist. This - * triggers us to send a roster add for group B. - * 4. The server recieves our earlier roster add for group A and sends - * us a roster push. - * 5. We receive this roster push and modify our local blist. This - * triggers us to send a roster add for group A. - * 6. The server receives our earlier roster add for group B and sends - * us a roster push. - * (repeat steps 3 through 6 ad infinitum) - * - * This boolean is used to short-circuit the sending of a roster add - * when we receive a roster push. - * - * See these bug reports: - * http://trac.adiumx.com/ticket/8834 - * http://developer.pidgin.im/ticket/5484 - * http://developer.pidgin.im/ticket/6188 - */ - gboolean currently_parsing_roster_push; - - GHashTable *chats; - GList *chat_servers; - PurpleRoomlist *roomlist; - GList *user_directories; - - GHashTable *iq_callbacks; - int next_id; - - GList *bs_proxies; - GList *oob_file_transfers; - GList *file_transfers; - - time_t idle; - time_t old_idle; - - /** When we last pinged the server, so we don't ping more - * often than once every minute. - */ - time_t last_ping; - - JabberID *user; - JabberBuddy *user_jb; - - PurpleConnection *gc; - PurpleSslConnection *gsc; - - gboolean registration; - - char *initial_avatar_hash; - char *avatar_hash; - GSList *pending_avatar_requests; - - GSList *pending_buddy_info_requests; - - PurpleCircBuffer *write_buffer; - guint writeh; - - gboolean reinit; - - JabberCapabilities server_caps; - gboolean googletalk; - char *server_name; - - char *gmail_last_time; - char *gmail_last_tid; - - char *serverFQDN; - -#ifdef HAVE_CYRUS_SASL - sasl_conn_t *sasl; - sasl_callback_t *sasl_cb; - sasl_secret_t *sasl_secret; - const char *current_mech; - int auth_fail_count; - - int sasl_state; - int sasl_maxbuf; - GString *sasl_mechs; -#endif - - gboolean unregistration; - PurpleAccountUnregistrationCb unregistration_cb; - void *unregistration_user_data; - - gboolean vcard_fetched; - /* Timer at login to push updated avatar */ - guint vcard_timer; - - /* Entity Capabilities hash */ - char *caps_hash; - - /* does the local server support PEP? */ - gboolean pep; - - /* Is Buzz enabled? */ - gboolean allowBuzz; - - /* A list of JabberAdHocCommands supported by the server */ - GList *commands; - - /* last presence update to check for differences */ - JabberBuddyState old_state; - char *old_msg; - int old_priority; - char *old_avatarhash; - - /* same for user tune */ - char *old_artist; - char *old_title; - char *old_source; - char *old_uri; - int old_length; - char *old_track; - - char *certificate_CN; - - /* A purple timeout tag for the keepalive */ - guint keepalive_timeout; - guint max_inactivity; - guint inactivity_timer; - - PurpleSrvResponse *srv_rec; - guint srv_rec_idx; - guint max_srv_rec_idx; - - /* BOSH stuff */ - PurpleBOSHConnection *bosh; - - /** - * This linked list contains PurpleUtilFetchUrlData structs - * for when we lookup buddy icons from a url - */ - GSList *url_datas; - - /* keep a hash table of JingleSessions */ - GHashTable *sessions; - - /* maybe this should only be present when USE_VV? */ - gchar *stun_ip; - int stun_port; - PurpleDnsQueryData *stun_query; - - /* stuff for Google's relay handling */ - gchar *google_relay_token; - gchar *google_relay_host; - GList *google_relay_requests; /* the HTTP requests to get */ - /* relay info */ -}; - -typedef gboolean (JabberFeatureEnabled)(JabberStream *js, const gchar *namespace); - -typedef struct _JabberFeature -{ - gchar *namespace; - JabberFeatureEnabled *is_enabled; -} JabberFeature; - -typedef struct _JabberIdentity -{ - gchar *category; - gchar *type; - gchar *name; - gchar *lang; -} JabberIdentity; - -typedef struct _JabberBytestreamsStreamhost { - char *jid; - char *host; - int port; - char *zeroconf; -} JabberBytestreamsStreamhost; - -/* what kind of additional features as returned from disco#info are supported? */ -extern GList *jabber_features; -/* A sorted list of identities advertised. Use jabber_add_identity to add - * so it remains sorted. - */ -extern GList *jabber_identities; - -void jabber_stream_features_parse(JabberStream *js, xmlnode *packet); -void jabber_process_packet(JabberStream *js, xmlnode **packet); -void jabber_send(JabberStream *js, xmlnode *data); -void jabber_send_raw(JabberStream *js, const char *data, int len); -void jabber_send_signal_cb(PurpleConnection *pc, xmlnode **packet, - gpointer unused); - -void jabber_stream_set_state(JabberStream *js, JabberStreamState state); - -void jabber_register_parse(JabberStream *js, const char *from, - JabberIqType type, const char *id, xmlnode *query); -void jabber_register_start(JabberStream *js); - -char *jabber_get_next_id(JabberStream *js); - -/** Parse an error into a human-readable string and optionally a disconnect - * reason. - * @param js the stream on which the error occurred. - * @param packet the error packet - * @param reason where to store the disconnection reason, or @c NULL if you - * don't care or you don't intend to close the connection. - */ -char *jabber_parse_error(JabberStream *js, xmlnode *packet, PurpleConnectionError *reason); - -/** - * Add a feature to the list of features advertised via disco#info. If you - * call this while accounts are connected, Bad Things(TM) will happen because - * the Entity Caps hash will be out-of-date (which should be fixed :/) - * - * @param namespace The namespace of the feature - * @param cb A callback determining whether or not this feature - * will advertised; may be NULL. - */ -void jabber_add_feature(const gchar *namespace, JabberFeatureEnabled cb); -void jabber_remove_feature(const gchar *namespace); - -/** Adds an identity to this jabber library instance. For list of valid values - * visit the website of the XMPP Registrar - * (http://www.xmpp.org/registrar/disco-categories.html#client). - * - * Like with jabber_add_feature, if you call this while accounts are connected, - * Bad Things will happen. - * - * @param category the category of the identity. - * @param type the type of the identity. - * @param language the language localization of the name. Can be NULL. - * @param name the name of the identity. - */ -void jabber_add_identity(const gchar *category, const gchar *type, const gchar *lang, const gchar *name); - -/** - * GCompareFunc for JabberIdentity structs. - */ -gint jabber_identity_compare(gconstpointer a, gconstpointer b); - -/** - * Returns true if this connection is over a secure (SSL) stream. Use this - * instead of checking js->gsc because BOSH stores its PurpleSslConnection - * members in its own data structure. - */ -gboolean jabber_stream_is_ssl(JabberStream *js); - -/** - * Restart the "we haven't sent anything in a while and should send - * something or the server will kick us off" timer (obviously - * called when sending something. It's exposed for BOSH.) - */ -void jabber_stream_restart_inactivity_timer(JabberStream *js); - -/** PRPL functions */ -const char *jabber_list_icon(PurpleAccount *a, PurpleBuddy *b); -const char* jabber_list_emblem(PurpleBuddy *b); -char *jabber_status_text(PurpleBuddy *b); -void jabber_tooltip_text(PurpleBuddy *b, PurpleNotifyUserInfo *user_info, gboolean full); -GList *jabber_status_types(PurpleAccount *account); -void jabber_login(PurpleAccount *account); -void jabber_close(PurpleConnection *gc); -void jabber_idle_set(PurpleConnection *gc, int idle); -void jabber_blocklist_parse_push(JabberStream *js, const char *from, - JabberIqType type, const char *id, - xmlnode *child); -void jabber_request_block_list(JabberStream *js); -void jabber_add_deny(PurpleConnection *gc, const char *who); -void jabber_rem_deny(PurpleConnection *gc, const char *who); -void jabber_keepalive(PurpleConnection *gc); -void jabber_register_gateway(JabberStream *js, const char *gateway); -void jabber_register_account(PurpleAccount *account); -void jabber_unregister_account(PurpleAccount *account, PurpleAccountUnregistrationCb cb, void *user_data); -gboolean jabber_send_attention(PurpleConnection *gc, const char *username, guint code); -GList *jabber_attention_types(PurpleAccount *account); -void jabber_convo_closed(PurpleConnection *gc, const char *who); -PurpleChat *jabber_find_blist_chat(PurpleAccount *account, const char *name); -gboolean jabber_offline_message(const PurpleBuddy *buddy); -int jabber_prpl_send_raw(PurpleConnection *gc, const char *buf, int len); -GList *jabber_actions(PurplePlugin *plugin, gpointer context); - -gboolean jabber_audio_enabled(JabberStream *js, const char *unused); -gboolean jabber_video_enabled(JabberStream *js, const char *unused); -gboolean jabber_initiate_media(PurpleAccount *account, const char *who, - PurpleMediaSessionType type); -PurpleMediaCaps jabber_get_media_caps(PurpleAccount *account, const char *who); -gboolean jabber_can_receive_file(PurpleConnection *gc, const gchar *who); - -void jabber_plugin_init(PurplePlugin *plugin); -void jabber_plugin_uninit(PurplePlugin *plugin); - -#endif /* PURPLE_JABBER_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jutil.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jutil.h deleted file mode 100644 index b4f57a6..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/jutil.h +++ /dev/null @@ -1,90 +0,0 @@ -/** - * @file jutil.h utility functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_JUTIL_H_ -#define PURPLE_JABBER_JUTIL_H_ - -typedef struct _JabberID { - char *node; - char *domain; - char *resource; -} JabberID; - -typedef enum { - JABBER_BUDDY_STATE_UNKNOWN = -2, - JABBER_BUDDY_STATE_ERROR = -1, - JABBER_BUDDY_STATE_UNAVAILABLE = 0, - JABBER_BUDDY_STATE_ONLINE, - JABBER_BUDDY_STATE_CHAT, - JABBER_BUDDY_STATE_AWAY, - JABBER_BUDDY_STATE_XA, - JABBER_BUDDY_STATE_DND -} JabberBuddyState; - -#include "jabber.h" - -JabberID* jabber_id_new(const char *str); -void jabber_id_free(JabberID *jid); - -char *jabber_get_domain(const char *jid); -char *jabber_get_resource(const char *jid); -char *jabber_get_bare_jid(const char *jid); -char *jabber_id_get_bare_jid(const JabberID *jid); - -gboolean jabber_jid_is_domain(const char *jid); - -const char *jabber_normalize(const PurpleAccount *account, const char *in); - -/* Returns true if JID is the bare JID of our server. */ -gboolean jabber_is_own_server(JabberStream *js, const char *jid); - -/* Returns true if JID is the bare JID of our account. */ -gboolean jabber_is_own_account(JabberStream *js, const char *jid); - -gboolean jabber_nodeprep_validate(const char *); -gboolean jabber_domain_validate(const char *); -gboolean jabber_resourceprep_validate(const char *); - -/** - * Apply the SASLprep profile of stringprep to the string passed in. - * - * @returns A newly allocated string containing the normalized version - * of the input, or NULL if an error occurred (the string could - * not be normalized) - */ -char *jabber_saslprep(const char *); - -/* state -> readable name */ -const char *jabber_buddy_state_get_name(JabberBuddyState state); -/* state -> core id */ -const char *jabber_buddy_state_get_status_id(JabberBuddyState state); -/* state -> show attr (for presence stanza) */ -const char *jabber_buddy_state_get_show(JabberBuddyState state); -/* core id -> state */ -JabberBuddyState jabber_buddy_status_id_get_state(const char *id); -/* show attr (presence stanza) -> state */ -JabberBuddyState jabber_buddy_show_get_state(const char *id); - -char *jabber_calculate_data_hash(gconstpointer data, size_t len, - const gchar *hash_algo); -#endif /* PURPLE_JABBER_JUTIL_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libgadu.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libgadu.h deleted file mode 100644 index aad79b3..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libgadu.h +++ /dev/null @@ -1,2319 +0,0 @@ -/* $Id: libgadu.h.in 1105 2011-05-25 21:34:50Z wojtekka $ */ - -/* - * (C) Copyright 2001-2009 Wojtek Kaniewski - * Robert J. Woźny - * Arkadiusz Miśkiewicz - * Tomasz Chiliński - * Piotr Wysocki - * Dawid Jarosz - * Jakub Zawadzki - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License Version - * 2.1 as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, - * USA. - */ - -/** - * \file libgadu.h - * - * \brief Główny plik nagłówkowy biblioteki - */ - -#ifndef __GG_LIBGADU_H -#define __GG_LIBGADU_H - -#ifdef _WIN32 -#pragma pack(push, 1) -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -/** \cond ignore */ - -/* Defined if libgadu was compiled for bigendian machine. */ -#undef GG_CONFIG_BIGENDIAN - -/* Defined if this machine has gethostbyname_r(). */ -#undef GG_CONFIG_HAVE_GETHOSTBYNAME_R - -/* Defined if libgadu was compiled and linked with pthread support. */ -#undef GG_CONFIG_HAVE_PTHREAD - -/* Defined if pthread resolver is the default one. */ -#undef GG_CONFIG_PTHREAD_DEFAULT - -/* Defined if this machine has C99-compiliant vsnprintf(). */ -#undef GG_CONFIG_HAVE_C99_VSNPRINTF - -/* Defined if this machine has va_copy(). */ -#undef GG_CONFIG_HAVE_VA_COPY - -/* Defined if this machine has __va_copy(). */ -#undef GG_CONFIG_HAVE___VA_COPY - -/* Defined if this machine supports long long. */ -#undef GG_CONFIG_HAVE_LONG_LONG - -/* Defined if libgadu was compiled and linked with GnuTLS support. */ -#undef GG_CONFIG_HAVE_GNUTLS - -/* Defined if libgadu was compiled and linked with OpenSSL support. */ -#undef GG_CONFIG_HAVE_OPENSSL - -/* Defined if libgadu was compiled and linked with zlib support. */ -#undef GG_CONFIG_HAVE_ZLIB - -/* Defined if uintX_t types are defined in . */ -#undef GG_CONFIG_HAVE_STDINT_H - -/* Defined if uintX_t types are defined in . */ -#undef GG_CONFIG_HAVE_INTTYPES_H - -/* Defined if uintX_t types are defined in . */ -#undef GG_CONFIG_HAVE_SYS_INTTYPES_H - -/* Defined if uintX_t types are defined in . */ -#undef GG_CONFIG_HAVE_SYS_INT_TYPES_H - -/* Defined if uintX_t types are defined in . */ -#undef GG_CONFIG_HAVE_SYS_TYPES_H - -#ifdef GG_CONFIG_HAVE_OPENSSL -#include -#endif - -#ifdef GG_CONFIG_HAVE_STDINT_H -#include -#else -# ifdef GG_CONFIG_HAVE_INTTYPES_H -# include -# else -# ifdef GG_CONFIG_HAVE_SYS_INTTYPES_H -# include -# else -# ifdef GG_CONFIG_HAVE_SYS_INT_TYPES_H -# include -# else -# ifdef GG_CONFIG_HAVE_SYS_TYPES_H -# include -# else - -#ifndef __AC_STDINT_H -#define __AC_STDINT_H - -/* ISO C 9X: 7.18 Integer types */ - -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; - -#if !defined(__CYGWIN__) && !defined(__SunOS) && !defined(_INCLUDE_HPUX_SOURCE) -#define __int8_t_defined -typedef signed char int8_t; -typedef signed short int16_t; -typedef signed int int32_t; -#endif - -#endif /* __AC_STDINT_H */ - -# endif -# endif -# endif -# endif -#endif - -/** \endcond */ - -/** - * Numer Gadu-Gadu. - */ -typedef uint32_t uin_t; - -/** - * Identyfikator połączenia bezpośredniego Gadu-Gadu 7.x. - */ -typedef struct { - uint8_t id[8]; -} gg_dcc7_id_t; - -/** - * Identyfikator sesji multilogowania. - */ -typedef struct { - uint8_t id[8]; -} gg_multilogon_id_t; - -/** - * Makro deklarujące pola wspólne dla struktur sesji. - */ -#define gg_common_head(x) \ - int fd; /**< Obserwowany deskryptor */ \ - int check; /**< Informacja o żądaniu odczytu/zapisu (patrz \ref gg_check_t) */ \ - int state; /**< Aktualny stan połączenia (patrz \ref gg_state_t) */ \ - int error; /**< Kod błędu dla \c GG_STATE_ERROR (patrz \ref gg_error_t) */ \ - int type; /**< Rodzaj sesji (patrz \ref gg_session_t) */ \ - int id; /**< Identyfikator sesji */ \ - int timeout; /**< Czas pozostały do zakończenia stanu */ \ - int (*callback)(x*); /**< Funkcja zwrotna */ \ - void (*destroy)(x*); /**< Funkcja zwalniania zasobów */ - -/** - * Struktura wspólna dla wszystkich sesji i połączeń. Pozwala na proste - * rzutowanie niezależne od rodzaju połączenia. - */ -struct gg_common { - gg_common_head(struct gg_common) -}; - -struct gg_image_queue; - -struct gg_dcc7; - -struct gg_dcc7_relay; - -/** - * Sposób rozwiązywania nazw serwerów. - */ -typedef enum { - GG_RESOLVER_DEFAULT = 0, /**< Domyślny sposób rozwiązywania nazw (jeden z poniższych) */ - GG_RESOLVER_FORK, /**< Rozwiązywanie nazw bazujące na procesach */ - GG_RESOLVER_PTHREAD, /**< Rozwiązywanie nazw bazujące na wątkach */ - GG_RESOLVER_WIN32, - GG_RESOLVER_CUSTOM, /**< Funkcje rozwiązywania nazw dostarczone przed aplikację */ - GG_RESOLVER_INVALID = -1 /**< Nieprawidłowy sposób rozwiązywania nazw (wynik \c gg_session_get_resolver) */ -} gg_resolver_t; - -/** - * Rodzaj kodowania znaków. - */ -typedef enum { - GG_ENCODING_CP1250 = 0, /**< Kodowanie CP1250 */ - GG_ENCODING_UTF8, /**< Kodowanie UTF-8 */ - GG_ENCODING_INVALID = -1 /**< Nieprawidłowe kodowanie */ -} gg_encoding_t; - -/** - * Sesja Gadu-Gadu. - * - * Tworzona przez funkcję \c gg_login(), zwalniana przez \c gg_free_session(). - * - * \ingroup login - */ -struct gg_session { - gg_common_head(struct gg_session) - - int async; /**< Flaga połączenia asynchronicznego */ - int pid; /**< Numer procesu rozwiązującego nazwę serwera */ - int port; /**< Port serwera */ - int seq; /**< Numer sekwencyjny ostatniej wiadomości */ - int last_pong; /**< Czas otrzymania ostatniej ramki utrzymaniowej */ - int last_event; /**< Czas otrzymania ostatniego pakietu */ - - struct gg_event *event; /**< Zdarzenie po wywołaniu \c callback */ - - uint32_t proxy_addr; /**< Adres serwera pośredniczącego */ - uint16_t proxy_port; /**< Port serwera pośredniczącego */ - - uint32_t hub_addr; /**< Adres huba po rozwiązaniu nazwy */ - uint32_t server_addr; /**< Adres serwera otrzymany od huba */ - - uint32_t client_addr; /**< Adres gniazda dla połączeń bezpośrednich */ - uint16_t client_port; /**< Port gniazda dla połączeń bezpośrednich */ - - uint32_t external_addr; /**< Publiczny adres dla połączeń bezpośrednich */ - uint16_t external_port; /**< Publiczny port dla połączeń bezpośrednich */ - - uin_t uin; /**< Własny numer Gadu-Gadu */ - char *password; /**< Hasło (zwalniane po użyciu) */ - - int initial_status; /**< Początkowy status */ - int status; /**< Aktualny status */ - - char *recv_buf; /**< Bufor na odbierany pakiety */ - int recv_done; /**< Liczba wczytanych bajtów pakietu */ - int recv_left; /**< Liczba pozostałych do wczytania bajtów pakietu */ - - int protocol_version; /**< Wersja protokołu (bez flag) */ - char *client_version; /**< Wersja klienta */ - int last_sysmsg; /**< Numer ostatniej wiadomości systemowej */ - - char *initial_descr; /**< Początkowy opis statusu */ - - void *resolver; /**< Dane prywatne procesu lub wątku rozwiązującego nazwę serwera */ - - char *header_buf; /**< Bufor na początek nagłówka pakietu */ - unsigned int header_done; /**< Liczba wczytanych bajtów nagłówka pakietu */ - -#ifdef GG_CONFIG_HAVE_OPENSSL - SSL *ssl; /**< Struktura TLS */ - SSL_CTX *ssl_ctx; /**< Kontekst sesji TLS */ -#else - void *ssl; /**< Struktura TLS */ - void *ssl_ctx; /**< Kontekst sesji TLS */ -#endif - - int image_size; /**< Maksymalny rozmiar obsługiwanych obrazków w KiB */ - - char *userlist_reply; /**< Bufor z odbieraną listą kontaktów */ - - int userlist_blocks; /**< Liczba części listy kontaktów */ - - struct gg_image_queue *images; /**< Lista wczytywanych obrazków */ - - int hash_type; /**< Rodzaj funkcji skrótu hasła (\c GG_LOGIN_HASH_GG32 lub \c GG_LOGIN_HASH_SHA1) */ - - char *send_buf; /**< Bufor z danymi do wysłania */ - int send_left; /**< Liczba bajtów do wysłania */ - - struct gg_dcc7 *dcc7_list; /**< Lista połączeń bezpośrednich skojarzonych z sesją */ - - int soft_timeout; /**< Flaga mówiąca, że po przekroczeniu \c timeout należy wywołać \c gg_watch_fd() */ - - int protocol_flags; /**< Flagi protokołu */ - - gg_encoding_t encoding; /**< Rodzaj kodowania znaków */ - - gg_resolver_t resolver_type; /**< Sposób rozwiązywania nazw serwerów */ - int (*resolver_start)(int *fd, void **private_data, const char *hostname); /**< Funkcja rozpoczynająca rozwiązywanie nazwy */ - void (*resolver_cleanup)(void **private_data, int force); /**< Funkcja zwalniająca zasoby po rozwiązaniu nazwy */ - - int protocol_features; /**< Opcje protokołu */ - int status_flags; /**< Flagi statusu */ - int recv_msg_count; /**< Liczba odebranych wiadomości */ -}; - -/** - * Połączenie HTTP. - * - * Tworzone przez \c gg_http_connect(), zwalniane przez \c gg_http_free(). - * - * \ingroup http - */ -struct gg_http { - gg_common_head(struct gg_http) - - int async; /**< Flaga połączenia asynchronicznego */ - int pid; /**< Identyfikator procesu rozwiązującego nazwę serwera */ - int port; /**< Port */ - - char *query; /**< Zapytanie HTTP */ - char *header; /**< Odebrany nagłówek */ - int header_size; /**< Rozmiar wczytanego nagłówka */ - char *body; /**< Odebrana strona */ - unsigned int body_size; /**< Rozmiar strony */ - - void *data; /**< Dane prywatne usługi HTTP */ - - char *user_data; /**< Dane prywatne użytkownika (nie są zwalniane) */ - - void *resolver; /**< Dane prywatne procesu lub wątku rozwiązującego nazwę */ - - unsigned int body_done; /**< Liczba odebranych bajtów strony */ - - gg_resolver_t resolver_type; /**< Sposób rozwiązywania nazw serwerów */ - int (*resolver_start)(int *fd, void **private_data, const char *hostname); /**< Funkcja rozpoczynająca rozwiązywanie nazwy */ - void (*resolver_cleanup)(void **private_data, int force); /**< Funkcja zwalniająca zasoby po rozwiązaniu nazwy */ -}; - -/** \cond ignore */ - -#ifdef __GNUC__ -#define GG_PACKED __attribute__ ((packed)) -#ifndef GG_IGNORE_DEPRECATED -#define GG_DEPRECATED __attribute__ ((deprecated)) -#else -#define GG_DEPRECATED -#endif -#else -#define GG_PACKED -#define GG_DEPRECATED -#endif - -/** \endcond */ - -#define GG_MAX_PATH 276 /**< Maksymalny rozmiar nazwy pliku w strukturze \c gg_file_info */ - -/** - * Odpowiednik struktury WIN32_FIND_DATA z API WIN32. - * - * Wykorzystywana przy połączeniach bezpośrednich do wersji Gadu-Gadu 6.x. - */ -struct gg_file_info { - uint32_t mode; /**< dwFileAttributes */ - uint32_t ctime[2]; /**< ftCreationTime */ - uint32_t atime[2]; /**< ftLastAccessTime */ - uint32_t mtime[2]; /**< ftLastWriteTime */ - uint32_t size_hi; /**< nFileSizeHigh */ - uint32_t size; /**< nFileSizeLow */ - uint32_t reserved0; /**< dwReserved0 */ - uint32_t reserved1; /**< dwReserved1 */ - unsigned char filename[GG_MAX_PATH - 14]; /**< cFileName */ - unsigned char short_filename[14]; /**< cAlternateFileName */ -} /** \cond ignore */ GG_PACKED /** \endcond */; - -/** - * Połączenie bezpośrednie do wersji Gadu-Gadu 6.x. - * - * Tworzone przez \c gg_dcc_socket_create(), \c gg_dcc_get_file(), - * \c gg_dcc_send_file() lub \c gg_dcc_voice_chat(), zwalniane przez - * \c gg_dcc_free(). - * - * \ingroup dcc6 - */ -struct gg_dcc { - gg_common_head(struct gg_dcc) - - struct gg_event *event; /**< Zdarzenie po wywołaniu \c callback */ - - int active; /**< Flaga połączenia aktywnego (nieużywana) */ - int port; /**< Port gniazda nasłuchującego */ - uin_t uin; /**< Własny numer Gadu-Gadu */ - uin_t peer_uin; /**< Numer Gadu-Gadu drugiej strony połączenia */ - int file_fd; /**< deskryptor pliku */ - unsigned int offset; /**< Położenie w pliku */ - unsigned int chunk_size; - /**< Rozmiar kawałka pliku */ - unsigned int chunk_offset; - /**< Położenie w aktualnym kawałku pliku */ - struct gg_file_info file_info; - /**< Informacje o pliku */ - int established; /**< Flaga ustanowienia połączenia */ - char *voice_buf; /**< Bufor na pakiet połączenia głosowego */ - int incoming; /**< Flaga połączenia przychodzącego */ - char *chunk_buf; /**< Bufor na fragment danych */ - uint32_t remote_addr; /**< Adres drugiej strony */ - uint16_t remote_port; /**< Port drugiej strony */ -}; - -#define GG_DCC7_HASH_LEN 20 /**< Maksymalny rozmiar skrótu pliku w połączeniach bezpośrenich */ -#define GG_DCC7_FILENAME_LEN 255 /**< Maksymalny rozmiar nazwy pliku w połączeniach bezpośrednich */ -#define GG_DCC7_INFO_LEN 32 /**< Maksymalny rozmiar informacji o połączeniach bezpośrednich */ -#define GG_DCC7_INFO_HASH_LEN 32 /**< Maksymalny rozmiar skrótu ip informacji o połączeniach bezpośrednich */ - -/** - * Połączenie bezpośrednie od wersji Gadu-Gadu 7.x. - * - * \ingroup dcc7 - */ -struct gg_dcc7 { - gg_common_head(struct gg_dcc7) - - gg_dcc7_id_t cid; /**< Identyfikator połączenia */ - - struct gg_event *event; /**< Struktura zdarzenia */ - - uin_t uin; /**< Własny numer Gadu-Gadu */ - uin_t peer_uin; /**< Numer Gadu-Gadu drugiej strony połączenia */ - - int file_fd; /**< Deskryptor przesyłanego pliku */ - unsigned int offset; /**< Aktualne położenie w przesyłanym pliku */ - unsigned int size; /**< Rozmiar przesyłanego pliku */ - unsigned char filename[GG_DCC7_FILENAME_LEN + 1]; - /**< Nazwa przesyłanego pliku */ - unsigned char hash[GG_DCC7_HASH_LEN]; - /**< Skrót SHA1 przesyłanego pliku */ - - int dcc_type; /**< Rodzaj połączenia bezpośredniego */ - int established; /**< Flaga ustanowienia połączenia */ - int incoming; /**< Flaga połączenia przychodzącego */ - int reverse; /**< Flaga połączenia zwrotnego */ - - uint32_t local_addr; /**< Adres lokalny */ - uint16_t local_port; /**< Port lokalny */ - - uint32_t remote_addr; /**< Adres drugiej strony */ - uint16_t remote_port; /**< Port drugiej strony */ - - struct gg_session *sess; - /**< Sesja do której przypisano połączenie */ - struct gg_dcc7 *next; /**< Następne połączenie w liście */ - - int soft_timeout; /**< Flaga mówiąca, że po przekroczeniu \c timeout należy wywołać \c gg_dcc7_watch_fd() */ - int seek; /**< Flaga mówiąca, że można zmieniać położenie w wysyłanym pliku */ - - void *resolver; /**< Dane prywatne procesu lub wątku rozwiązującego nazwę serwera */ - - int relay; /**< Flaga mówiąca, że laczymy sie przez serwer */ - int relay_index; /**< Numer serwera pośredniczącego, do którego się łączymy */ - int relay_count; /**< Rozmiar listy serwerów pośredniczących */ - struct gg_dcc7_relay *relay_list; /**< Lista serwerów pośredniczących */ -}; - -/** - * Rodzaj sesji. - */ -enum gg_session_t { - GG_SESSION_GG = 1, /**< Połączenie z serwerem Gadu-Gadu */ - GG_SESSION_HTTP, /**< Połączenie HTTP */ - GG_SESSION_SEARCH, /**< Wyszukiwanie w katalogu publicznym (nieaktualne) */ - GG_SESSION_REGISTER, /**< Rejestracja nowego konta */ - GG_SESSION_REMIND, /**< Przypominanie hasła */ - GG_SESSION_PASSWD, /**< Zmiana hasła */ - GG_SESSION_CHANGE, /**< Zmiana informacji w katalogu publicznym (nieaktualne) */ - GG_SESSION_DCC, /**< Połączenie bezpośrednie (do wersji 6.x) */ - GG_SESSION_DCC_SOCKET, /**< Gniazdo nasłuchujące (do wersji 6.x) */ - GG_SESSION_DCC_SEND, /**< Wysyłanie pliku (do wersji 6.x) */ - GG_SESSION_DCC_GET, /**< Odbieranie pliku (do wersji 6.x) */ - GG_SESSION_DCC_VOICE, /**< Rozmowa głosowa (do wersji 6.x) */ - GG_SESSION_USERLIST_GET, /**< Import listy kontaktów z serwera (nieaktualne) */ - GG_SESSION_USERLIST_PUT, /**< Eksport listy kontaktów do serwera (nieaktualne) */ - GG_SESSION_UNREGISTER, /**< Usuwanie konta */ - GG_SESSION_USERLIST_REMOVE, /**< Usuwanie listy kontaktów z serwera (nieaktualne) */ - GG_SESSION_TOKEN, /**< Pobieranie tokenu */ - GG_SESSION_DCC7_SOCKET, /**< Gniazdo nasłuchujące (od wersji 7.x) */ - GG_SESSION_DCC7_SEND, /**< Wysyłanie pliku (od wersji 7.x) */ - GG_SESSION_DCC7_GET, /**< Odbieranie pliku (od wersji 7.x) */ - GG_SESSION_DCC7_VOICE, /**< Rozmowa głosowa (od wersji 7.x) */ - - GG_SESSION_USER0 = 256, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER1, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER2, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER3, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER4, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER5, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER6, /**< Rodzaj zadeklarowany dla użytkownika */ - GG_SESSION_USER7 /**< Rodzaj zadeklarowany dla użytkownika */ -}; - -/** - * Aktualny stan sesji. - */ -enum gg_state_t { - /* wspólne */ - GG_STATE_IDLE = 0, /**< Nie dzieje się nic */ - GG_STATE_RESOLVING, /**< Oczekiwanie na rozwiązanie nazwy serwera */ - GG_STATE_CONNECTING, /**< Oczekiwanie na połączenie */ - GG_STATE_READING_DATA, /**< Oczekiwanie na dane */ - GG_STATE_ERROR, /**< Kod błędu w polu \c error */ - - /* gg_session */ - GG_STATE_CONNECTING_HUB, /**< Oczekiwanie na połączenie z hubem */ - GG_STATE_CONNECTING_GG, /**< Oczekiwanie na połączenie z serwerem */ - GG_STATE_READING_KEY, /**< Oczekiwanie na klucz */ - GG_STATE_READING_REPLY, /**< Oczekiwanie na odpowiedź serwera */ - GG_STATE_CONNECTED, /**< Połączono z serwerem */ - - /* gg_http */ - GG_STATE_SENDING_QUERY, /**< Wysłano zapytanie HTTP */ - GG_STATE_READING_HEADER, /**< Oczekiwanie na nagłówek HTTP */ - GG_STATE_PARSING, /**< Przetwarzanie danych */ - GG_STATE_DONE, /**< Połączenie zakończone */ - - /* gg_dcc */ - GG_STATE_LISTENING, /* czeka na połączenia */ - GG_STATE_READING_UIN_1, /* czeka na uin peera */ - GG_STATE_READING_UIN_2, /* czeka na swój uin */ - GG_STATE_SENDING_ACK, /* wysyła potwierdzenie dcc */ - GG_STATE_READING_ACK, /* czeka na potwierdzenie dcc */ - GG_STATE_READING_REQUEST, /* czeka na komendę */ - GG_STATE_SENDING_REQUEST, /* wysyła komendę */ - GG_STATE_SENDING_FILE_INFO, /* wysyła informacje o pliku */ - GG_STATE_READING_PRE_FILE_INFO, /* czeka na pakiet przed file_info */ - GG_STATE_READING_FILE_INFO, /* czeka na informacje o pliku */ - GG_STATE_SENDING_FILE_ACK, /* wysyła potwierdzenie pliku */ - GG_STATE_READING_FILE_ACK, /* czeka na potwierdzenie pliku */ - GG_STATE_SENDING_FILE_HEADER, /* wysyła nagłówek pliku */ - GG_STATE_READING_FILE_HEADER, /* czeka na nagłówek */ - GG_STATE_GETTING_FILE, /* odbiera plik */ - GG_STATE_SENDING_FILE, /* wysyła plik */ - GG_STATE_READING_VOICE_ACK, /* czeka na potwierdzenie voip */ - GG_STATE_READING_VOICE_HEADER, /* czeka na rodzaj bloku voip */ - GG_STATE_READING_VOICE_SIZE, /* czeka na rozmiar bloku voip */ - GG_STATE_READING_VOICE_DATA, /* czeka na dane voip */ - GG_STATE_SENDING_VOICE_ACK, /* wysyła potwierdzenie voip */ - GG_STATE_SENDING_VOICE_REQUEST, /* wysyła żądanie voip */ - GG_STATE_READING_TYPE, /* czeka na typ połączenia */ - - /* nowe. bez sensu jest to API. */ - GG_STATE_TLS_NEGOTIATION, /**< Negocjacja połączenia szyfrowanego */ - - GG_STATE_REQUESTING_ID, /**< Oczekiwanie na nadanie identyfikatora połączenia bezpośredniego */ - GG_STATE_WAITING_FOR_ACCEPT, /**< Oczekiwanie na potwierdzenie lub odrzucenie połączenia bezpośredniego */ - GG_STATE_WAITING_FOR_INFO, /**< Oczekiwanie na informacje o połączeniu bezpośrednim */ - - GG_STATE_READING_ID, /**< Odebranie identyfikatora połączenia bezpośredniego */ - GG_STATE_SENDING_ID, /**< Wysłano identyfikator połączenia bezpośredniego */ - GG_STATE_RESOLVING_GG, /**< Oczekiwanie na rozwiązanie nazwy serwera Gadu-Gadu */ - - GG_STATE_RESOLVING_RELAY, /**< Oczekiwanie na rozwiązanie nazwy serwera pośredniczącego */ - GG_STATE_CONNECTING_RELAY, /**< Oczekiwanie na połączenie z serwerem pośredniczącym */ - GG_STATE_READING_RELAY, /**< Odbieranie danych */ - - GG_STATE_DISCONNECTING, /**< Oczekiwanie na potwierdzenie rozłączenia */ -}; - -/** - * Informacja o tym, czy biblioteka chce zapisywać i/lub czytać - * z deskryptora. Maska bitowa. - * - * \ingroup events - */ -enum gg_check_t { - GG_CHECK_NONE = 0, /**< Nie sprawdzaj niczego */ - GG_CHECK_WRITE = 1, /**< Sprawdź możliwość zapisu */ - GG_CHECK_READ = 2 /**< Sprawdź możliwość odczytu */ -}; - -/** - * Flaga połączenia szyfrowanego. - * - * \ingroup login - */ -typedef enum { - GG_SSL_DISABLED = 0, /**< Połączenie SSL wyłączone */ - GG_SSL_ENABLED, /**< Połączenie SSL włączone gdy dostępne */ - GG_SSL_REQUIRED /**< Połączenie SSL wymagane */ -} gg_ssl_t; - -/** - * Parametry połączenia z serwerem Gadu-Gadu. Parametry zostały przeniesione - * do struktury, by uniknąć zmian API po rozszerzeniu protokołu i dodaniu - * kolejnych opcji połączenia. Część parametrów, które nie są już aktualne - * lub nie mają znaczenia, została usunięta z dokumentacji. - * - * \ingroup login - */ -struct gg_login_params { - uin_t uin; /**< Numer Gadu-Gadu */ - char *password; /**< Hasło */ - int async; /**< Flaga asynchronicznego połączenia (domyślnie nie) */ - int status; /**< Początkowy status użytkownika (domyślnie \c GG_STATUS_AVAIL) */ - char *status_descr; /**< Początkowy opis użytkownika (domyślnie brak) */ - uint32_t server_addr; /**< Adres serwera Gadu-Gadu (domyślnie pobierany automatycznie) */ - uint16_t server_port; /**< Port serwera Gadu-Gadu (domyślnie pobierany automatycznie) */ - uint32_t client_addr; /**< Adres połączeń bezpośrednich (domyślnie dobierany automatycznie) */ - uint16_t client_port; /**< Port połączeń bezpośrednich (domyślnie dobierany automatycznie) */ - int protocol_version; /**< Wersja protokołu wysyłana do serwera (domyślnie najnowsza obsługiwana) */ - char *client_version; /**< Wersja klienta wysyłana do serwera (domyślnie najnowsza znana) */ - int has_audio; /**< Flaga obsługi połączeń głosowych */ - int last_sysmsg; /**< Numer ostatnio odebranej wiadomości systemowej */ - uint32_t external_addr; /**< Adres publiczny dla połączeń bezpośrednich (domyślnie dobierany automatycznie) */ - uint16_t external_port; /**< Port publiczny dla połączeń bezpośrednich (domyślnie dobierany automatycznie) */ - int tls; /**< Flaga połączenia szyfrowanego (patrz \ref gg_ssl_t) */ - int image_size; /**< Maksymalny rozmiar obsługiwanych obrazków w kilobajtach */ -#ifndef DOXYGEN - int era_omnix; /**< Flaga udawania klienta Era Omnix (nieaktualna) */ -#endif - int hash_type; /**< Rodzaj skrótu hasła (\c GG_LOGIN_HASH_GG32 lub \c GG_LOGIN_HASH_SHA1, domyślnie SHA1) */ - gg_encoding_t encoding; /**< Rodzaj kodowania używanego w sesji (domyślnie CP1250) */ - gg_resolver_t resolver; /**< Sposób rozwiązywania nazw (patrz \ref build-resolver) */ - int protocol_features; /**< Opcje protokołu (flagi GG_FEATURE_*). */ - int status_flags; /**< Flagi statusu (flagi GG_STATUS_FLAG_*, patrz \ref status). */ - -#ifndef DOXYGEN - char dummy[1 * sizeof(int)]; /**< \internal Miejsce na kilka kolejnych - parametrów, żeby wraz z dodawaniem kolejnych - parametrów nie zmieniał się rozmiar struktury */ -#endif - -}; - -struct gg_session *gg_login(const struct gg_login_params *p); -void gg_free_session(struct gg_session *sess); -void gg_logoff(struct gg_session *sess); -int gg_change_status(struct gg_session *sess, int status); -int gg_change_status_descr(struct gg_session *sess, int status, const char *descr); -int gg_change_status_descr_time(struct gg_session *sess, int status, const char *descr, int time); -int gg_change_status_flags(struct gg_session *sess, int flags); -int gg_send_message(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message); -int gg_send_message_richtext(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message, const unsigned char *format, int formatlen); -int gg_send_message_confer(struct gg_session *sess, int msgclass, int recipients_count, uin_t *recipients, const unsigned char *message); -int gg_send_message_confer_richtext(struct gg_session *sess, int msgclass, int recipients_count, uin_t *recipients, const unsigned char *message, const unsigned char *format, int formatlen); -int gg_send_message_ctcp(struct gg_session *sess, int msgclass, uin_t recipient, const unsigned char *message, int message_len); -int gg_ping(struct gg_session *sess); -int gg_userlist_request(struct gg_session *sess, char type, const char *request); -int gg_userlist100_request(struct gg_session *sess, char type, unsigned int version, char format_type, const char *request); -int gg_image_request(struct gg_session *sess, uin_t recipient, int size, uint32_t crc32); -int gg_image_reply(struct gg_session *sess, uin_t recipient, const char *filename, const char *image, int size); -int gg_typing_notification(struct gg_session *sess, uin_t recipient, int length); - -uint32_t gg_crc32(uint32_t crc, const unsigned char *buf, int len); - -int gg_session_set_resolver(struct gg_session *gs, gg_resolver_t type); -gg_resolver_t gg_session_get_resolver(struct gg_session *gs); -int gg_session_set_custom_resolver(struct gg_session *gs, int (*resolver_start)(int*, void**, const char*), void (*resolver_cleanup)(void**, int)); - -int gg_http_set_resolver(struct gg_http *gh, gg_resolver_t type); -gg_resolver_t gg_http_get_resolver(struct gg_http *gh); -int gg_http_set_custom_resolver(struct gg_http *gh, int (*resolver_start)(int*, void**, const char*), void (*resolver_cleanup)(void**, int)); - -int gg_global_set_resolver(gg_resolver_t type); -gg_resolver_t gg_global_get_resolver(void); -int gg_global_set_custom_resolver(int (*resolver_start)(int*, void**, const char*), void (*resolver_cleanup)(void**, int)); - -int gg_multilogon_disconnect(struct gg_session *gs, gg_multilogon_id_t conn_id); - -/** - * Rodzaj zdarzenia. - * - * \ingroup events - */ -enum gg_event_t { - GG_EVENT_NONE = 0, /**< Nie wydarzyło się nic wartego uwagi */ - GG_EVENT_MSG, /**< \brief Otrzymano wiadomość. Przekazuje również wiadomości systemowe od numeru 0. */ - GG_EVENT_NOTIFY, /**< \brief Informacja o statusach osób z listy kontaktów (przed 6.0). Zdarzenie należy obsługiwać, jeśli planuje się używać protokołu w wersji starszej niż domyślna. Ostatni element tablicy zawiera uin równy 0, a pozostałe pola są niezainicjowane. */ - GG_EVENT_NOTIFY_DESCR, /**< \brief Informacja o statusie opisowym osoby z listy kontaktów (przed 6.0). Zdarzenie należy obsługiwać, jeśli planuje się używać protokołu w wersji starszej niż domyślna. */ - GG_EVENT_STATUS, /**< \brief Zmiana statusu osoby z listy kontaktów (przed 6.0). Zdarzenie należy obsługiwać, jeśli planuje się używać protokołu w wersji starszej niż domyślna. */ - GG_EVENT_ACK, /**< Potwierdzenie doręczenia wiadomości */ - GG_EVENT_PONG, /**< \brief Utrzymanie połączenia. Obecnie serwer nie wysyła już do klienta ramek utrzymania połączenia, polega wyłącznie na wysyłaniu ramek przez klienta. */ - GG_EVENT_CONN_FAILED, /**< \brief Nie udało się połączyć */ - GG_EVENT_CONN_SUCCESS, /**< \brief Połączono z serwerem. Pierwszą rzeczą, jaką należy zrobić jest wysłanie listy kontaktów. */ - GG_EVENT_DISCONNECT, /**< \brief Serwer zrywa połączenie. Zdarza się, gdy równolegle do serwera podłączy się druga sesja i trzeba zerwać połączenie z pierwszą. */ - - GG_EVENT_DCC_NEW, /**< Nowe połączenie bezpośrednie (6.x) */ - GG_EVENT_DCC_ERROR, /**< Błąd połączenia bezpośredniego (6.x) */ - GG_EVENT_DCC_DONE, /**< Zakończono połączenie bezpośrednie (6.x) */ - GG_EVENT_DCC_CLIENT_ACCEPT, /**< Moment akceptacji klienta w połączeniu bezpośrednim (6.x) */ - GG_EVENT_DCC_CALLBACK, /**< Zwrotne połączenie bezpośrednie (6.x) */ - GG_EVENT_DCC_NEED_FILE_INFO, /**< Należy wypełnić \c file_info dla połączenia bezpośredniego (6.x) */ - GG_EVENT_DCC_NEED_FILE_ACK, /**< Czeka na potwierdzenie pliku w połączeniu bezpośrednim (6.x) */ - GG_EVENT_DCC_NEED_VOICE_ACK, /**< Czeka na potwierdzenie rozmowy w połączeniu bezpośrednim (6.x) */ - GG_EVENT_DCC_VOICE_DATA, /**< Dane bezpośredniego połączenia głosowego (6.x) */ - - GG_EVENT_PUBDIR50_SEARCH_REPLY, /**< Odpowiedź katalogu publicznego */ - GG_EVENT_PUBDIR50_READ, /**< Odczytano własne dane z katalogu publicznego */ - GG_EVENT_PUBDIR50_WRITE, /**< Zmieniono własne dane w katalogu publicznym */ - - GG_EVENT_STATUS60, /**< Zmiana statusu osoby z listy kontaktów */ - GG_EVENT_NOTIFY60, /**< Informacja o statusach osób z listy kontaktów. Ostatni element tablicy zawiera uin równy 0, a pozostałe pola są niezainicjowane. */ - GG_EVENT_USERLIST, /**< Wynik importu lub eksportu listy kontaktów */ - GG_EVENT_IMAGE_REQUEST, /**< Żądanie przesłania obrazka z wiadomości */ - GG_EVENT_IMAGE_REPLY, /**< Przysłano obrazek z wiadomości */ - GG_EVENT_DCC_ACK, /**< Potwierdzenie transmisji w połączeniu bezpośrednim (6.x) */ - - GG_EVENT_DCC7_NEW, /**< Nowe połączenie bezpośrednie (7.x) */ - GG_EVENT_DCC7_ACCEPT, /**< Zaakceptowano połączenie bezpośrednie (7.x), nowy deskryptor */ - GG_EVENT_DCC7_REJECT, /**< Odrzucono połączenie bezpośrednie (7.x) */ - GG_EVENT_DCC7_CONNECTED, /**< Zestawiono połączenie bezpośrednie (7.x), nowy deskryptor */ - GG_EVENT_DCC7_ERROR, /**< Błąd połączenia bezpośredniego (7.x) */ - GG_EVENT_DCC7_DONE, /**< Zakończono połączenie bezpośrednie (7.x) */ - GG_EVENT_DCC7_PENDING, /**< Trwa próba połączenia bezpośredniego (7.x), nowy deskryptor */ - - GG_EVENT_XML_EVENT, /**< Otrzymano komunikat systemowy (7.7) */ - GG_EVENT_DISCONNECT_ACK, /**< \brief Potwierdzenie zakończenia sesji. Informuje o tym, że zmiana stanu na niedostępny z opisem dotarła do serwera i można zakończyć połączenie TCP. */ - GG_EVENT_TYPING_NOTIFICATION, /**< Powiadomienie o pisaniu */ - GG_EVENT_USER_DATA, /**< Informacja o kontaktach */ - GG_EVENT_MULTILOGON_MSG, /**< Wiadomość wysłana z innej sesji multilogowania */ - GG_EVENT_MULTILOGON_INFO, /**< Informacja o innych sesjach multilogowania */ - - GG_EVENT_USERLIST100_VERSION, /**< Otrzymano numer wersji listy kontaktów na serwerze (10.0) */ - GG_EVENT_USERLIST100_REPLY, /**< Wynik importu lub eksportu listy kontaktów (10.0) */ -}; - -#define GG_EVENT_SEARCH50_REPLY GG_EVENT_PUBDIR50_SEARCH_REPLY - -/** - * Powód nieudanego połączenia. - */ -enum gg_failure_t { - GG_FAILURE_RESOLVING = 1, /**< Nie znaleziono serwera */ - GG_FAILURE_CONNECTING, /**< Błąd połączenia */ - GG_FAILURE_INVALID, /**< Serwer zwrócił nieprawidłowe dane */ - GG_FAILURE_READING, /**< Zerwano połączenie podczas odczytu */ - GG_FAILURE_WRITING, /**< Zerwano połączenie podczas zapisu */ - GG_FAILURE_PASSWORD, /**< Nieprawidłowe hasło */ - GG_FAILURE_404, /**< Nieużywane */ - GG_FAILURE_TLS, /**< Błąd negocjacji szyfrowanego połączenia */ - GG_FAILURE_NEED_EMAIL, /**< Serwer rozłączył nas z prośbą o zmianę adresu e-mail */ - GG_FAILURE_INTRUDER, /**< Zbyt wiele prób połączenia z nieprawidłowym hasłem */ - GG_FAILURE_UNAVAILABLE, /**< Serwery są wyłączone */ - GG_FAILURE_PROXY, /**< Błąd serwera pośredniczącego */ - GG_FAILURE_HUB, /**< Błąd połączenia z hubem */ -}; - -/** - * Kod błędu danej operacji. - * - * Nie zawiera przesadnie szczegółowych informacji o powodach błędów, by nie - * komplikować ich obsługi. Jeśli wymagana jest większa dokładność, należy - * sprawdzić zawartość zmiennej systemowej \c errno. - */ -enum gg_error_t { - GG_ERROR_RESOLVING = 1, /**< Nie znaleziono hosta */ - GG_ERROR_CONNECTING, /**< Błąd połączenia */ - GG_ERROR_READING, /**< Błąd odczytu/odbierania */ - GG_ERROR_WRITING, /**< Błąd zapisu/wysyłania */ - - GG_ERROR_DCC_HANDSHAKE, /**< Błąd negocjacji */ - GG_ERROR_DCC_FILE, /**< Błąd odczytu/zapisu pliku */ - GG_ERROR_DCC_EOF, /**< Przedwczesny koniec pliku */ - GG_ERROR_DCC_NET, /**< Błąd wysyłania/odbierania */ - GG_ERROR_DCC_REFUSED, /**< Połączenie odrzucone */ - - GG_ERROR_DCC7_HANDSHAKE, /**< Błąd negocjacji */ - GG_ERROR_DCC7_FILE, /**< Błąd odczytu/zapisu pliku */ - GG_ERROR_DCC7_EOF, /**< Przedwczesny koniec pliku */ - GG_ERROR_DCC7_NET, /**< Błąd wysyłania/odbierania */ - GG_ERROR_DCC7_REFUSED, /**< Połączenie odrzucone */ - GG_ERROR_DCC7_RELAY, /**< Problem z serwerem pośredniczącym */ -}; - -/** - * Pole zapytania lub odpowiedzi katalogu publicznego. - */ -struct gg_pubdir50_entry { - int num; /**< Numer wyniku */ - char *field; /**< Nazwa pola */ - char *value; /**< Wartość pola */ -} /* GG_DEPRECATED */; - -/** - * Zapytanie lub odpowiedź katalogu publicznego. - * - * Patrz \c gg_pubdir50_t. - */ -struct gg_pubdir50_s { - int count; /**< Liczba wyników odpowiedzi */ - uin_t next; /**< Numer początkowy następnego zapytania */ - int type; /**< Rodzaj zapytania */ - uint32_t seq; /**< Numer sekwencyjny */ - struct gg_pubdir50_entry *entries; /**< Pola zapytania lub odpowiedzi */ - int entries_count; /**< Liczba pól */ -} /* GG_DEPRECATED */; - -/** - * Zapytanie lub odpowiedź katalogu publicznego. - * - * Do pól nie należy się odwoływać bezpośrednio -- wszystkie niezbędne - * informacje są dostępne za pomocą funkcji \c gg_pubdir50_* - */ -typedef struct gg_pubdir50_s *gg_pubdir50_t; - -/** - * Opis zdarzeń \c GG_EVENT_MSG i \c GG_EVENT_MULTILOGON_MSG. - */ -struct gg_event_msg { - uin_t sender; /**< Numer nadawcy/odbiorcy */ - int msgclass; /**< Klasa wiadomości */ - time_t time; /**< Czas nadania */ - unsigned char *message; /**< Treść wiadomości */ - - int recipients_count; /**< Liczba odbiorców konferencji */ - uin_t *recipients; /**< Odbiorcy konferencji */ - - int formats_length; /**< Długość informacji o formatowaniu tekstu */ - void *formats; /**< Informacje o formatowaniu tekstu */ - uint32_t seq; /**< Numer sekwencyjny wiadomości */ - - char *xhtml_message; /**< Treść wiadomości w formacie XHTML (może być równe \c NULL, jeśli wiadomość nie zawiera treści XHTML) */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_NOTIFY_DESCR. - */ -struct gg_event_notify_descr { - struct gg_notify_reply *notify; /**< Informacje o liście kontaktów */ - char *descr; /**< Opis status */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_STATUS. - */ -struct gg_event_status { - uin_t uin; /**< Numer Gadu-Gadu */ - uint32_t status; /**< Nowy status */ - char *descr; /**< Opis */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_STATUS60. - */ -struct gg_event_status60 { - uin_t uin; /**< Numer Gadu-Gadu */ - int status; /**< Nowy status */ - uint32_t remote_ip; /**< Adres IP dla połączeń bezpośrednich */ - uint16_t remote_port; /**< Port dla połączeń bezpośrednich */ - int version; /**< Wersja protokołu */ - int image_size; /**< Maksymalny rozmiar obsługiwanych obrazków w KiB */ - char *descr; /**< Opis statusu */ - time_t time; /**< Czas powrotu */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_NOTIFY_REPLY60. - */ -struct gg_event_notify60 { - uin_t uin; /**< Numer Gadu-Gadu. W ostatnim elemencie jest równy 0, a pozostałe pola są niezainicjowane. */ - int status; /**< Nowy status */ - uint32_t remote_ip; /**< Adres IP dla połączeń bezpośrednich */ - uint16_t remote_port; /**< Port dla połączeń bezpośrednich */ - int version; /**< Wersja protokołu */ - int image_size; /**< Maksymalny rozmiar obsługiwanych obrazków w KiB */ - char *descr; /**< Opis statusu */ - time_t time; /**< Czas powrotu */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_ACK. - */ -struct gg_event_ack { - uin_t recipient; /**< Numer odbiorcy */ - int status; /**< Status doręczenia */ - int seq; /**< Numer sekwencyjny wiadomości */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_USERLIST. - */ -struct gg_event_userlist { - char type; /**< Rodzaj odpowiedzi */ - char *reply; /**< Treść odpowiedzi */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC_VOICE_DATA. - */ -struct gg_event_dcc_voice_data { - uint8_t *data; /**< Dane dźwiękowe */ - int length; /**< Rozmiar danych dźwiękowych */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_IMAGE_REQUEST. - */ -struct gg_event_image_request { - uin_t sender; /**< Nadawca żądania */ - uint32_t size; /**< Rozmiar obrazka */ - uint32_t crc32; /**< Suma kontrolna CRC32 */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_IMAGE_REPLY. - */ -struct gg_event_image_reply { - uin_t sender; /**< Nadawca obrazka */ - uint32_t size; /**< Rozmiar obrazka */ - uint32_t crc32; /**< Suma kontrolna CRC32 */ - char *filename; /**< Nazwa pliku */ - char *image; /**< Bufor z obrazkiem */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_XML_EVENT. - */ -struct gg_event_xml_event { - char *data; /**< Bufor z komunikatem */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC7_CONNECTED. - */ -struct gg_event_dcc7_connected { - struct gg_dcc7 *dcc7; /**< Struktura połączenia */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC7_PENDING. - */ -struct gg_event_dcc7_pending { - struct gg_dcc7 *dcc7; /**< Struktura połączenia */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC7_REJECT. - */ -struct gg_event_dcc7_reject { - struct gg_dcc7 *dcc7; /**< Struktura połączenia */ - int reason; /**< powód odrzucenia */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC7_ACCEPT. - */ -struct gg_event_dcc7_accept { - struct gg_dcc7 *dcc7; /**< Struktura połączenia */ - int type; /**< Sposób połączenia (P2P, przez serwer) */ - uint32_t remote_ip; /**< Adres zdalnego klienta */ - uint16_t remote_port; /**< Port zdalnego klienta */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_DCC7_DONE. - */ -struct gg_event_dcc7_done { - struct gg_dcc7 *dcc7; /**< Struktura połączenia */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_TYPING_NOTIFICATION. - */ -struct gg_event_typing_notification { - uin_t uin; /**< Numer rozmówcy */ - int length; /**< Długość tekstu */ -}; - -/** - * Atrybut użytkownika. - */ -struct gg_event_user_data_attr { - int type; /**< Typ atrybutu */ - char *key; /**< Klucz */ - char *value; /**< Wartość */ -}; - -/** - * Struktura opisująca kontakt w zdarzeniu GG_EVENT_USER_DATA. - */ -struct gg_event_user_data_user { - uin_t uin; /**< Numer kontaktu */ - size_t attr_count; /**< Liczba atrybutów */ - struct gg_event_user_data_attr *attrs; /**< Lista atrybutów */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_USER_DATA. - */ -struct gg_event_user_data { - int type; /**< Rodzaj informacji o kontaktach */ - size_t user_count; /**< Liczba kontaktów */ - struct gg_event_user_data_user *users; /**< Lista kontaktów */ -}; - -/** - * Struktura opisująca sesję multilogowania. - */ -struct gg_multilogon_session { - gg_multilogon_id_t id; /**< Identyfikator sesji */ - char *name; /**< Nazwa sesji (podana w \c gg_login_params.client_version) */ - uint32_t remote_addr; /**< Adres sesji */ - int status_flags; /**< Flagi statusu sesji */ - int protocol_features; /**< Opcje protokolu sesji */ - time_t logon_time; /**< Czas zalogowania */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_MULTILOGON_INFO. - */ -struct gg_event_multilogon_info { - int count; /**< Liczba sesji */ - struct gg_multilogon_session *sessions; /** Lista sesji */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_USERLIST100_VERSION. - */ -struct gg_event_userlist100_version { - uint32_t version; /**< Numer wersji listy kontaktów na serwerze */ -}; - -/** - * Opis zdarzenia \c GG_EVENT_USERLIST100_REPLY. - */ -struct gg_event_userlist100_reply { - char type; /**< Rodzaj odpowiedzi */ - uint32_t version; /**< Aktualna wersja listy kontaktów na serwerze */ - char format_type; /**< Typ formatu listy kontaktów (żądany w \c gg_userlist100_request.format_type) */ - char *reply; /**< Treść listy kontaktów w przesyłanej wersji i formacie */ -}; - -/** - * Unia wszystkich zdarzeń zwracanych przez funkcje \c gg_watch_fd(), - * \c gg_dcc_watch_fd() i \c gg_dcc7_watch_fd(). - * - * \ingroup events - */ -union gg_event_union { - enum gg_failure_t failure; /**< Błąd połączenia (\c GG_EVENT_CONN_FAILED) */ - struct gg_notify_reply *notify; /**< Zmiana statusu kontaktów (\c GG_EVENT_NOTIFY) */ - struct gg_event_notify_descr notify_descr; /**< Zmiana statusu kontaktów (\c GG_EVENT_NOTIFY_DESCR) */ - struct gg_event_status status; /**< Zmiana statusu kontaktów (\c GG_EVENT_STATUS) */ - struct gg_event_status60 status60; /**< Zmiana statusu kontaktów (\c GG_EVENT_STATUS60) */ - struct gg_event_notify60 *notify60; /**< Zmiana statusu kontaktów (\c GG_EVENT_NOTIFY60) */ - struct gg_event_msg msg; /**< Otrzymano wiadomość (\c GG_EVENT_MSG) */ - struct gg_event_ack ack; /**< Potwierdzenie wiadomości (\c GG_EVENT_ACK) */ - struct gg_event_image_request image_request; /**< Żądanie wysłania obrazka (\c GG_EVENT_IMAGE_REQUEST) */ - struct gg_event_image_reply image_reply; /**< Odpowiedź z obrazkiem (\c GG_EVENT_IMAGE_REPLY) */ - struct gg_event_userlist userlist; /**< Odpowiedź listy kontaktów (\c GG_EVENT_USERLIST) */ - gg_pubdir50_t pubdir50; /**< Odpowiedź katalogu publicznego (\c GG_EVENT_PUBDIR50_*) */ - struct gg_event_xml_event xml_event; /**< Zdarzenie systemowe (\c GG_EVENT_XML_EVENT) */ - struct gg_dcc *dcc_new; /**< Nowe połączenie bezpośrednie (\c GG_EVENT_DCC_NEW) */ - enum gg_error_t dcc_error; /**< Błąd połączenia bezpośredniego (\c GG_EVENT_DCC_ERROR) */ - struct gg_event_dcc_voice_data dcc_voice_data; /**< Dane połączenia głosowego (\c GG_EVENT_DCC_VOICE_DATA) */ - struct gg_dcc7 *dcc7_new; /**< Nowe połączenie bezpośrednie (\c GG_EVENT_DCC7_NEW) */ - enum gg_error_t dcc7_error; /**< Błąd połączenia bezpośredniego (\c GG_EVENT_DCC7_ERROR) */ - struct gg_event_dcc7_connected dcc7_connected; /**< Informacja o zestawieniu połączenia bezpośredniego (\c GG_EVENT_DCC7_CONNECTED) */ - struct gg_event_dcc7_pending dcc7_pending; /**< Trwa próba połączenia bezpośredniego (\c GG_EVENT_DCC7_PENDING) */ - struct gg_event_dcc7_reject dcc7_reject; /**< Odrzucono połączenia bezpośredniego (\c GG_EVENT_DCC7_REJECT) */ - struct gg_event_dcc7_accept dcc7_accept; /**< Zaakceptowano połączenie bezpośrednie (\c GG_EVENT_DCC7_ACCEPT) */ - struct gg_event_dcc7_done dcc7_done; /**< Zakończono połączenie bezpośrednie (\c GG_EVENT_DCC7_DONE) */ - struct gg_event_typing_notification typing_notification; /**< Powiadomienie o pisaniu */ - struct gg_event_user_data user_data; /**< Informacje o kontaktach */ - struct gg_event_msg multilogon_msg; /**< Inna sesja wysłała wiadomość (\c GG_EVENT_MULTILOGON_MSG) */ - struct gg_event_multilogon_info multilogon_info; /**< Informacja o innych sesjach multilogowania (\c GG_EVENT_MULTILOGON_INFO) */ - struct gg_event_userlist100_version userlist100_version; /**< Informacja o numerze wersji listy kontaktów na serwerze (\c GG_EVENT_USERLIST100_VERSION) */ - struct gg_event_userlist100_reply userlist100_reply; /**< Odpowiedź listy kontaktów (10.0) (\c GG_EVENT_USERLIST100_REPLY) */ -}; - -/** - * Opis zdarzenia. - * - * Zwracany przez funkcje \c gg_watch_fd(), \c gg_dcc_watch_fd() - * i \c gg_dcc7_watch_fd(). Po przeanalizowaniu należy zwolnić - * za pomocą \c gg_event_free(). - * - * \ingroup events - */ -struct gg_event { - int type; /**< Rodzaj zdarzenia */ - union gg_event_union event; /**< Informacja o zdarzeniu */ -}; - -struct gg_event *gg_watch_fd(struct gg_session *sess); -void gg_event_free(struct gg_event *e); - -int gg_notify_ex(struct gg_session *sess, uin_t *userlist, char *types, int count); -int gg_notify(struct gg_session *sess, uin_t *userlist, int count); -int gg_add_notify_ex(struct gg_session *sess, uin_t uin, char type); -int gg_add_notify(struct gg_session *sess, uin_t uin); -int gg_remove_notify_ex(struct gg_session *sess, uin_t uin, char type); -int gg_remove_notify(struct gg_session *sess, uin_t uin); - -struct gg_http *gg_http_connect(const char *hostname, int port, int async, const char *method, const char *path, const char *header); -int gg_http_watch_fd(struct gg_http *h); -void gg_http_stop(struct gg_http *h); -void gg_http_free(struct gg_http *h); - -uint32_t gg_pubdir50(struct gg_session *sess, gg_pubdir50_t req); -gg_pubdir50_t gg_pubdir50_new(int type); -int gg_pubdir50_add(gg_pubdir50_t req, const char *field, const char *value); -int gg_pubdir50_seq_set(gg_pubdir50_t req, uint32_t seq); -const char *gg_pubdir50_get(gg_pubdir50_t res, int num, const char *field); -int gg_pubdir50_type(gg_pubdir50_t res); -int gg_pubdir50_count(gg_pubdir50_t res); -uin_t gg_pubdir50_next(gg_pubdir50_t res); -uint32_t gg_pubdir50_seq(gg_pubdir50_t res); -void gg_pubdir50_free(gg_pubdir50_t res); - -#ifndef DOXYGEN - -#define GG_PUBDIR50_UIN "FmNumber" -#define GG_PUBDIR50_STATUS "FmStatus" -#define GG_PUBDIR50_FIRSTNAME "firstname" -#define GG_PUBDIR50_LASTNAME "lastname" -#define GG_PUBDIR50_NICKNAME "nickname" -#define GG_PUBDIR50_BIRTHYEAR "birthyear" -#define GG_PUBDIR50_CITY "city" -#define GG_PUBDIR50_GENDER "gender" -#define GG_PUBDIR50_GENDER_FEMALE "1" -#define GG_PUBDIR50_GENDER_MALE "2" -#define GG_PUBDIR50_GENDER_SET_FEMALE "2" -#define GG_PUBDIR50_GENDER_SET_MALE "1" -#define GG_PUBDIR50_ACTIVE "ActiveOnly" -#define GG_PUBDIR50_ACTIVE_TRUE "1" -#define GG_PUBDIR50_START "fmstart" -#define GG_PUBDIR50_FAMILYNAME "familyname" -#define GG_PUBDIR50_FAMILYCITY "familycity" - -#else - -/** - * \ingroup pubdir50 - * - * Rodzaj pola zapytania. - */ -enum { - GG_PUBDIR50_UIN, /**< Numer Gadu-Gadu */ - GG_PUBDIR50_STATUS, /**< Status (tylko wynik wyszukiwania) */ - GG_PUBDIR50_FIRSTNAME, /**< Imię */ - GG_PUBDIR50_LASTNAME, /**< Nazwisko */ - GG_PUBDIR50_NICKNAME, /**< Pseudonim */ - GG_PUBDIR50_BIRTHYEAR, /**< Rok urodzenia lub przedział lat oddzielony spacją */ - GG_PUBDIR50_CITY, /**< Miejscowość */ - GG_PUBDIR50_GENDER, /**< Płeć */ - GG_PUBDIR50_ACTIVE, /**< Osoba dostępna (tylko wyszukiwanie) */ - GG_PUBDIR50_START, /**< Numer początkowy wyszukiwania (tylko wyszukiwanie) */ - GG_PUBDIR50_FAMILYNAME, /**< Nazwisko rodowe (tylko wysyłanie informacji o sobie) */ - GG_PUBDIR50_FAMILYCITY, /**< Miejscowość pochodzenia (tylko wysyłanie informacji o sobie) */ -}; - -/** - * \ingroup pubdir50 - * - * Wartość pola GG_PUBDIR50_GENDER przy wyszukiwaniu. Brak pola oznacza dowolną płeć. - */ -enum { - GG_PUBDIR50_GENDER_FEMALE, /**< Kobieta */ - GG_PUBDIR50_GENDER_MALE, /**< Mężczyzna */ -}; - -/** - * \ingroup pubdir50 - * - * Wartość pola GG_PUBDIR50_GENDER przy wysyłaniu informacji o sobie. - */ -enum { - GG_PUBDIR50_GENDER_SET_FEMALE, /**< Kobieta */ - GG_PUBDIR50_GENDER_SET_MALE, /**< Mężczyzna */ -}; - -/** - * \ingroup pubdir50 - * - * Wartość pola GG_PUBDIR50_ACTIVE. - */ -enum { - GG_PUBDIR50_ACTIVE_TRUE, /**< Wyszukaj tylko osoby dostępne */ -}; - -#endif /* DOXYGEN */ - -/** - * Wynik operacji na katalogu publicznym. - * - * \ingroup http - */ -struct gg_pubdir { - int success; /**< Flaga powodzenia operacji */ - uin_t uin; /**< Otrzymany numer lub 0 w przypadku błędu */ -}; - -int gg_pubdir_watch_fd(struct gg_http *f); -void gg_pubdir_free(struct gg_http *f); - -/** - * Token autoryzacji niektórych operacji HTTP. - * - * \ingroup token - */ -struct gg_token { - int width; /**< Szerokość obrazka */ - int height; /**< Wysokość obrazka */ - int length; /**< Liczba znaków w tokenie */ - char *tokenid; /**< Identyfikator tokenu */ -}; - -struct gg_http *gg_token(int async); -int gg_token_watch_fd(struct gg_http *h); -void gg_token_free(struct gg_http *h); - -struct gg_http *gg_register3(const char *email, const char *password, const char *tokenid, const char *tokenval, int async); -#ifndef DOXYGEN -#define gg_register_watch_fd gg_pubdir_watch_fd -#define gg_register_free gg_pubdir_free -#endif - -struct gg_http *gg_unregister3(uin_t uin, const char *password, const char *tokenid, const char *tokenval, int async); -#ifndef DOXYGEN -#define gg_unregister_watch_fd gg_pubdir_watch_fd -#define gg_unregister_free gg_pubdir_free -#endif - -struct gg_http *gg_remind_passwd3(uin_t uin, const char *email, const char *tokenid, const char *tokenval, int async); -#ifndef DOXYGEN -#define gg_remind_passwd_watch_fd gg_pubdir_watch_fd -#define gg_remind_passwd_free gg_pubdir_free -#endif - -struct gg_http *gg_change_passwd4(uin_t uin, const char *email, const char *passwd, const char *newpasswd, const char *tokenid, const char *tokenval, int async); -#ifndef DOXYGEN -#define gg_change_passwd_watch_fd gg_pubdir_watch_fd -#define gg_change_passwd_free gg_pubdir_free -#endif - -extern int gg_dcc_port; -extern unsigned long gg_dcc_ip; - -int gg_dcc_request(struct gg_session *sess, uin_t uin); - -struct gg_dcc *gg_dcc_send_file(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin); -struct gg_dcc *gg_dcc_get_file(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin); -struct gg_dcc *gg_dcc_voice_chat(uint32_t ip, uint16_t port, uin_t my_uin, uin_t peer_uin); -void gg_dcc_set_type(struct gg_dcc *d, int type); -int gg_dcc_fill_file_info(struct gg_dcc *d, const char *filename); -int gg_dcc_fill_file_info2(struct gg_dcc *d, const char *filename, const char *local_filename); -int gg_dcc_voice_send(struct gg_dcc *d, char *buf, int length); - -#define GG_DCC_VOICE_FRAME_LENGTH 195 /**< Rozmiar pakietu głosowego przed wersją Gadu-Gadu 5.0.5 */ -#define GG_DCC_VOICE_FRAME_LENGTH_505 326 /**< Rozmiar pakietu głosowego od wersji Gadu-Gadu 5.0.5 */ - -struct gg_dcc *gg_dcc_socket_create(uin_t uin, uint16_t port); -#ifndef DOXYGEN -#define gg_dcc_socket_free gg_dcc_free -#define gg_dcc_socket_watch_fd gg_dcc_watch_fd -#endif - -struct gg_event *gg_dcc_watch_fd(struct gg_dcc *d); - -void gg_dcc_free(struct gg_dcc *c); - -struct gg_event *gg_dcc7_watch_fd(struct gg_dcc7 *d); -struct gg_dcc7 *gg_dcc7_send_file(struct gg_session *sess, uin_t rcpt, const char *filename, const char *filename1250, const char *hash); -struct gg_dcc7 *gg_dcc7_send_file_fd(struct gg_session *sess, uin_t rcpt, int fd, size_t size, const char *filename1250, const char *hash); -int gg_dcc7_accept(struct gg_dcc7 *dcc, unsigned int offset); -int gg_dcc7_reject(struct gg_dcc7 *dcc, int reason); -void gg_dcc7_free(struct gg_dcc7 *d); - -extern int gg_debug_level; - -extern void (*gg_debug_handler)(int level, const char *format, va_list ap); -extern void (*gg_debug_handler_session)(struct gg_session *sess, int level, const char *format, va_list ap); - -extern FILE *gg_debug_file; - -/** - * \ingroup debug - * @{ - */ -#define GG_DEBUG_NET 1 /**< Rejestracja zdarzeń związanych z siecią */ -#define GG_DEBUG_TRAFFIC 2 /**< Rejestracja ruchu sieciowego */ -#define GG_DEBUG_DUMP 4 /**< Rejestracja zawartości pakietów */ -#define GG_DEBUG_FUNCTION 8 /**< Rejestracja wywołań funkcji */ -#define GG_DEBUG_MISC 16 /**< Rejestracja różnych informacji */ -/** @} */ - -#ifdef GG_DEBUG_DISABLE -#define gg_debug(x, y...) do { } while(0) -#define gg_debug_session(z, x, y...) do { } while(0) -#else -void gg_debug(int level, const char *format, ...); -void gg_debug_session(struct gg_session *sess, int level, const char *format, ...); -#endif - -const char *gg_libgadu_version(void); - -/** - * Lista funkcji biblioteki, które zależą od zewnętrznych bibliotek. - * - * \ingroup version - */ -typedef enum { - GG_LIBGADU_FEATURE_SSL, /**< Biblioteka obsługuje połączenia szyfrowane */ - GG_LIBGADU_FEATURE_PTHREAD, /**< Biblioteka obsługuje rozwiązywanie nazw za pomocą wątków */ - GG_LIBGADU_FEATURE_USERLIST100, /**< Biblioteka obsługuje listę kontaktów zgodną z Gadu-Gadu 10 */ -} gg_libgadu_feature_t; - -int gg_libgadu_check_feature(gg_libgadu_feature_t feature); - -extern int gg_proxy_enabled; -extern char *gg_proxy_host; -extern int gg_proxy_port; -extern char *gg_proxy_username; -extern char *gg_proxy_password; -extern int gg_proxy_http_only; - -extern unsigned long gg_local_ip; - -#define GG_LOGIN_HASH_GG32 0x01 /**< Algorytm Gadu-Gadu */ -#define GG_LOGIN_HASH_SHA1 0x02 /**< Algorytm SHA1 */ - -#ifndef DOXYGEN - -#define GG_PUBDIR50_WRITE 0x01 -#define GG_PUBDIR50_READ 0x02 -#define GG_PUBDIR50_SEARCH 0x03 -#define GG_PUBDIR50_SEARCH_REQUEST GG_PUBDIR50_SEARCH -#define GG_PUBDIR50_SEARCH_REPLY 0x05 - -#else - -/** - * \ingroup pubdir50 - * - * Rodzaj zapytania lub odpowiedzi katalogu publicznego. - */ -enum { - GG_PUBDIR50_WRITE, /**< Wysłanie do serwera informacji o sobie */ - GG_PUBDIR50_READ, /**< Pobranie z serwera informacji o sobie */ - GG_PUBDIR50_SEARCH, /**< Wyszukiwanie w katalogu publicznym */ - GG_PUBDIR50_SEARCH_REPLY, /**< Wynik wyszukiwania w katalogu publicznym */ -}; - -#endif /* DOXYGEN */ - -/** \cond obsolete */ - -#define gg_free_event gg_event_free -#define gg_free_http gg_http_free -#define gg_free_pubdir gg_pubdir_free -#define gg_free_register gg_pubdir_free -#define gg_free_remind_passwd gg_pubdir_free -#define gg_free_dcc gg_dcc_free -#define gg_free_change_passwd gg_pubdir_free - -struct gg_search_request { - int active; - unsigned int start; - char *nickname; - char *first_name; - char *last_name; - char *city; - int gender; - int min_birth; - int max_birth; - char *email; - char *phone; - uin_t uin; -} /* GG_DEPRECATED */; - -struct gg_search { - int count; - struct gg_search_result *results; -} GG_DEPRECATED; - -struct gg_search_result { - uin_t uin; - char *first_name; - char *last_name; - char *nickname; - int born; - int gender; - char *city; - int active; -} GG_DEPRECATED; - -#define GG_GENDER_NONE 0 -#define GG_GENDER_FEMALE 1 -#define GG_GENDER_MALE 2 - -struct gg_http *gg_search(const struct gg_search_request *r, int async) GG_DEPRECATED; -int gg_search_watch_fd(struct gg_http *f) GG_DEPRECATED; -void gg_free_search(struct gg_http *f) GG_DEPRECATED; -#define gg_search_free gg_free_search - -const struct gg_search_request *gg_search_request_mode_0(char *nickname, char *first_name, char *last_name, char *city, int gender, int min_birth, int max_birth, int active, int start) GG_DEPRECATED; -const struct gg_search_request *gg_search_request_mode_1(char *email, int active, int start) GG_DEPRECATED; -const struct gg_search_request *gg_search_request_mode_2(char *phone, int active, int start) GG_DEPRECATED; -const struct gg_search_request *gg_search_request_mode_3(uin_t uin, int active, int start) GG_DEPRECATED; -void gg_search_request_free(struct gg_search_request *r) GG_DEPRECATED; - -struct gg_http *gg_register(const char *email, const char *password, int async) GG_DEPRECATED; -struct gg_http *gg_register2(const char *email, const char *password, const char *qa, int async) GG_DEPRECATED; - -struct gg_http *gg_unregister(uin_t uin, const char *password, const char *email, int async) GG_DEPRECATED; -struct gg_http *gg_unregister2(uin_t uin, const char *password, const char *qa, int async) GG_DEPRECATED; - -struct gg_http *gg_remind_passwd(uin_t uin, int async) GG_DEPRECATED; -struct gg_http *gg_remind_passwd2(uin_t uin, const char *tokenid, const char *tokenval, int async) GG_DEPRECATED; - -struct gg_http *gg_change_passwd(uin_t uin, const char *passwd, const char *newpasswd, const char *newemail, int async) GG_DEPRECATED; -struct gg_http *gg_change_passwd2(uin_t uin, const char *passwd, const char *newpasswd, const char *email, const char *newemail, int async) GG_DEPRECATED; -struct gg_http *gg_change_passwd3(uin_t uin, const char *passwd, const char *newpasswd, const char *qa, int async) GG_DEPRECATED; - -struct gg_change_info_request { - char *first_name; - char *last_name; - char *nickname; - char *email; - int born; - int gender; - char *city; -} /* GG_DEPRECATED */; - -struct gg_change_info_request *gg_change_info_request_new(const char *first_name, const char *last_name, const char *nickname, const char *email, int born, int gender, const char *city) GG_DEPRECATED; -void gg_change_info_request_free(struct gg_change_info_request *r) GG_DEPRECATED; - -struct gg_http *gg_change_info(uin_t uin, const char *passwd, const struct gg_change_info_request *request, int async) GG_DEPRECATED; -#define gg_change_pubdir_watch_fd gg_pubdir_watch_fd -#define gg_change_pubdir_free gg_pubdir_free -#define gg_free_change_pubdir gg_pubdir_free - -struct gg_http *gg_userlist_get(uin_t uin, const char *password, int async) GG_DEPRECATED; -int gg_userlist_get_watch_fd(struct gg_http *f) GG_DEPRECATED; -void gg_userlist_get_free(struct gg_http *f) GG_DEPRECATED; - -struct gg_http *gg_userlist_put(uin_t uin, const char *password, const char *contacts, int async) GG_DEPRECATED; -int gg_userlist_put_watch_fd(struct gg_http *f) GG_DEPRECATED; -void gg_userlist_put_free(struct gg_http *f) GG_DEPRECATED; - -struct gg_http *gg_userlist_remove(uin_t uin, const char *password, int async) GG_DEPRECATED; -int gg_userlist_remove_watch_fd(struct gg_http *f) GG_DEPRECATED; -void gg_userlist_remove_free(struct gg_http *f) GG_DEPRECATED; - -int gg_pubdir50_handle_reply(struct gg_event *e, const char *packet, int length) GG_DEPRECATED; - -/** \endcond */ - -int gg_file_hash_sha1(int fd, uint8_t *result) GG_DEPRECATED; - -#undef printf -#ifdef __GNUC__ -char *gg_saprintf(const char *format, ...) __attribute__ ((format (printf, 1, 2))) GG_DEPRECATED; -#else -char *gg_saprintf(const char *format, ...) GG_DEPRECATED; -#endif - -char *gg_vsaprintf(const char *format, va_list ap) GG_DEPRECATED; - -#define gg_alloc_sprintf gg_saprintf - -char *gg_get_line(char **ptr) GG_DEPRECATED; - -int gg_connect(void *addr, int port, int async) GG_DEPRECATED; -struct in_addr *gg_gethostbyname(const char *hostname) GG_DEPRECATED; -char *gg_read_line(int sock, char *buf, int length) GG_DEPRECATED; -void gg_chomp(char *line) GG_DEPRECATED; -char *gg_urlencode(const char *str) GG_DEPRECATED; -int gg_http_hash(const char *format, ...) GG_DEPRECATED; -void gg_http_free_fields(struct gg_http *h) GG_DEPRECATED; -int gg_read(struct gg_session *sess, char *buf, int length) GG_DEPRECATED; -int gg_write(struct gg_session *sess, const char *buf, int length) GG_DEPRECATED; -void *gg_recv_packet(struct gg_session *sess) GG_DEPRECATED; -int gg_send_packet(struct gg_session *sess, int type, ...) GG_DEPRECATED; -unsigned int gg_login_hash(const unsigned char *password, unsigned int seed) GG_DEPRECATED; -void gg_login_hash_sha1(const char *password, uint32_t seed, uint8_t *result) GG_DEPRECATED; -uint32_t gg_fix32(uint32_t x); -uint16_t gg_fix16(uint16_t x); -#define fix16 gg_fix16 -#define fix32 gg_fix32 -char *gg_proxy_auth(void) GG_DEPRECATED; -char *gg_base64_encode(const char *buf) GG_DEPRECATED; -char *gg_base64_decode(const char *buf) GG_DEPRECATED; -int gg_image_queue_remove(struct gg_session *s, struct gg_image_queue *q, int freeq) GG_DEPRECATED; - -/** - * Kolejka odbieranych obrazków. - */ -struct gg_image_queue { - uin_t sender; /**< Nadawca obrazka */ - uint32_t size; /**< Rozmiar obrazka */ - uint32_t crc32; /**< Suma kontrolna CRC32 */ - char *filename; /**< Nazwa pliku */ - char *image; /**< Bufor z odebranymi danymi */ - uint32_t done; /**< Rozmiar odebranych danych */ - - struct gg_image_queue *next; /**< Kolejny element listy */ -} GG_DEPRECATED; - -int gg_dcc7_handle_id(struct gg_session *sess, struct gg_event *e, const void *payload, int len) GG_DEPRECATED; -int gg_dcc7_handle_new(struct gg_session *sess, struct gg_event *e, const void *payload, int len) GG_DEPRECATED; -int gg_dcc7_handle_info(struct gg_session *sess, struct gg_event *e, const void *payload, int len) GG_DEPRECATED; -int gg_dcc7_handle_accept(struct gg_session *sess, struct gg_event *e, const void *payload, int len) GG_DEPRECATED; -int gg_dcc7_handle_reject(struct gg_session *sess, struct gg_event *e, const void *payload, int len) GG_DEPRECATED; - -#define GG_APPMSG_HOST "appmsg.gadu-gadu.pl" -#define GG_APPMSG_PORT 80 -#define GG_PUBDIR_HOST "pubdir.gadu-gadu.pl" -#define GG_PUBDIR_PORT 80 -#define GG_REGISTER_HOST "register.gadu-gadu.pl" -#define GG_REGISTER_PORT 80 -#define GG_REMIND_HOST "retr.gadu-gadu.pl" -#define GG_REMIND_PORT 80 -#define GG_RELAY_HOST "relay.gadu-gadu.pl" -#define GG_RELAY_PORT 80 - -#define GG_DEFAULT_PORT 8074 -#define GG_HTTPS_PORT 443 -#define GG_HTTP_USERAGENT "Mozilla/4.7 [en] (Win98; I)" - -#define GG_DEFAULT_CLIENT_VERSION "10.1.0.11070" -#define GG_DEFAULT_PROTOCOL_VERSION 0x2e -#define GG_DEFAULT_TIMEOUT 30 -#define GG_HAS_AUDIO_MASK 0x40000000 -#define GG_HAS_AUDIO7_MASK 0x20000000 -#define GG_ERA_OMNIX_MASK 0x04000000 -#undef GG_LIBGADU_VERSION - -#ifndef DOXYGEN - -#define GG_FEATURE_MSG77 0x0001 -#define GG_FEATURE_STATUS77 0x0002 -#define GG_FEATURE_UNKNOWN_4 0x0004 -#define GG_FEATURE_UNKNOWN_8 0x0008 -#define GG_FEATURE_DND_FFC 0x0010 -#define GG_FEATURE_IMAGE_DESCR 0x0020 -#define GG_FEATURE_UNKNOWN_40 0x0040 -#define GG_FEATURE_UNKNOWN_80 0x0080 -#define GG_FEATURE_UNKNOWN_100 0x0100 -#define GG_FEATURE_USER_DATA 0x0200 -#define GG_FEATURE_MSG_ACK 0x0400 -#define GG_FEATURE_UNKNOWN_800 0x0800 -#define GG_FEATURE_UNKNOWN_1000 0x1000 -#define GG_FEATURE_TYPING_NOTIFICATION 0x2000 -#define GG_FEATURE_MULTILOGON 0x4000 - -/* Poniższe makra zostały zachowane dla zgodności API */ -#define GG_FEATURE_MSG80 0 -#define GG_FEATURE_STATUS80 0 -#define GG_FEATURE_STATUS80BETA 0 - -#define GG_FEATURE_ALL (GG_FEATURE_MSG80 | GG_FEATURE_STATUS80 | GG_FEATURE_DND_FFC | GG_FEATURE_IMAGE_DESCR | GG_FEATURE_UNKNOWN_100 | GG_FEATURE_USER_DATA | GG_FEATURE_MSG_ACK | GG_FEATURE_TYPING_NOTIFICATION) - -#else - -/** - * \ingroup login - * - * Flagi opcji protokołu. - */ -enum { - GG_FEATURE_MSG77, /**< Klient życzy sobie otrzymywać wiadomości zgodnie z protokołem 7.7 */ - GG_FEATURE_STATUS77, /**< Klient życzy sobie otrzymywać zmiany stanu zgodnie z protokołem 7.7 */ - GG_FEATURE_DND_FFC, /**< Klient obsługuje statusy "nie przeszkadzać" i "poGGadaj ze mną" */ - GG_FEATURE_IMAGE_DESCR, /**< Klient obsługuje opisy graficzne oraz flagę \c GG_STATUS80_DESCR_MASK */ -}; - - -#endif - -#define GG_DEFAULT_DCC_PORT 1550 - -struct gg_header { - uint32_t type; /* typ pakietu */ - uint32_t length; /* długość reszty pakietu */ -} GG_PACKED; - -#define GG_WELCOME 0x0001 -#define GG_NEED_EMAIL 0x0014 - -struct gg_welcome { - uint32_t key; /* klucz szyfrowania hasła */ -} GG_PACKED; - -#define GG_LOGIN 0x000c - -struct gg_login { - uint32_t uin; /* mój numerek */ - uint32_t hash; /* hash hasła */ - uint32_t status; /* status na dzień dobry */ - uint32_t version; /* moja wersja klienta */ - uint32_t local_ip; /* mój adres ip */ - uint16_t local_port; /* port, na którym słucham */ -} GG_PACKED; - -#define GG_LOGIN_EXT 0x0013 - -struct gg_login_ext { - uint32_t uin; /* mój numerek */ - uint32_t hash; /* hash hasła */ - uint32_t status; /* status na dzień dobry */ - uint32_t version; /* moja wersja klienta */ - uint32_t local_ip; /* mój adres ip */ - uint16_t local_port; /* port, na którym słucham */ - uint32_t external_ip; /* zewnętrzny adres ip */ - uint16_t external_port; /* zewnętrzny port */ -} GG_PACKED; - -#define GG_LOGIN60 0x0015 - -struct gg_login60 { - uint32_t uin; /* mój numerek */ - uint32_t hash; /* hash hasła */ - uint32_t status; /* status na dzień dobry */ - uint32_t version; /* moja wersja klienta */ - uint8_t dunno1; /* 0x00 */ - uint32_t local_ip; /* mój adres ip */ - uint16_t local_port; /* port, na którym słucham */ - uint32_t external_ip; /* zewnętrzny adres ip */ - uint16_t external_port; /* zewnętrzny port */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno2; /* 0xbe */ -} GG_PACKED; - -#define GG_LOGIN70 0x0019 - -struct gg_login70 { - uint32_t uin; /* mój numerek */ - uint8_t hash_type; /* rodzaj hashowania hasła */ - uint8_t hash[64]; /* hash hasła dopełniony zerami */ - uint32_t status; /* status na dzień dobry */ - uint32_t version; /* moja wersja klienta */ - uint8_t dunno1; /* 0x00 */ - uint32_t local_ip; /* mój adres ip */ - uint16_t local_port; /* port, na którym słucham */ - uint32_t external_ip; /* zewnętrzny adres ip (???) */ - uint16_t external_port; /* zewnętrzny port (???) */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno2; /* 0xbe */ -} GG_PACKED; - -#define GG_LOGIN_OK 0x0003 - -#define GG_LOGIN_FAILED 0x0009 - -#define GG_PUBDIR50_REQUEST 0x0014 - -struct gg_pubdir50_request { - uint8_t type; /* GG_PUBDIR50_* */ - uint32_t seq; /* czas wysłania zapytania */ -} GG_PACKED; - -#define GG_PUBDIR50_REPLY 0x000e - -struct gg_pubdir50_reply { - uint8_t type; /* GG_PUBDIR50_* */ - uint32_t seq; /* czas wysłania zapytania */ -} GG_PACKED; - -#define GG_NEW_STATUS 0x0002 - -#ifndef DOXYGEN - -#define GG_STATUS_NOT_AVAIL 0x0001 -#define GG_STATUS_NOT_AVAIL_DESCR 0x0015 -#define GG_STATUS_FFC 0x0017 -#define GG_STATUS_FFC_DESCR 0x0018 -#define GG_STATUS_AVAIL 0x0002 -#define GG_STATUS_AVAIL_DESCR 0x0004 -#define GG_STATUS_BUSY 0x0003 -#define GG_STATUS_BUSY_DESCR 0x0005 -#define GG_STATUS_DND 0x0021 -#define GG_STATUS_DND_DESCR 0x0022 -#define GG_STATUS_INVISIBLE 0x0014 -#define GG_STATUS_INVISIBLE_DESCR 0x0016 -#define GG_STATUS_BLOCKED 0x0006 - -#define GG_STATUS_IMAGE_MASK 0x0100 -#define GG_STATUS_DESCR_MASK 0x4000 -#define GG_STATUS_FRIENDS_MASK 0x8000 - -#define GG_STATUS_FLAG_UNKNOWN 0x00000001 -#define GG_STATUS_FLAG_VIDEO 0x00000002 -#define GG_STATUS_FLAG_MOBILE 0x00100000 -#define GG_STATUS_FLAG_SPAM 0x00800000 - -#else - -/** - * Rodzaje statusów użytkownika. - * - * \ingroup status - */ -enum { - GG_STATUS_NOT_AVAIL, /**< Niedostępny */ - GG_STATUS_NOT_AVAIL_DESCR, /**< Niedostępny z opisem */ - GG_STATUS_FFC, /**< PoGGadaj ze mną */ - GG_STATUS_FFC_DESCR, /**< PoGGadaj ze mną z opisem */ - GG_STATUS_AVAIL, /**< Dostępny */ - GG_STATUS_AVAIL_DESCR, /**< Dostępny z opisem */ - GG_STATUS_BUSY, /**< Zajęty */ - GG_STATUS_BUSY_DESCR, /**< Zajęty z opisem */ - GG_STATUS_DND, /**< Nie przeszkadzać */ - GG_STATUS_DND_DESCR, /**< Nie przeszakdzać z opisem */ - GG_STATUS_INVISIBLE, /**< Niewidoczny (tylko własny status) */ - GG_STATUS_INVISIBLE_DESCR, /**< Niewidoczny z opisem (tylko własny status) */ - GG_STATUS_BLOCKED, /**< Zablokowany (tylko status innych) */ - GG_STATUS_IMAGE_MASK, /**< Flaga bitowa oznaczająca opis graficzny (tylko jeśli wybrano \c GG_FEATURE_IMAGE_DESCR) */ - GG_STATUS_DESCR_MASK, /**< Flaga bitowa oznaczająca status z opisem (tylko jeśli wybrano \c GG_FEATURE_IMAGE_DESCR) */ - GG_STATUS_FRIENDS_MASK, /**< Flaga bitowa dostępności tylko dla znajomych */ -}; - -/** - * Rodzaje statusów użytkownika. Mapa bitowa. - * - * \ingroup status - */ -enum { - GG_STATUS_FLAG_UNKNOWN, /**< Przeznaczenie nieznane, ale występuje zawsze */ - GG_STATUS_FLAG_VIDEO, /**< Klient obsługuje wideorozmowy */ - GG_STATUS_FLAG_MOBILE, /**< Klient mobilny (ikona telefonu komórkowego) */ - GG_STATUS_FLAG_SPAM, /**< Klient chce otrzymywać linki od nieznajomych */ -}; - -#endif /* DOXYGEN */ - -/** - * \ingroup status - * - * Flaga bitowa dostepnosci informujaca ze mozemy voipowac - */ - -#define GG_STATUS_VOICE_MASK 0x20000 /**< czy ma wlaczone audio (7.7) */ - -/** - * \ingroup status - * - * Maksymalna długośc opisu. - */ -#define GG_STATUS_DESCR_MAXSIZE 255 -#define GG_STATUS_DESCR_MAXSIZE_PRE_8_0 70 - -#define GG_STATUS_MASK 0xff - -/* GG_S_F() tryb tylko dla znajomych */ -#define GG_S_F(x) (((x) & GG_STATUS_FRIENDS_MASK) != 0) - -/* GG_S() stan bez uwzględnienia dodatkowych flag */ -#define GG_S(x) ((x) & GG_STATUS_MASK) - - -/* GG_S_FF() chętny do rozmowy */ -#define GG_S_FF(x) (GG_S(x) == GG_STATUS_FFC || GG_S(x) == GG_STATUS_FFC_DESCR) - -/* GG_S_AV() dostępny */ -#define GG_S_AV(x) (GG_S(x) == GG_STATUS_AVAIL || GG_S(x) == GG_STATUS_AVAIL_DESCR) - -/* GG_S_AW() zaraz wracam */ -#define GG_S_AW(x) (GG_S(x) == GG_STATUS_BUSY || GG_S(x) == GG_STATUS_BUSY_DESCR) - -/* GG_S_DD() nie przeszkadzać */ -#define GG_S_DD(x) (GG_S(x) == GG_STATUS_DND || GG_S(x) == GG_STATUS_DND_DESCR) - -/* GG_S_NA() niedostępny */ -#define GG_S_NA(x) (GG_S(x) == GG_STATUS_NOT_AVAIL || GG_S(x) == GG_STATUS_NOT_AVAIL_DESCR) - -/* GG_S_I() niewidoczny */ -#define GG_S_I(x) (GG_S(x) == GG_STATUS_INVISIBLE || GG_S(x) == GG_STATUS_INVISIBLE_DESCR) - - -/* GG_S_A() dostępny lub chętny do rozmowy */ -#define GG_S_A(x) (GG_S_FF(x) || GG_S_AV(x)) - -/* GG_S_B() zajęty lub nie przeszkadzać */ -#define GG_S_B(x) (GG_S_AW(x) || GG_S_DD(x)) - - -/* GG_S_D() stan opisowy */ -#define GG_S_D(x) (GG_S(x) == GG_STATUS_NOT_AVAIL_DESCR || \ - GG_S(x) == GG_STATUS_FFC_DESCR || \ - GG_S(x) == GG_STATUS_AVAIL_DESCR || \ - GG_S(x) == GG_STATUS_BUSY_DESCR || \ - GG_S(x) == GG_STATUS_DND_DESCR || \ - GG_S(x) == GG_STATUS_INVISIBLE_DESCR) - -/* GG_S_BL() blokowany lub blokujący */ -#define GG_S_BL(x) (GG_S(x) == GG_STATUS_BLOCKED) - -/** - * Zmiana statusu (pakiet \c GG_NEW_STATUS i \c GG_NEW_STATUS80BETA) - */ -struct gg_new_status { - uint32_t status; /**< Nowy status */ -} GG_PACKED; - -#define GG_NOTIFY_FIRST 0x000f -#define GG_NOTIFY_LAST 0x0010 - -#define GG_NOTIFY 0x0010 - -struct gg_notify { - uint32_t uin; /* numerek danej osoby */ - uint8_t dunno1; /* rodzaj wpisu w liście */ -} GG_PACKED; - -#ifndef DOXYGEN - -#define GG_USER_OFFLINE 0x01 -#define GG_USER_NORMAL 0x03 -#define GG_USER_BLOCKED 0x04 - -#else - -/** - * \ingroup contacts - * - * Rodzaj kontaktu. - */ -enum { - GG_USER_NORMAL, /**< Zwykły kontakt */ - GG_USER_BLOCKED, /**< Zablokowany */ - GG_USER_OFFLINE, /**< Niewidoczny dla kontaktu */ -}; - -#endif /* DOXYGEN */ - -#define GG_LIST_EMPTY 0x0012 - -#define GG_NOTIFY_REPLY 0x000c /* tak, to samo co GG_LOGIN */ - -struct gg_notify_reply { - uint32_t uin; /* numerek */ - uint32_t status; /* status danej osoby */ - uint32_t remote_ip; /* adres ip delikwenta */ - uint16_t remote_port; /* port, na którym słucha klient */ - uint32_t version; /* wersja klienta */ - uint16_t dunno2; /* znowu port? */ -} GG_PACKED; - -#define GG_NOTIFY_REPLY60 0x0011 - -struct gg_notify_reply60 { - uint32_t uin; /* numerek plus flagi w MSB */ - uint8_t status; /* status danej osoby */ - uint32_t remote_ip; /* adres ip delikwenta */ - uint16_t remote_port; /* port, na którym słucha klient */ - uint8_t version; /* wersja klienta */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno1; /* 0x00 */ -} GG_PACKED; - -#define GG_STATUS60 0x000f - -struct gg_status60 { - uint32_t uin; /* numerek plus flagi w MSB */ - uint8_t status; /* status danej osoby */ - uint32_t remote_ip; /* adres ip delikwenta */ - uint16_t remote_port; /* port, na którym słucha klient */ - uint8_t version; /* wersja klienta */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno1; /* 0x00 */ -} GG_PACKED; - -#define GG_NOTIFY_REPLY77 0x0018 - -struct gg_notify_reply77 { - uint32_t uin; /* numerek plus flagi w MSB */ - uint8_t status; /* status danej osoby */ - uint32_t remote_ip; /* adres ip delikwenta */ - uint16_t remote_port; /* port, na którym słucha klient */ - uint8_t version; /* wersja klienta */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno1; /* 0x00 */ - uint32_t dunno2; /* ? */ -} GG_PACKED; - -#define GG_STATUS77 0x0017 - -struct gg_status77 { - uint32_t uin; /* numerek plus flagi w MSB */ - uint8_t status; /* status danej osoby */ - uint32_t remote_ip; /* adres ip delikwenta */ - uint16_t remote_port; /* port, na którym słucha klient */ - uint8_t version; /* wersja klienta */ - uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ - uint8_t dunno1; /* 0x00 */ - uint32_t dunno2; /* ? */ -} GG_PACKED; - -#define GG_ADD_NOTIFY 0x000d -#define GG_REMOVE_NOTIFY 0x000e - -struct gg_add_remove { - uint32_t uin; /* numerek */ - uint8_t dunno1; /* bitmapa */ -} GG_PACKED; - -#define GG_STATUS 0x0002 - -struct gg_status { - uint32_t uin; /* numerek */ - uint32_t status; /* nowy stan */ -} GG_PACKED; - -#define GG_SEND_MSG 0x000b - -#ifndef DOXYGEN - -#define GG_CLASS_QUEUED 0x0001 -#define GG_CLASS_OFFLINE GG_CLASS_QUEUED -#define GG_CLASS_MSG 0x0004 -#define GG_CLASS_CHAT 0x0008 -#define GG_CLASS_CTCP 0x0010 -#define GG_CLASS_ACK 0x0020 -#define GG_CLASS_EXT GG_CLASS_ACK /**< Dla kompatybilności wstecz */ - -#else - -/** - * Klasy wiadomości. Wartości są maskami bitowymi, które w większości - * przypadków można łączyć (połączenie \c GG_CLASS_MSG i \c GG_CLASS_CHAT - * nie ma sensu). - * - * \ingroup messages - */ -enum { - GG_CLASS_MSG, /**< Wiadomość ma pojawić się w osobnym oknie */ - GG_CLASS_CHAT, /**< Wiadomość ma pojawić się w oknie rozmowy */ - GG_CLASS_CTCP, /**< Wiadomość przeznaczona dla klienta Gadu-Gadu */ - GG_CLASS_ACK, /**< Klient nie życzy sobie potwierdzenia */ - GG_CLASS_QUEUED, /**< Wiadomość zakolejkowana na serwerze (tylko przy odbieraniu) */ -}; - -#endif /* DOXYGEN */ - -/** - * Maksymalna długość wiadomości. - * - * \ingroup messages - */ -#define GG_MSG_MAXSIZE 1989 - -struct gg_send_msg { - uint32_t recipient; - uint32_t seq; - uint32_t msgclass; -} GG_PACKED; - -struct gg_msg_richtext { - uint8_t flag; - uint16_t length; -} GG_PACKED; - -/** - * Struktura opisująca formatowanie tekstu. W zależności od wartości pola - * \c font, zaraz za tą strukturą może wystąpić \c gg_msg_richtext_color - * lub \c gg_msg_richtext_image. - * - * \ingroup messages - */ -struct gg_msg_richtext_format { - uint16_t position; /**< Początkowy znak formatowania (liczony od 0) */ - uint8_t font; /**< Atrybuty formatowania */ -} GG_PACKED; - -#ifndef DOXYGEN - -#define GG_FONT_BOLD 0x01 -#define GG_FONT_ITALIC 0x02 -#define GG_FONT_UNDERLINE 0x04 -#define GG_FONT_COLOR 0x08 -#define GG_FONT_IMAGE 0x80 - -#else - -/** - * Atrybuty formatowania wiadomości. - * - * \ingroup messages - */ -enum { - GG_FONT_BOLD, - GG_FONT_ITALIC, - GG_FONT_UNDERLINE, - GG_FONT_COLOR, - GG_FONT_IMAGE -}; - -#endif /* DOXYGEN */ - -/** - * Struktura opisującą kolor tekstu dla atrybutu \c GG_FONT_COLOR. - * - * \ingroup messages - */ -struct gg_msg_richtext_color { - uint8_t red; /**< Składowa czerwona koloru */ - uint8_t green; /**< Składowa zielona koloru */ - uint8_t blue; /**< Składowa niebieska koloru */ -} GG_PACKED; - -/** - * Strukturya opisująca obrazek wstawiony do wiadomości dla atrubutu - * \c GG_FONT_IMAGE. - * - * \ingroup messages - */ -struct gg_msg_richtext_image { - uint16_t unknown1; /**< Nieznane pole o wartości 0x0109 */ - uint32_t size; /**< Rozmiar obrazka */ - uint32_t crc32; /**< Suma kontrolna CRC32 obrazka */ -} GG_PACKED; - -struct gg_msg_recipients { - uint8_t flag; - uint32_t count; -} GG_PACKED; - -struct gg_msg_image_request { - uint8_t flag; - uint32_t size; - uint32_t crc32; -} GG_PACKED; - -struct gg_msg_image_reply { - uint8_t flag; - uint32_t size; - uint32_t crc32; - /* char filename[]; */ - /* char image[]; */ -} GG_PACKED; - -#define GG_SEND_MSG_ACK 0x0005 - -#ifndef DOXYGEN - -#define GG_ACK_BLOCKED 0x0001 -#define GG_ACK_DELIVERED 0x0002 -#define GG_ACK_QUEUED 0x0003 -#define GG_ACK_MBOXFULL 0x0004 -#define GG_ACK_NOT_DELIVERED 0x0006 - -#else - -/** - * Status doręczenia wiadomości. - * - * \ingroup messages - */ -enum -{ - GG_ACK_DELIVERED, /**< Wiadomość dostarczono. */ - GG_ACK_QUEUED, /**< Wiadomość zakolejkowano z powodu niedostępności odbiorcy. */ - GG_ACK_BLOCKED, /**< Wiadomość zablokowana przez serwer (spam, świąteczne ograniczenia itd.) */ - GG_ACK_MBOXFULL, /**< Wiadomości nie dostarczono z powodu zapełnionej kolejki wiadomości odbiorcy. */ - GG_ACK_NOT_DELIVERED /**< Wiadomości nie dostarczono (tylko dla \c GG_CLASS_CTCP). */ -}; - -#endif /* DOXYGEN */ - -struct gg_send_msg_ack { - uint32_t status; - uint32_t recipient; - uint32_t seq; -} GG_PACKED; - -#define GG_RECV_MSG 0x000a - -struct gg_recv_msg { - uint32_t sender; - uint32_t seq; - uint32_t time; - uint32_t msgclass; -} GG_PACKED; - -#define GG_PING 0x0008 - -#define GG_PONG 0x0007 - -#define GG_DISCONNECTING 0x000b - -#define GG_USERLIST_REQUEST 0x0016 - -#define GG_XML_EVENT 0x0027 - -#ifndef DOXYGEN - -#define GG_USERLIST_PUT 0x00 -#define GG_USERLIST_PUT_MORE 0x01 -#define GG_USERLIST_GET 0x02 - -#else - -/** - * \ingroup importexport - * - * Rodzaj zapytania. - */ -enum { - GG_USERLIST_PUT, /**< Eksport listy kontaktów. */ - GG_USERLIST_GET, /**< Import listy kontaktów. */ -}; - -#endif /* DOXYGEN */ - -struct gg_userlist_request { - uint8_t type; -} GG_PACKED; - -#define GG_USERLIST_REPLY 0x0010 - -#ifndef DOXYGEN - -#define GG_USERLIST_PUT_REPLY 0x00 -#define GG_USERLIST_PUT_MORE_REPLY 0x02 -#define GG_USERLIST_GET_REPLY 0x06 -#define GG_USERLIST_GET_MORE_REPLY 0x04 - -#else - -/** - * \ingroup importexport - * - * Rodzaj odpowiedzi. - */ -enum { - GG_USERLIST_PUT_REPLY, /**< Wyeksportowano listy kontaktów. */ - GG_USERLIST_GET_REPLY, /**< Zaimportowano listę kontaktów. */ -}; - -#endif /* DOXYGEN */ - -struct gg_userlist_reply { - uint8_t type; -} GG_PACKED; - -#ifndef DOXYGEN - -#define GG_USERLIST100_PUT 0x00 -#define GG_USERLIST100_GET 0x02 - -#else - -/** - * \ingroup importexport - * - * Rodzaj zapytania (10.0). - */ -enum { - GG_USERLIST100_PUT, /**< Eksport listy kontaktów. */ - GG_USERLIST100_GET, /**< Import listy kontaktów. */ -}; - -#endif /* DOXYGEN */ - -#ifndef DOXYGEN - -#define GG_USERLIST100_FORMAT_TYPE_NONE 0x00 -#define GG_USERLIST100_FORMAT_TYPE_GG70 0x01 -#define GG_USERLIST100_FORMAT_TYPE_GG100 0x02 - -#else - -/** - * \ingroup importexport - * - * Typ formatu listy kontaktów (10.0). - */ -enum { - GG_USERLIST100_FORMAT_TYPE_NONE, /**< Brak treści listy kontaktów. */ - GG_USERLIST100_FORMAT_TYPE_GG70, /**< Format listy kontaktów zgodny z Gadu-Gadu 7.0. */ - GG_USERLIST100_FORMAT_TYPE_GG100, /**< Format listy kontaktów zgodny z Gadu-Gadu 10.0. */ -}; - -#endif /* DOXYGEN */ - -#ifndef DOXYGEN - -#define GG_USERLIST100_REPLY_LIST 0x00 -#define GG_USERLIST100_REPLY_ACK 0x10 -#define GG_USERLIST100_REPLY_REJECT 0x12 - -#else - -/** - * \ingroup importexport - * - * Typ odpowiedzi listy kontaktów (10.0). - */ -enum { - GG_USERLIST100_REPLY_LIST, /**< W odpowiedzi znajduje się aktualna lista kontaktów na serwerze. */ - GG_USERLIST100_REPLY_ACK, /**< Potwierdzenie odebrania nowej wersji listy kontaktów. W polu \c gg_userlist100_reply.version znajduje się numer nowej wersji listy kontaktów. */ - GG_USERLIST100_REPLY_REJECT, /**< Odmowa przyjęcia nowej wersji listy kontaktów. W polu \c gg_userlist100_reply.version znajduje się numer wersji listy kontaktów aktualnie przechowywanej przez serwer. */ -}; - -#endif /* DOXYGEN */ - -struct gg_dcc_tiny_packet { - uint8_t type; /* rodzaj pakietu */ -} GG_PACKED; - -struct gg_dcc_small_packet { - uint32_t type; /* rodzaj pakietu */ -} GG_PACKED; - -struct gg_dcc_big_packet { - uint32_t type; /* rodzaj pakietu */ - uint32_t dunno1; /* niewiadoma */ - uint32_t dunno2; /* niewiadoma */ -} GG_PACKED; - -/* - * póki co, nie znamy dokładnie protokołu. nie wiemy, co czemu odpowiada. - * nazwy są niepoważne i tymczasowe. - */ -#define GG_DCC_WANT_FILE 0x0003 /* peer chce plik */ -#define GG_DCC_HAVE_FILE 0x0001 /* więc mu damy */ -#define GG_DCC_HAVE_FILEINFO 0x0003 /* niech ma informacje o pliku */ -#define GG_DCC_GIMME_FILE 0x0006 /* peer jest pewny */ -#define GG_DCC_CATCH_FILE 0x0002 /* wysyłamy plik */ - -#define GG_DCC_FILEATTR_READONLY 0x0020 - -#define GG_DCC_TIMEOUT_SEND 1800 /* 30 minut */ -#define GG_DCC_TIMEOUT_GET 1800 /* 30 minut */ -#define GG_DCC_TIMEOUT_FILE_ACK 300 /* 5 minut */ -#define GG_DCC_TIMEOUT_VOICE_ACK 300 /* 5 minut */ - -#define GG_DCC7_INFO 0x1f - -struct gg_dcc7_info { - uint32_t uin; /* numer nadawcy */ - uint32_t type; /* sposób połączenia */ - gg_dcc7_id_t id; /* identyfikator połączenia */ - char info[GG_DCC7_INFO_LEN]; /* informacje o połączeniu "ip port" */ - char hash[GG_DCC7_INFO_HASH_LEN];/* skrót "ip" */ -} GG_PACKED; - -#define GG_DCC7_NEW 0x20 - -struct gg_dcc7_new { - gg_dcc7_id_t id; /* identyfikator połączenia */ - uint32_t uin_from; /* numer nadawcy */ - uint32_t uin_to; /* numer odbiorcy */ - uint32_t type; /* rodzaj transmisji */ - unsigned char filename[GG_DCC7_FILENAME_LEN]; /* nazwa pliku */ - uint32_t size; /* rozmiar pliku */ - uint32_t size_hi; /* rozmiar pliku (starsze bajty) */ - unsigned char hash[GG_DCC7_HASH_LEN]; /* hash SHA1 */ -} GG_PACKED; - -#define GG_DCC7_ACCEPT 0x21 - -struct gg_dcc7_accept { - uint32_t uin; /* numer przyjmującego połączenie */ - gg_dcc7_id_t id; /* identyfikator połączenia */ - uint32_t offset; /* offset przy wznawianiu transmisji */ - uint32_t dunno1; /* 0x00000000 */ -} GG_PACKED; - -// XXX API -#define GG_DCC7_TYPE_P2P 0x00000001 /**< Połączenie bezpośrednie */ -#define GG_DCC7_TYPE_SERVER 0x00000002 /**< Połączenie przez serwer */ - -#define GG_DCC7_REJECT 0x22 - -struct gg_dcc7_reject { - uint32_t uin; /**< Numer odrzucającego połączenie */ - gg_dcc7_id_t id; /**< Identyfikator połączenia */ - uint32_t reason; /**< Powód rozłączenia */ -} GG_PACKED; - -// XXX API -#define GG_DCC7_REJECT_BUSY 0x00000001 /**< Połączenie bezpośrednie już trwa, nie umiem obsłużyć więcej */ -#define GG_DCC7_REJECT_USER 0x00000002 /**< Użytkownik odrzucił połączenie */ -#define GG_DCC7_REJECT_VERSION 0x00000006 /**< Druga strona ma wersję klienta nieobsługującą połączeń bezpośrednich tego typu */ - -#define GG_DCC7_ID_REQUEST 0x23 - -struct gg_dcc7_id_request { - uint32_t type; /**< Rodzaj tranmisji */ -} GG_PACKED; - -// XXX API -#define GG_DCC7_TYPE_VOICE 0x00000001 /**< Transmisja głosu */ -#define GG_DCC7_TYPE_FILE 0x00000004 /**< transmisja pliku */ - -#define GG_DCC7_ID_REPLY 0x23 - -struct gg_dcc7_id_reply { - uint32_t type; /** Rodzaj transmisji */ - gg_dcc7_id_t id; /** Przyznany identyfikator */ -} GG_PACKED; - -#define GG_DCC7_DUNNO1 0x24 - -struct gg_dcc7_dunno1 { - // XXX -} GG_PACKED; - -#define GG_DCC7_TIMEOUT_CONNECT 10 /* 10 sekund */ -#define GG_DCC7_TIMEOUT_SEND 1800 /* 30 minut */ -#define GG_DCC7_TIMEOUT_GET 1800 /* 30 minut */ -#define GG_DCC7_TIMEOUT_FILE_ACK 300 /* 5 minut */ -#define GG_DCC7_TIMEOUT_VOICE_ACK 300 /* 5 minut */ - -#ifdef _WIN32 -#pragma pack(pop) -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* __GG_LIBGADU_H */ - -/* - * Local variables: - * c-indentation-style: k&r - * c-basic-offset: 8 - * indent-tabs-mode: notnil - * End: - * - * vim: shiftwidth=8: - */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libpurple.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libpurple.h deleted file mode 100644 index e7b2fcd..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libpurple.h +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libymsg.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libymsg.h deleted file mode 100644 index 4a98b1a..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/libymsg.h +++ /dev/null @@ -1,402 +0,0 @@ -/** - * @file libymsg.h The Yahoo! and Yahoo! JAPAN Protocol Plugins - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _LIBYMSG_H_ -#define _LIBYMSG_H_ - -#include "circbuffer.h" -#include "cmds.h" -#include "prpl.h" -#include "network.h" - -#define YAHOO_PAGER_HOST_REQ_URL "http://vcs1.msg.yahoo.com/capacity" -#define YAHOO_PAGER_HOST_FALLBACK "scsa.msg.yahoo.com" -#define YAHOO_PAGER_PORT 5050 -#define YAHOO_PAGER_PORT_P2P 5101 -#define YAHOO_LOGIN_URL "https://login.yahoo.com/config/pwtoken_login?src=ymsgr&ts=&token=%s" -#define YAHOO_TOKEN_URL "https://login.yahoo.com/config/pwtoken_get?src=ymsgr&ts=&login=%s&passwd=%s&chal=%s" -#define YAHOO_P2P_KEEPALIVE_SECS 300 -#define YAHOO_P2P_SERVER_TIMEOUT 10 -#define YAHOO_PROFILE_URL "http://profiles.yahoo.com/" -#define YAHOO_MAIL_URL "http://rd.yahoo.com/messenger/client/?http://mail.yahoo.com/" -#define YAHOO_XFER_HOST "filetransfer.msg.yahoo.com" -#define YAHOO_XFER_PORT 80 -#define YAHOO_XFER_RELAY_HOST "relay.msg.yahoo.com" -#define YAHOO_XFER_RELAY_PORT 80 -#define YAHOO_ROOMLIST_URL "http://insider.msg.yahoo.com/ycontent/" -#define YAHOO_ROOMLIST_LOCALE "us" - -/* Yahoo! JAPAN stuff */ -#define YAHOOJP_PAGER_HOST_REQ_URL "http://cs1.yahoo.co.jp/capacity" -#define YAHOOJP_TOKEN_URL "https://login.yahoo.co.jp/config/pwtoken_get?src=ymsgr&ts=&login=%s&passwd=%s&chal=%s" -#define YAHOOJP_LOGIN_URL "https://login.yahoo.co.jp/config/pwtoken_login?src=ymsgr&ts=&token=%s" -#define YAHOOJP_PROFILE_URL "http://profiles.yahoo.co.jp/" -#define YAHOOJP_MAIL_URL "http://mail.yahoo.co.jp/" -#define YAHOOJP_XFER_HOST "filetransfer.msg.yahoo.co.jp" -#define YAHOOJP_WEBCAM_HOST "wc.yahoo.co.jp" -/* not sure, must test: */ -#define YAHOOJP_XFER_RELAY_HOST "relay.msg.yahoo.co.jp" -#define YAHOOJP_XFER_RELAY_PORT 80 -#define YAHOOJP_ROOMLIST_URL "http://insider.msg.yahoo.co.jp/ycontent/" -#define YAHOOJP_ROOMLIST_LOCALE "ja" - -#define YAHOO_AUDIBLE_URL "http://l.yimg.com/pu/dl/aud" - -#define WEBMESSENGER_URL "http://login.yahoo.com/config/login?.src=pg" - -#define YAHOO_SMS_CARRIER_URL "http://validate.msg.yahoo.com" - -#define YAHOO_USERINFO_URL "http://address.yahoo.com/yab/us?v=XM&sync=1&tags=short&useutf8=1&noclear=1&legenc=codepage-1252" -#define YAHOOJP_USERINFO_URL "http://address.yahoo.co.jp/yab/jp?v=XM&sync=1&tags=short&useutf8=1&noclear=1&legenc=codepage-1252" - -#define YAHOO_PICURL_SETTING "picture_url" -#define YAHOO_PICCKSUM_SETTING "picture_checksum" -#define YAHOO_PICEXPIRE_SETTING "picture_expire" - -#define YAHOO_STATUS_TYPE_OFFLINE "offline" -#define YAHOO_STATUS_TYPE_AVAILABLE "available" -#define YAHOO_STATUS_TYPE_BRB "brb" -#define YAHOO_STATUS_TYPE_BUSY "busy" -#define YAHOO_STATUS_TYPE_NOTATHOME "notathome" -#define YAHOO_STATUS_TYPE_NOTATDESK "notatdesk" -#define YAHOO_STATUS_TYPE_NOTINOFFICE "notinoffice" -#define YAHOO_STATUS_TYPE_ONPHONE "onphone" -#define YAHOO_STATUS_TYPE_ONVACATION "onvacation" -#define YAHOO_STATUS_TYPE_OUTTOLUNCH "outtolunch" -#define YAHOO_STATUS_TYPE_STEPPEDOUT "steppedout" -#define YAHOO_STATUS_TYPE_AWAY "away" -#define YAHOO_STATUS_TYPE_INVISIBLE "invisible" -#define YAHOO_STATUS_TYPE_MOBILE "mobile" - -#define YAHOO_CLIENT_VERSION_ID "4194239" -#define YAHOO_CLIENT_VERSION "9.0.0.2162" - -#define YAHOOJP_CLIENT_VERSION_ID "4186047" -#define YAHOOJP_CLIENT_VERSION "9.0.0.1727" - -#define YAHOO_CLIENT_USERAGENT "Mozilla/5.0" -#define YAHOO_CLIENT_USERAGENT_ALIAS "Mozilla/4.0 (compatible; MSIE 5.5)" - -/* Index into attention types list. */ -#define YAHOO_BUZZ 0 - -typedef enum { - YAHOO_PKT_TYPE_SERVER = 0, - YAHOO_PKT_TYPE_P2P -} yahoo_pkt_type; - -typedef enum { - YAHOO_P2P_WE_ARE_CLIENT =0, - YAHOO_P2P_WE_ARE_SERVER -} yahoo_p2p_connection_type; - -enum yahoo_status { - YAHOO_STATUS_AVAILABLE = 0, - YAHOO_STATUS_BRB, - YAHOO_STATUS_BUSY, - YAHOO_STATUS_NOTATHOME, - YAHOO_STATUS_NOTATDESK, - YAHOO_STATUS_NOTINOFFICE, - YAHOO_STATUS_ONPHONE, - YAHOO_STATUS_ONVACATION, - YAHOO_STATUS_OUTTOLUNCH, - YAHOO_STATUS_STEPPEDOUT, - YAHOO_STATUS_P2P = 11, - YAHOO_STATUS_INVISIBLE = 12, - YAHOO_STATUS_CUSTOM = 99, - YAHOO_STATUS_IDLE = 999, - YAHOO_STATUS_WEBLOGIN = 0x5a55aa55, - YAHOO_STATUS_OFFLINE = 0x5a55aa56, /* don't ask */ - YAHOO_STATUS_TYPING = 0x16, - YAHOO_STATUS_DISCONNECTED = 0xffffffff /* in ymsg 15. doesnt mean the normal sense of 'disconnected' */ -}; - -/* - * Yahoo federated networks. Key 241 in ymsg. - * If it doesn't exist, it is on Yahoo's netowrk. - * It if does exist, send to another IM network. - */ - -typedef enum { - YAHOO_FEDERATION_NONE = 0, /* No federation - Yahoo! network */ - YAHOO_FEDERATION_OCS = 1, /* LCS or OCS private networks */ - YAHOO_FEDERATION_MSN = 2, /* MSN or Windows Live network */ - YAHOO_FEDERATION_IBM = 9, /* IBM/Sametime network */ - YAHOO_FEDERATION_PBX = 100 /* Yahoo! Pingbox service */ -} YahooFederation; - - -struct yahoo_buddy_icon_upload_data { - PurpleConnection *gc; - GString *str; - char *filename; - int pos; - int fd; - guint watcher; -}; - -struct yahoo_p2p_data { - PurpleConnection *gc; - char *host_ip; - char *host_username; - int val_13; - guint input_event; - gint source; - int session_id; - yahoo_p2p_connection_type connection_type; -}; - -struct _YchtConn; - -typedef struct _YahooPersonalDetails { - char *id; - - struct { - char *first; - char *last; - char *middle; - char *nick; - } names; - - struct { - char *work; - char *home; - char *mobile; - } phone; -} YahooPersonalDetails; - -typedef struct { - PurpleConnection *gc; - int fd; - guchar *rxqueue; - int rxlen; - PurpleCircBuffer *txbuf; - guint txhandler; - GHashTable *friends; - - char **profiles; /* Multiple profiles can be associated with an account */ - YahooPersonalDetails ypd; - - /** - * This is used to keep track of the IMVironment chosen - * by people you talk to. We don't do very much with - * this right now... but at least now if the remote user - * selects an IMVironment we won't reset it back to the - * default of nothing. - */ - GHashTable *imvironments; - - int current_status; - gboolean logged_in; - GString *tmp_serv_blist, *tmp_serv_ilist, *tmp_serv_plist; - GSList *confs; - unsigned int conf_id; /* just a counter */ - gboolean chat_online; - gboolean in_chat; - char *chat_name; - char *pending_chat_room; - char *pending_chat_id; - char *pending_chat_topic; - char *pending_chat_goto; - char *auth; - gsize auth_written; - char *cookie_y; - char *cookie_t; - char *cookie_b; - int session_id; - gboolean jp; - gboolean wm; /* connected w/ web messenger method */ - /* picture aka buddy icon stuff */ - char *picture_url; - int picture_checksum; - - /* ew. we have to check the icon before we connect, - * but can't upload it til we're connected. */ - struct yahoo_buddy_icon_upload_data *picture_upload_todo; - PurpleProxyConnectData *buddy_icon_connect_data; - - struct _YchtConn *ycht; - - /** - * This linked list contains PurpleUtilFetchUrlData structs - * for when we lookup people profile or photo information. - */ - GSList *url_datas; - GHashTable *xfer_peer_idstring_map;/* Hey, i dont know, but putting this HashTable next to friends gives a run time fault... */ - GSList *cookies;/* contains all cookies, including _y and _t */ - PurpleNetworkListenData *listen_data; - - /** - * We may receive a list15 in multiple packets with no prior warning as to how many we'll be getting; - * the server expects us to keep track of the group for which it is sending us contact names. - */ - char *current_list15_grp; - time_t last_ping; - time_t last_keepalive; - GHashTable *peers; /* information about p2p data */ - int yahoo_p2p_timer; - int yahoo_local_p2p_server_fd; - int yahoo_p2p_server_watcher; - GHashTable *sms_carrier; /* sms carrier data */ - guint yahoo_p2p_server_timeout_handle; -} YahooData; - -#define YAHOO_MAX_STATUS_MESSAGE_LENGTH (255) - -/* - * Current Maximum Length for Instant Messages - * - * This was found by experiment. - * - * The YMSG protocol allows a message of up to 948 bytes, but the official client - * limits to 800 characters. According to experiments I conducted, it seems that - * the discrepancy is to allow some leeway for messages with mixed single- and - * multi-byte characters, as I was able to send messages of 840 and 932 bytes - * by using some multibyte characters (some random Chinese or Japanese characters, - * to be precise). - rekkanoryo - */ -#define YAHOO_MAX_MESSAGE_LENGTH_BYTES 948 -#define YAHOO_MAX_MESSAGE_LENGTH_CHARS 800 - -/* sometimes i wish prpls could #include things from other prpls. then i could just - * use the routines from libfaim and not have to admit to knowing how they work. */ -#define yahoo_put16(buf, data) ( \ - (*(buf) = (unsigned char)((data)>>8)&0xff), \ - (*((buf)+1) = (unsigned char)(data)&0xff), \ - 2) -#define yahoo_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) -#define yahoo_put32(buf, data) ( \ - (*((buf)) = (unsigned char)((data)>>24)&0xff), \ - (*((buf)+1) = (unsigned char)((data)>>16)&0xff), \ - (*((buf)+2) = (unsigned char)((data)>>8)&0xff), \ - (*((buf)+3) = (unsigned char)(data)&0xff), \ - 4) -#define yahoo_get32(buf) ((((*(buf))<<24)&0xff000000) + \ - (((*((buf)+1))<<16)&0x00ff0000) + \ - (((*((buf)+2))<< 8)&0x0000ff00) + \ - (((*((buf)+3) )&0x000000ff))) - -/* util.c */ -void yahoo_init_colorht(void); -void yahoo_dest_colorht(void); -char *yahoo_codes_to_html(const char *x); - -/** - * This function takes a normal HTML message and converts it to the message - * format used by Yahoo, which uses a frankensteinish combination of ANSI - * escape codes and broken HTML. - * - * It results in slightly different output than would be sent by official - * Yahoo clients. The two main differences are: - * - * 1. We always close all tags, whereas official Yahoo clients leave tags - * dangling open at the end of each message (and the client treats them - * as closed). - * 2. We always close inner tags first before closing outter tags. - * - * For example, if you want to send this message: - * bold bolditalic italic - * Official Yahoo clients would send: - * ESC[1m bold ESC[2m bolditalic ESC[x1m italic - * But we will send: - * ESC[1m bold ESC[2m bolditalic ESC[x2mESC[x1mESC[2m italic ESC[x2m - */ -char *yahoo_html_to_codes(const char *src); - -gboolean -yahoo_account_use_http_proxy(PurpleConnection *conn); - -/** - * Encode some text to send to the yahoo server. - * - * @param gc The connection handle. - * @param str The null terminated utf8 string to encode. - * @param utf8 If not @c NULL, whether utf8 is okay or not. - * Even if it is okay, we may not use it. If we - * used it, we set this to @c TRUE, else to - * @c FALSE. If @c NULL, false is assumed, and - * it is not dereferenced. - * @return The g_malloced string in the appropriate encoding. - */ -char *yahoo_string_encode(PurpleConnection *gc, const char *str, gboolean *utf8); - -/** - * Decode some text received from the server. - * - * @param gc The gc handle. - * @param str The null terminated string to decode. - * @param utf8 Did the server tell us it was supposed to be utf8? - * @return The decoded, utf-8 string, which must be g_free()'d. - */ -char *yahoo_string_decode(PurpleConnection *gc, const char *str, gboolean utf8); - -char *yahoo_convert_to_numeric(const char *str); - -YahooFederation yahoo_get_federation_from_name(const char *who); - -/* yahoo_profile.c */ -void yahoo_get_info(PurpleConnection *gc, const char *name); - -/* libymsg.h - these functions were formerly static but need not to be for the - * new two-prpl model. */ -const char *yahoo_list_icon(PurpleAccount *a, PurpleBuddy *b); -const char *yahoo_list_emblem(PurpleBuddy *b); -char *yahoo_status_text(PurpleBuddy *b); -void yahoo_tooltip_text(PurpleBuddy *b, PurpleNotifyUserInfo *user_info, gboolean full); -GList *yahoo_status_types(PurpleAccount *account); -GList *yahoo_blist_node_menu(PurpleBlistNode *node); -void yahoo_login(PurpleAccount *account); -void yahoo_close(PurpleConnection *gc); -int yahoo_send_im(PurpleConnection *gc, const char *who, const char *what, PurpleMessageFlags flags); -unsigned int yahoo_send_typing(PurpleConnection *gc, const char *who, PurpleTypingState state); -void yahoo_set_status(PurpleAccount *account, PurpleStatus *status); -void yahoo_set_idle(PurpleConnection *gc, int idle); -void yahoo_add_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *g); -void yahoo_remove_buddy(PurpleConnection *gc, PurpleBuddy *buddy, PurpleGroup *group); -void yahoo_add_deny(PurpleConnection *gc, const char *who); -void yahoo_rem_deny(PurpleConnection *gc, const char *who); -void yahoo_set_permit_deny(PurpleConnection *gc); -void yahoo_keepalive(PurpleConnection *gc); -void yahoo_change_buddys_group(PurpleConnection *gc, const char *who, const char *old_group, const char *new_group); -void yahoo_rename_group(PurpleConnection *gc, const char *old_name, PurpleGroup *group, GList *moved_buddies); -gboolean yahoo_offline_message(const PurpleBuddy *buddy); -gboolean yahoo_send_attention(PurpleConnection *gc, const char *username, guint type); -GList *yahoo_attention_types(PurpleAccount *account); - -GList *yahoo_actions(PurplePlugin *plugin, gpointer context); -void yahoopurple_register_commands(void); - -PurpleCmdRet yahoopurple_cmd_buzz(PurpleConversation *c, const gchar *cmd, gchar **args, gchar **error, void *data); -PurpleCmdRet yahoopurple_cmd_chat_join(PurpleConversation *conv, const char *cmd, char **args, char **error, void *data); -PurpleCmdRet yahoopurple_cmd_chat_list(PurpleConversation *conv, const char *cmd, char **args, char **error, void *data); -/* needed for xfer, thought theyd be useful for other enhancements later on - Returns list of cookies stored in yahoo_data formatted as a single null terminated string - returned value must be g_freed -*/ -gchar* yahoo_get_cookies(PurpleConnection *gc); - -/* send p2p pkt containing our encoded ip, asking peer to connect to us */ -void yahoo_send_p2p_pkt(PurpleConnection *gc, const char *who, int val_13); - -#endif /* _LIBYMSG_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/log.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/log.h deleted file mode 100644 index 59249b5..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/log.h +++ /dev/null @@ -1,583 +0,0 @@ -/** - * @file log.h Logging API - * @ingroup core - * @see @ref log-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_LOG_H_ -#define _PURPLE_LOG_H_ - -#include - - -/******************************************************** - * DATA STRUCTURES ************************************** - ********************************************************/ - -typedef struct _PurpleLog PurpleLog; -typedef struct _PurpleLogLogger PurpleLogLogger; -typedef struct _PurpleLogCommonLoggerData PurpleLogCommonLoggerData; -typedef struct _PurpleLogSet PurpleLogSet; - -typedef enum { - PURPLE_LOG_IM, - PURPLE_LOG_CHAT, - PURPLE_LOG_SYSTEM -} PurpleLogType; - -typedef enum { - PURPLE_LOG_READ_NO_NEWLINE = 1 -} PurpleLogReadFlags; - -#include "account.h" -#include "conversation.h" - -typedef void (*PurpleLogSetCallback) (GHashTable *sets, PurpleLogSet *set); - -/** - * A log logger. - * - * This struct gets filled out and is included in the PurpleLog. It contains everything - * needed to write and read from logs. - */ -struct _PurpleLogLogger { - char *name; /**< The logger's name */ - char *id; /**< an identifier to refer to this logger */ - - /** This gets called when the log is first created. - I don't think this is actually needed. */ - void (*create)(PurpleLog *log); - - /** This is used to write to the log file */ - gsize (*write)(PurpleLog *log, - PurpleMessageFlags type, - const char *from, - time_t time, - const char *message); - - /** Called when the log is destroyed */ - void (*finalize)(PurpleLog *log); - - /** This function returns a sorted GList of available PurpleLogs */ - GList *(*list)(PurpleLogType type, const char *name, PurpleAccount *account); - - /** Given one of the logs returned by the logger's list function, - * this returns the contents of the log in GtkIMHtml markup */ - char *(*read)(PurpleLog *log, PurpleLogReadFlags *flags); - - /** Given one of the logs returned by the logger's list function, - * this returns the size of the log in bytes */ - int (*size)(PurpleLog *log); - - /** Returns the total size of all the logs. If this is undefined a default - * implementation is used */ - int (*total_size)(PurpleLogType type, const char *name, PurpleAccount *account); - - /** This function returns a sorted GList of available system PurpleLogs */ - GList *(*list_syslog)(PurpleAccount *account); - - /** Adds PurpleLogSets to a GHashTable. By passing the data in the PurpleLogSets - * to list, the caller can get every available PurpleLog from the logger. - * Loggers using purple_log_common_writer() (or otherwise storing their - * logs in the same directory structure as the stock loggers) do not - * need to implement this function. - * - * Loggers which implement this function must create a PurpleLogSet, - * then call @a cb with @a sets and the newly created PurpleLogSet. */ - void (*get_log_sets)(PurpleLogSetCallback cb, GHashTable *sets); - - /* Attempts to delete the specified log, indicating success or failure */ - gboolean (*remove)(PurpleLog *log); - - /* Tests whether a log is deletable */ - gboolean (*is_deletable)(PurpleLog *log); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** - * A log. Not the wooden type. - */ -struct _PurpleLog { - PurpleLogType type; /**< The type of log this is */ - char *name; /**< The name of this log */ - PurpleAccount *account; /**< The account this log is taking - place on */ - PurpleConversation *conv; /**< The conversation being logged */ - time_t time; /**< The time this conversation - started, converted to the local timezone */ - - PurpleLogLogger *logger; /**< The logging mechanism this log - is to use */ - void *logger_data; /**< Data used by the log logger */ - struct tm *tm; /**< The time this conversation - started, saved with original - timezone data, if available and - if struct tm has the BSD - timezone fields, else @c NULL. - Do NOT modify anything in this struct.*/ - - /* IMPORTANT: Some code in log.c allocates these without zeroing them. - * IMPORTANT: Update that code if you add members here. */ -}; - -/** - * A common logger_data struct containing a file handle and path, as well - * as a pointer to something else for additional data. - */ -struct _PurpleLogCommonLoggerData { - char *path; - FILE *file; - void *extra_data; -}; - -/** - * Describes available logs. - * - * By passing the elements of this struct to purple_log_get_logs(), the caller - * can get all available PurpleLogs. - */ -struct _PurpleLogSet { - PurpleLogType type; /**< The type of logs available */ - char *name; /**< The name of the logs available */ - PurpleAccount *account; /**< The account the available logs - took place on. This will be - @c NULL if the account no longer - exists. (Depending on a - logger's implementation of - list, it may not be possible - to load such logs.) */ - gboolean buddy; /**< Is this (account, name) a buddy - on the buddy list? */ - char *normalized_name; /**< The normalized version of - @a name. It must be set, and - may be set to the same pointer - value as @a name. */ - - /* IMPORTANT: Some code in log.c allocates these without zeroing them. - * IMPORTANT: Update that code if you add members here. */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/***************************************/ -/** @name Log Functions */ -/***************************************/ -/*@{*/ - -/** - * Creates a new log - * - * @param type The type of log this is. - * @param name The name of this conversation (buddy name, chat name, - * etc.) - * @param account The account the conversation is occurring on - * @param conv The conversation being logged - * @param time The time this conversation started - * @param tm The time this conversation started, with timezone data, - * if available and if struct tm has the BSD timezone fields. - * @return The new log - */ -PurpleLog *purple_log_new(PurpleLogType type, const char *name, PurpleAccount *account, - PurpleConversation *conv, time_t time, const struct tm *tm); - -/** - * Frees a log - * - * @param log The log to destroy - */ -void purple_log_free(PurpleLog *log); - -/** - * Writes to a log file. Assumes you have checked preferences already. - * - * @param log The log to write to - * @param type The type of message being logged - * @param from Whom this message is coming from, or @c NULL for - * system messages - * @param time A timestamp in UNIX time - * @param message The message to log - */ -void purple_log_write(PurpleLog *log, - PurpleMessageFlags type, - const char *from, - time_t time, - const char *message); - -/** - * Reads from a log - * - * @param log The log to read from - * @param flags The returned logging flags. - * - * @return The contents of this log in Purple Markup. - */ -char *purple_log_read(PurpleLog *log, PurpleLogReadFlags *flags); - -/** - * Returns a list of all available logs - * - * @param type The type of the log - * @param name The name of the log - * @param account The account - * @return A sorted list of PurpleLogs - */ -GList *purple_log_get_logs(PurpleLogType type, const char *name, PurpleAccount *account); - -/** - * Returns a GHashTable of PurpleLogSets. - * - * A "log set" here means the information necessary to gather the - * PurpleLogs for a given buddy/chat. This information would be passed - * to purple_log_list to get a list of PurpleLogs. - * - * The primary use of this function is to get a list of everyone the - * user has ever talked to (assuming he or she uses logging). - * - * The GHashTable that's returned will free all log sets in it when - * destroyed. If a PurpleLogSet is removed from the GHashTable, it - * must be freed with purple_log_set_free(). - * - * @return A GHashTable of all available unique PurpleLogSets - */ -GHashTable *purple_log_get_log_sets(void); - -/** - * Returns a list of all available system logs - * - * @param account The account - * @return A sorted list of PurpleLogs - */ -GList *purple_log_get_system_logs(PurpleAccount *account); - -/** - * Returns the size of a log - * - * @param log The log - * @return The size of the log, in bytes - */ -int purple_log_get_size(PurpleLog *log); - -/** - * Returns the size, in bytes, of all available logs in this conversation - * - * @param type The type of the log - * @param name The name of the log - * @param account The account - * @return The size in bytes - */ -int purple_log_get_total_size(PurpleLogType type, const char *name, PurpleAccount *account); - -/** - * Returns the activity score of a log, based on total size in bytes, - * which is then decayed based on age - * - * @param type The type of the log - * @param name The name of the log - * @param account The account - * @return The activity score - * - * @since 2.6.0 - */ -int purple_log_get_activity_score(PurpleLogType type, const char *name, PurpleAccount *account); - -/** - * Tests whether a log is deletable - * - * A return value of @c FALSE indicates that purple_log_delete() will fail on this - * log, unless something changes between the two calls. A return value of @c TRUE, - * however, does not guarantee the log can be deleted. - * - * @param log The log - * @return A boolean indicating if the log is deletable - */ -gboolean purple_log_is_deletable(PurpleLog *log); - -/** - * Deletes a log - * - * @param log The log - * @return A boolean indicating success or failure - */ -gboolean purple_log_delete(PurpleLog *log); - -/** - * Returns the default logger directory Purple uses for a given account - * and username. This would be where Purple stores logs created by - * the built-in text or HTML loggers. - * - * @param type The type of the log. - * @param name The name of the log. - * @param account The account. - * @return The default logger directory for Purple. - */ -char *purple_log_get_log_dir(PurpleLogType type, const char *name, PurpleAccount *account); - -/** - * Implements GCompareFunc for PurpleLogs - * - * @param y A PurpleLog - * @param z Another PurpleLog - * @return A value as specified by GCompareFunc - */ -gint purple_log_compare(gconstpointer y, gconstpointer z); - -/** - * Implements GCompareFunc for PurpleLogSets - * - * @param y A PurpleLogSet - * @param z Another PurpleLogSet - * @return A value as specified by GCompareFunc - */ -gint purple_log_set_compare(gconstpointer y, gconstpointer z); - -/** - * Frees a log set - * - * @param set The log set to destroy - */ -void purple_log_set_free(PurpleLogSet *set); - -/*@}*/ - -/******************************************/ -/** @name Common Logger Functions */ -/******************************************/ -/*@{*/ - -/** - * Opens a new log file in the standard Purple log location - * with the given file extension, named for the current time, - * for writing. If a log file is already open, the existing - * file handle is retained. The log's logger_data value is - * set to a PurpleLogCommonLoggerData struct containing the log - * file handle and log path. - * - * This function is intended to be used as a "common" - * implementation of a logger's @c write function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param log The log to write to. - * @param ext The file extension to give to this log file. - */ -void purple_log_common_writer(PurpleLog *log, const char *ext); - -/** - * Returns a sorted GList of PurpleLogs of the requested type. - * - * This function should only be used with logs that are written - * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's @c list function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param type The type of the logs being listed. - * @param name The name of the log. - * @param account The account of the log. - * @param ext The file extension this log format uses. - * @param logger A reference to the logger struct for this log. - * - * @return A sorted GList of PurpleLogs matching the parameters. - */ -GList *purple_log_common_lister(PurpleLogType type, const char *name, - PurpleAccount *account, const char *ext, - PurpleLogLogger *logger); - -/** - * Returns the total size of all the logs for a given user, with - * a given extension. - * - * This function should only be used with logs that are written - * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's @c total_size function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param type The type of the logs being sized. - * @param name The name of the logs to size - * (e.g. the username or chat name). - * @param account The account of the log. - * @param ext The file extension this log format uses. - * - * @return The size of all the logs with the specified extension - * for the specified user. - */ -int purple_log_common_total_sizer(PurpleLogType type, const char *name, - PurpleAccount *account, const char *ext); - -/** - * Returns the size of a given PurpleLog. - * - * This function should only be used with logs that are written - * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's @c size function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param log The PurpleLog to size. - * - * @return An integer indicating the size of the log in bytes. - */ -int purple_log_common_sizer(PurpleLog *log); - -/** - * Deletes a log - * - * This function should only be used with logs that are written - * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's @c delete function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param log The PurpleLog to delete. - * - * @return A boolean indicating success or failure. - */ -gboolean purple_log_common_deleter(PurpleLog *log); - -/** - * Checks to see if a log is deletable - * - * This function should only be used with logs that are written - * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's @c is_deletable function. - * It should only be passed to purple_log_logger_new() and never - * called directly. - * - * @param log The PurpleLog to check. - * - * @return A boolean indicating if the log is deletable. - */ -gboolean purple_log_common_is_deletable(PurpleLog *log); - -/*@}*/ - -/******************************************/ -/** @name Logger Functions */ -/******************************************/ -/*@{*/ - -/** - * Creates a new logger - * - * @param id The logger's id. - * @param name The logger's name. - * @param functions The number of functions being passed. The following - * functions are currently available (in order): @c create, - * @c write, @c finalize, @c list, @c read, @c size, - * @c total_size, @c list_syslog, @c get_log_sets, - * @c remove, @c is_deletable. - * For details on these functions, see PurpleLogLogger. - * Functions may not be skipped. For example, passing - * @c create and @c write is acceptable (for a total of - * two functions). Passing @c create and @c finalize, - * however, is not. To accomplish that, the caller must - * pass @c create, @c NULL (a placeholder for @c write), - * and @c finalize (for a total of 3 functions). - * - * @return The new logger - */ -PurpleLogLogger *purple_log_logger_new(const char *id, const char *name, int functions, ...); - -/** - * Frees a logger - * - * @param logger The logger to free - */ -void purple_log_logger_free(PurpleLogLogger *logger); - -/** - * Adds a new logger - * - * @param logger The new logger to add - */ -void purple_log_logger_add (PurpleLogLogger *logger); - -/** - * - * Removes a logger - * - * @param logger The logger to remove - */ -void purple_log_logger_remove (PurpleLogLogger *logger); - -/** - * - * Sets the current logger - * - * @param logger The logger to set - */ -void purple_log_logger_set (PurpleLogLogger *logger); - -/** - * - * Returns the current logger - * - * @return logger The current logger - */ -PurpleLogLogger *purple_log_logger_get (void); - -/** - * Returns a GList containing the IDs and names of the registered - * loggers. - * - * @return The list of IDs and names. - */ -GList *purple_log_logger_get_options(void); - -/**************************************************************************/ -/** @name Log Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Initializes the log subsystem. - */ -void purple_log_init(void); - -/** - * Returns the log subsystem handle. - * - * @return The log subsystem handle. - */ -void *purple_log_get_handle(void); - -/** - * Uninitializes the log subsystem. - */ -void purple_log_uninit(void); - -/*@}*/ - - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_LOG_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/marshallers.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/marshallers.h deleted file mode 100644 index 831d853..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/marshallers.h +++ /dev/null @@ -1,76 +0,0 @@ - -#ifndef __purple_smarshal_MARSHAL_H__ -#define __purple_smarshal_MARSHAL_H__ - -#include - -G_BEGIN_DECLS - -/* VOID:POINTER,POINTER,OBJECT (./marshallers.list:1) */ -extern void purple_smarshal_VOID__POINTER_POINTER_OBJECT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* BOOLEAN:OBJECT,POINTER,STRING (./marshallers.list:2) */ -extern void purple_smarshal_BOOLEAN__OBJECT_POINTER_STRING (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:STRING,STRING (./marshallers.list:3) */ -extern void purple_smarshal_VOID__STRING_STRING (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:STRING,STRING,DOUBLE (./marshallers.list:4) */ -extern void purple_smarshal_VOID__STRING_STRING_DOUBLE (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:ENUM,STRING,STRING (./marshallers.list:5) */ -extern void purple_smarshal_VOID__ENUM_STRING_STRING (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:ENUM,STRING,STRING,BOOLEAN (./marshallers.list:6) */ -extern void purple_smarshal_VOID__ENUM_STRING_STRING_BOOLEAN (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:FLAGS,FLAGS (./marshallers.list:7) */ -extern void purple_smarshal_VOID__FLAGS_FLAGS (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -/* VOID:STRING,STRING,OBJECT,OBJECT (./marshallers.list:8) */ -extern void purple_smarshal_VOID__STRING_STRING_OBJECT_OBJECT (GClosure *closure, - GValue *return_value, - guint n_param_values, - const GValue *param_values, - gpointer invocation_hint, - gpointer marshal_data); - -G_END_DECLS - -#endif /* __purple_smarshal_MARSHAL_H__ */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media-gst.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media-gst.h deleted file mode 100644 index 91d9986..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media-gst.h +++ /dev/null @@ -1,201 +0,0 @@ -/** - * @file media-gst.h Media API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_GST_H_ -#define _PURPLE_MEDIA_GST_H_ - -#include "media.h" -#include "mediamanager.h" - -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_ELEMENT_TYPE (purple_media_element_type_get_type()) -#define PURPLE_TYPE_MEDIA_ELEMENT_INFO (purple_media_element_info_get_type()) -#define PURPLE_MEDIA_ELEMENT_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_ELEMENT_INFO, PurpleMediaElementInfo)) -#define PURPLE_MEDIA_ELEMENT_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_ELEMENT_INFO, PurpleMediaElementInfo)) -#define PURPLE_IS_MEDIA_ELEMENT_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_ELEMENT_INFO)) -#define PURPLE_IS_MEDIA_ELEMENT_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_ELEMENT_INFO)) -#define PURPLE_MEDIA_ELEMENT_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_ELEMENT_INFO, PurpleMediaElementInfo)) - -/** An opaque structure representing an audio/video source/sink. */ -typedef struct _PurpleMediaElementInfo PurpleMediaElementInfo; -typedef struct _PurpleMediaElementInfoClass PurpleMediaElementInfoClass; -typedef GstElement *(*PurpleMediaElementCreateCallback)(PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -typedef enum { - PURPLE_MEDIA_ELEMENT_NONE = 0, /** empty element */ - PURPLE_MEDIA_ELEMENT_AUDIO = 1, /** supports audio */ - PURPLE_MEDIA_ELEMENT_VIDEO = 1 << 1, /** supports video */ - PURPLE_MEDIA_ELEMENT_AUDIO_VIDEO = PURPLE_MEDIA_ELEMENT_AUDIO - | PURPLE_MEDIA_ELEMENT_VIDEO, /** supports audio and video */ - - PURPLE_MEDIA_ELEMENT_NO_SRCS = 0, /** has no src pads */ - PURPLE_MEDIA_ELEMENT_ONE_SRC = 1 << 2, /** has one src pad */ - PURPLE_MEDIA_ELEMENT_MULTI_SRC = 1 << 3, /** has multiple src pads */ - PURPLE_MEDIA_ELEMENT_REQUEST_SRC = 1 << 4, /** src pads must be requested */ - - PURPLE_MEDIA_ELEMENT_NO_SINKS = 0, /** has no sink pads */ - PURPLE_MEDIA_ELEMENT_ONE_SINK = 1 << 5, /** has one sink pad */ - PURPLE_MEDIA_ELEMENT_MULTI_SINK = 1 << 6, /** has multiple sink pads */ - PURPLE_MEDIA_ELEMENT_REQUEST_SINK = 1 << 7, /** sink pads must be requested */ - - PURPLE_MEDIA_ELEMENT_UNIQUE = 1 << 8, /** This element is unique and - only one instance of it should - be created at a time */ - - PURPLE_MEDIA_ELEMENT_SRC = 1 << 9, /** can be set as an active src */ - PURPLE_MEDIA_ELEMENT_SINK = 1 << 10, /** can be set as an active sink */ -} PurpleMediaElementType; - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Gets the element type's GType. - * - * @return The element type's GType. - * - * @since 2.6.0 - */ -GType purple_media_element_type_get_type(void); - -/** - * Gets the element info's GType. - * - * @return The element info's GType. - * - * @since 2.6.0 - */ -GType purple_media_element_info_get_type(void); - -/** - * Gets the source from a session - * - * @param media The media object the session is in. - * @param sess_id The session id of the session to get the source from. - * - * @return The source retrieved. - * - * @since 2.6.0 - */ -GstElement *purple_media_get_src(PurpleMedia *media, const gchar *sess_id); - -/** - * Gets the tee from a given session/stream. - * - * @param media The instance to get the tee from. - * @param session_id The id of the session to get the tee from. - * @param participant Optionally, the participant of the stream to get the tee from. - * - * @return The GstTee element from the chosen session/stream. - * - * @since 2.6.0 - */ -GstElement *purple_media_get_tee(PurpleMedia *media, - const gchar *session_id, const gchar *participant); - - -/** - * Gets the pipeline from the media manager. - * - * @param manager The media manager to get the pipeline from. - * - * @return The pipeline. - * - * @since 2.6.0 - */ -GstElement *purple_media_manager_get_pipeline(PurpleMediaManager *manager); - -/** - * Returns a GStreamer source or sink for audio or video. - * - * @param manager The media manager to use to obtain the source/sink. - * @param type The type of source/sink to get. - * @param media The media call this element is requested for. - * @param session_id The id of the session this element is requested for or NULL. - * @param participant The remote user this element is requested for or NULL. - * - * @since 2.6.0 - */ -GstElement *purple_media_manager_get_element(PurpleMediaManager *manager, - PurpleMediaSessionType type, PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -PurpleMediaElementInfo *purple_media_manager_get_element_info( - PurpleMediaManager *manager, const gchar *name); -gboolean purple_media_manager_register_element(PurpleMediaManager *manager, - PurpleMediaElementInfo *info); -gboolean purple_media_manager_unregister_element(PurpleMediaManager *manager, - const gchar *name); -gboolean purple_media_manager_set_active_element(PurpleMediaManager *manager, - PurpleMediaElementInfo *info); -PurpleMediaElementInfo *purple_media_manager_get_active_element( - PurpleMediaManager *manager, PurpleMediaElementType type); - -/** - * Reduces media formats supported by the video source to given set. - * - * Useful to force negotiation of smaller picture resolution more suitable for - * use with particular codec and communication protocol without rescaling. - * - * @param manager The media manager to set the media formats. - * @param caps Set of allowed media formats. - * - * @since 2.8.0 - */ -void purple_media_manager_set_video_caps(PurpleMediaManager *manager, - GstCaps *caps); - -/** - * Returns current set of media formats limiting the output from video source. - * - * @param manager The media manager to get the media formats from. - * - * @return @c GstCaps limiting the video source's formats. - * - * @since 2.8.0 - */ -GstCaps *purple_media_manager_get_video_caps(PurpleMediaManager *manager); - -gchar *purple_media_element_info_get_id(PurpleMediaElementInfo *info); -gchar *purple_media_element_info_get_name(PurpleMediaElementInfo *info); -PurpleMediaElementType purple_media_element_info_get_element_type( - PurpleMediaElementInfo *info); -GstElement *purple_media_element_info_call_create( - PurpleMediaElementInfo *info, PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -#ifdef __cplusplus -} -#endif - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_GST_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media.h deleted file mode 100644 index b001b75..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media.h +++ /dev/null @@ -1,446 +0,0 @@ -/** - * @file media.h Media API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_H_ -#define _PURPLE_MEDIA_H_ - -#include "media/candidate.h" -#include "media/codec.h" -#include "media/enum-types.h" - -#include -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA (purple_media_get_type()) -#define PURPLE_MEDIA(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA, PurpleMedia)) -#define PURPLE_MEDIA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA, PurpleMediaClass)) -#define PURPLE_IS_MEDIA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA)) -#define PURPLE_IS_MEDIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA)) -#define PURPLE_MEDIA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA, PurpleMediaClass)) - -/** An opaque structure representing a media call. */ -typedef struct _PurpleMedia PurpleMedia; - -#include "signals.h" -#include "util.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Gets the media class's GType - * - * @return The media class's GType. - * - * @since 2.6.0 - */ -GType purple_media_get_type(void); - -/** - * Gets a list of session IDs. - * - * @param media The media session from which to retrieve session IDs. - * - * @return GList of session IDs. The caller must free the list. - * - * @since 2.6.0 - */ -GList *purple_media_get_session_ids(PurpleMedia *media); - -/** - * Gets the PurpleAccount this media session is on. - * - * @param media The media session to retrieve the account from. - * - * @return The account retrieved. - * - * @since 2.6.0 - */ -PurpleAccount *purple_media_get_account(PurpleMedia *media); - -/** - * Gets the prpl data from the media session. - * - * @param media The media session to retrieve the prpl data from. - * - * @return The prpl data retrieved. - * - * @since 2.6.0 - */ -gpointer purple_media_get_prpl_data(PurpleMedia *media); - -/** - * Sets the prpl data on the media session. - * - * @param media The media session to set the prpl data on. - * @param prpl_data The data to set on the media session. - * - * @since 2.6.0 - */ -void purple_media_set_prpl_data(PurpleMedia *media, gpointer prpl_data); - -/** - * Signals an error in the media session. - * - * @param media The media object to set the state on. - * @param error The format of the error message to send in the signal. - * @param ... The arguments to plug into the format. - * - * @since 2.6.0 - */ -void purple_media_error(PurpleMedia *media, const gchar *error, ...); - -/** - * Ends all streams that match the given parameters - * - * @param media The media object with which to end streams. - * @param session_id The session to end streams on. - * @param participant The participant to end streams with. - * - * @since 2.6.0 - */ -void purple_media_end(PurpleMedia *media, const gchar *session_id, - const gchar *participant); - -/** - * Signals different information about the given stream. - * - * @param media The media instance to containing the stream to signal. - * @param type The type of info being signaled. - * @param session_id The id of the session of the stream being signaled. - * @param participant The participant of the stream being signaled. - * @param local TRUE if the info originated locally, FALSE if on the remote end. - * - * @since 2.6.0 - */ -void purple_media_stream_info(PurpleMedia *media, PurpleMediaInfoType type, - const gchar *session_id, const gchar *participant, - gboolean local); - -/** - * Sets various optional parameters of the media call. - * - * Currently supported are: - * - "sdes-cname" : The CNAME for the RTP sessions - * - "sdes-name" : Real name used to describe the source in SDES messages - * - "sdes-tool" : The TOOL to put in SDES messages - * - "sdes-email" : Email address to put in SDES messages - * - "sdes-location" : The LOCATION to put in SDES messages - * - "sdes-note" : The NOTE to put in SDES messages - * - "sdes-phone" : The PHONE to put in SDES messages - * - * @param media The media object to set the parameters on. - * @param num_params The number of parameters to pass - * @param params Array of @c GParameter to pass - * - * @since 2.8.0 - */ -void purple_media_set_params(PurpleMedia *media, - guint num_params, GParameter *params); - -/** - * Gets the list of optional parameters supported by the media backend. - * - * The list is owned by the @c PurpleMedia internals and should NOT be freed. - * - * @param media The media object - * - * @return NULL-terminated array of names of supported parameters. - * - * @since 2.8.0 - */ -const gchar **purple_media_get_available_params(PurpleMedia *media); - -/** - * Checks if given optional parameter is supported by the media backend. - * - * @param media The media object - * @param param name of parameter - * - * @return @c TRUE if backend recognizes the parameter, @c FALSE otherwise. - * - * @since 2.8.0 - */ -gboolean purple_media_param_is_supported(PurpleMedia *media, const gchar *param); - -/** - * Adds a stream to a session. - * - * It only adds a stream to one audio session or video session as - * the @c sess_id must be unique between sessions. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to add the stream to. - * @param who The name of the remote user to add the stream for. - * @param type The type of stream to create. - * @param initiator Whether or not the local user initiated the stream. - * @param transmitter The transmitter to use for the stream. - * @param num_params The number of parameters to pass to Farsight. - * @param params The parameters to pass to Farsight. - * - * @return @c TRUE The stream was added successfully, @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_add_stream(PurpleMedia *media, const gchar *sess_id, - const gchar *who, PurpleMediaSessionType type, - gboolean initiator, const gchar *transmitter, - guint num_params, GParameter *params); - -/** - * Gets the session type from a session - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to get the type from. - * - * @return The retreived session type. - * - * @since 2.6.0 - */ -PurpleMediaSessionType purple_media_get_session_type(PurpleMedia *media, const gchar *sess_id); - -/** - * Gets the PurpleMediaManager this media session is a part of. - * - * @param media The media object to get the manager instance from. - * - * @return The PurpleMediaManager instance retrieved. - * - * @since 2.6.0 - */ -struct _PurpleMediaManager *purple_media_get_manager(PurpleMedia *media); - -/** - * Gets the codecs from a session. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to get the codecs from. - * - * @return The retreieved codecs. - * - * @since 2.6.0 - */ -GList *purple_media_get_codecs(PurpleMedia *media, const gchar *sess_id); - -/** - * Adds remote candidates to the stream. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session find the stream in. - * @param participant The name of the remote user to add the candidates for. - * @param remote_candidates The remote candidates to add. - * - * @since 2.6.0 - */ -void purple_media_add_remote_candidates(PurpleMedia *media, - const gchar *sess_id, - const gchar *participant, - GList *remote_candidates); - -/** - * Gets the local candidates from a stream. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to find the stream in. - * @param participant The name of the remote user to get the candidates from. - * - * @since 2.6.0 - */ -GList *purple_media_get_local_candidates(PurpleMedia *media, - const gchar *sess_id, - const gchar *participant); - -/** - * Gets the active local candidates for the stream. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to find the stream in. - * @param participant The name of the remote user to get the active candidate - * from. - * - * @return The active candidates retrieved. - * - * @since 2.8.0 - */ -GList *purple_media_get_active_local_candidates(PurpleMedia *media, - const gchar *sess_id, const gchar *participant); - -/** - * Gets the active remote candidates for the stream. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to find the stream in. - * @param participant The name of the remote user to get the remote candidate - * from. - * - * @return The remote candidates retrieved. - * - * @since 2.8.0 - */ -GList *purple_media_get_active_remote_candidates(PurpleMedia *media, - const gchar *sess_id, const gchar *participant); - -/** - * Sets remote candidates from the stream. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session find the stream in. - * @param participant The name of the remote user to set the candidates from. - * @param codecs The list of remote codecs to set. - * - * @return @c TRUE The codecs were set successfully, or @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_set_remote_codecs(PurpleMedia *media, const gchar *sess_id, - const gchar *participant, GList *codecs); - -/** - * Returns whether or not the candidates for set of streams are prepared - * - * @param media The media object to find the remote user in. - * @param session_id The session id of the session to check. - * @param participant The remote user to check for. - * - * @return @c TRUE All streams for the given session_id/participant combination have candidates prepared, @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_candidates_prepared(PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -/** - * Sets the send codec for the a session. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to set the codec for. - * @param codec The codec to set the session to stream. - * - * @return @c TRUE The codec was successfully changed, or @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_set_send_codec(PurpleMedia *media, const gchar *sess_id, PurpleMediaCodec *codec); - -/** - * Gets whether a session's codecs are ready to be used. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to check. - * - * @return @c TRUE The codecs are ready, or @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_codecs_ready(PurpleMedia *media, const gchar *sess_id); - -/** - * Gets whether the local user is the conference/session/stream's initiator. - * - * @param media The media instance to find the session in. - * @param sess_id The session id of the session to check. - * @param participant The participant of the stream to check. - * - * @return TRUE if the local user is the stream's initator, else FALSE. - * - * @since 2.6.0 - */ -gboolean purple_media_is_initiator(PurpleMedia *media, - const gchar *sess_id, const gchar *participant); - -/** - * Gets whether a streams selected have been accepted. - * - * @param media The media object to find the session in. - * @param sess_id The session id of the session to check. - * @param participant The participant to check. - * - * @return @c TRUE The selected streams have been accepted, or @c FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_media_accepted(PurpleMedia *media, const gchar *sess_id, - const gchar *participant); - -/** - * Sets the input volume of all the selected sessions. - * - * @param media The media object the sessions are in. - * @param session_id The session to select (if any). - * @param level The level to set the volume to. - * - * @since 2.6.0 - */ -void purple_media_set_input_volume(PurpleMedia *media, const gchar *session_id, double level); - -/** - * Sets the output volume of all the selected streams. - * - * @param media The media object the streams are in. - * @param session_id The session to limit the streams to (if any). - * @param participant The participant to limit the streams to (if any). - * @param level The level to set the volume to. - * - * @since 2.6.0 - */ -void purple_media_set_output_volume(PurpleMedia *media, const gchar *session_id, - const gchar *participant, double level); - -/** - * Sets a video output window for the given session/stream. - * - * @param media The media instance to set the output window on. - * @param session_id The session to set the output window on. - * @param participant Optionally, the participant to set the output window on. - * @param window_id The window id use for embedding the video in. - * - * @return An id to reference the output window. - * - * @since 2.6.0 - */ -gulong purple_media_set_output_window(PurpleMedia *media, - const gchar *session_id, const gchar *participant, - gulong window_id); - -/** - * Removes all output windows from a given media session. - * - * @param media The instance to remove all output windows from. - * - * @since 2.6.0 - */ -void purple_media_remove_output_windows(PurpleMedia *media); - -#ifdef __cplusplus -} -#endif - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/backend-iface.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/backend-iface.h deleted file mode 100644 index 94105fb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/backend-iface.h +++ /dev/null @@ -1,224 +0,0 @@ -/** - * @file backend-iface.h Interface for media backends - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _MEDIA_BACKEND_IFACE_H_ -#define _MEDIA_BACKEND_IFACE_H_ - -#include "codec.h" -#include "enum-types.h" - -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_BACKEND (purple_media_backend_get_type()) -#define PURPLE_IS_MEDIA_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_BACKEND)) -#define PURPLE_MEDIA_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_BACKEND, PurpleMediaBackend)) -#define PURPLE_MEDIA_BACKEND_GET_INTERFACE(inst)(G_TYPE_INSTANCE_GET_INTERFACE((inst), PURPLE_TYPE_MEDIA_BACKEND, PurpleMediaBackendIface)) - -/** A placeholder to represent any media backend */ -typedef struct _PurpleMediaBackend PurpleMediaBackend; -/** A structure to derive media backends from. */ -typedef struct _PurpleMediaBackendIface PurpleMediaBackendIface; - -struct _PurpleMediaBackendIface -{ - GTypeInterface parent_iface; /**< The parent iface class */ - - /** Implementable functions called with purple_media_backend_* */ - gboolean (*add_stream) (PurpleMediaBackend *self, - const gchar *sess_id, const gchar *who, - PurpleMediaSessionType type, gboolean initiator, - const gchar *transmitter, - guint num_params, GParameter *params); - void (*add_remote_candidates) (PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant, - GList *remote_candidates); - gboolean (*codecs_ready) (PurpleMediaBackend *self, - const gchar *sess_id); - GList *(*get_codecs) (PurpleMediaBackend *self, - const gchar *sess_id); - GList *(*get_local_candidates) (PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant); - gboolean (*set_remote_codecs) (PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant, - GList *codecs); - gboolean (*set_send_codec) (PurpleMediaBackend *self, - const gchar *sess_id, PurpleMediaCodec *codec); - void (*set_params) (PurpleMediaBackend *self, - guint num_params, GParameter *params); - const gchar **(*get_available_params) (void); -}; - -/** - * Gets the media backend's GType. - * - * @return The media backend's GType. - * - * @since 2.7.0 - */ -GType purple_media_backend_get_type(void); - -/** - * Creates and adds a stream to the media backend. - * - * @param self The backend to add the stream to. - * @param sess_id The session id of the stream to add. - * @param who The remote participant of the stream to add. - * @param type The media type and direction of the stream to add. - * @param initiator True if the local user initiated the stream. - * @param transmitter The string id of the tranmsitter to use. - * @param num_params The number of parameters in the param parameter. - * @param params The additional parameters to pass when creating the stream. - * - * @return True if the stream was successfully created, othewise False. - * - * @since 2.7.0 - */ -gboolean purple_media_backend_add_stream(PurpleMediaBackend *self, - const gchar *sess_id, const gchar *who, - PurpleMediaSessionType type, gboolean initiator, - const gchar *transmitter, - guint num_params, GParameter *params); - -/** - * Add remote candidates to a stream. - * - * @param self The backend the stream is in. - * @param sess_id The session id associated with the stream. - * @param participant The participant associated with the stream. - * @param remote_candidates The list of remote candidates to add. - * - * @since 2.7.0 - */ -void purple_media_backend_add_remote_candidates(PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant, - GList *remote_candidates); - -/** - * Get whether or not a session's codecs are ready. - * - * A codec is ready if all of the attributes and additional - * parameters have been collected. - * - * @param self The media backend the session is in. - * @param sess_id The session id of the session to check. - * - * @return True if the codecs are ready, otherwise False. - * - * @since 2.7.0 - */ -gboolean purple_media_backend_codecs_ready(PurpleMediaBackend *self, - const gchar *sess_id); - -/** - * Gets the codec intersection list for a session. - * - * The intersection list consists of all codecs that are compatible - * between the local and remote software. - * - * @param self The media backend the session is in. - * @param sess_id The session id of the session to use. - * - * @return The codec intersection list. - * - * @since 2.7.0 - */ -GList *purple_media_backend_get_codecs(PurpleMediaBackend *self, - const gchar *sess_id); - -/** - * Gets the list of local candidates for a stream. - * - * @param self The media backend the stream is in. - * @param sess_id The session id associated with the stream. - * @param particilant The participant associated with the stream. - * - * @return The list of local candidates. - * - * @since 2.7.0 - */ -GList *purple_media_backend_get_local_candidates(PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant); - -/** - * Sets the remote codecs on a stream. - * - * @param self The media backend the stream is in. - * @param sess_id The session id the stream is associated with. - * @param participant The participant the stream is associated with. - * @param codecs The list of remote codecs to set. - * - * @return True if the remote codecs were set successfully, otherwise False. - * - * @since 2.7.0 - */ -gboolean purple_media_backend_set_remote_codecs(PurpleMediaBackend *self, - const gchar *sess_id, const gchar *participant, - GList *codecs); - -/** - * Sets which codec format to send media content in for a session. - * - * @param self The media backend the session is in. - * @param sess_id The session id of the session to set the codec for. - * @param codec The codec to set. - * - * @return True if set successfully, otherwise False. - * - * @since 2.7.0 - */ -gboolean purple_media_backend_set_send_codec(PurpleMediaBackend *self, - const gchar *sess_id, PurpleMediaCodec *codec); - -/** - * Sets various optional parameters of the media backend. - * - * @param self The media backend to set the parameters on. - * @param num_params The number of parameters to pass to backend - * @param params Array of @c GParameter to pass to backend - * - * @since 2.8.0 - */ -void purple_media_backend_set_params(PurpleMediaBackend *self, - guint num_params, GParameter *params); - -/** - * Gets the list of optional parameters supported by the media backend. - * - * The list should NOT be freed. - * - * @param self The media backend - * - * @return NULL-terminated array of names of supported parameters. - * - * @since 2.8.0 - */ -const gchar **purple_media_backend_get_available_params(PurpleMediaBackend *self); - -G_END_DECLS - -#endif /* _MEDIA_BACKEND_IFACE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/candidate.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/candidate.h deleted file mode 100644 index 1dfa0fd..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/candidate.h +++ /dev/null @@ -1,252 +0,0 @@ -/** - * @file candidate.h Candidate for Media API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_CANDIDATE_H_ -#define _PURPLE_MEDIA_CANDIDATE_H_ - -#include "enum-types.h" - -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_CANDIDATE (purple_media_candidate_get_type()) -#define PURPLE_IS_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_CANDIDATE)) -#define PURPLE_IS_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_CANDIDATE)) -#define PURPLE_MEDIA_CANDIDATE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) -#define PURPLE_MEDIA_CANDIDATE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) -#define PURPLE_MEDIA_CANDIDATE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_CANDIDATE, PurpleMediaCandidate)) - -/** An opaque structure representing a network candidate (IP Address and port pair). */ -typedef struct _PurpleMediaCandidate PurpleMediaCandidate; - -/** - * Gets the type of the media candidate structure. - * - * @return The media canditate's GType - * - * @since 2.6.0 - */ -GType purple_media_candidate_get_type(void); - -/** - * Creates a PurpleMediaCandidate instance. - * - * @param foundation The foundation of the candidate. - * @param component_id The component this candidate is for. - * @param type The type of candidate. - * @param proto The protocol this component is for. - * @param ip The IP address of this component. - * @param port The network port. - * - * @return The newly created PurpleMediaCandidate instance. - * - * @since 2.6.0 - */ -PurpleMediaCandidate *purple_media_candidate_new( - const gchar *foundation, guint component_id, - PurpleMediaCandidateType type, - PurpleMediaNetworkProtocol proto, - const gchar *ip, guint port); - -/** - * Copies a PurpleMediaCandidate. - * - * @param candidate The candidate to copy. - * - * @return The copy of the PurpleMediaCandidate. - * - * @since 2.7.0 - */ -PurpleMediaCandidate *purple_media_candidate_copy( - PurpleMediaCandidate *candidate); - -/** - * Copies a GList of PurpleMediaCandidate and its contents. - * - * @param candidates The list of candidates to be copied. - * - * @return The copy of the GList. - * - * @since 2.6.0 - */ -GList *purple_media_candidate_list_copy(GList *candidates); - -/** - * Frees a GList of PurpleMediaCandidate and its contents. - * - * @param candidates The list of candidates to be freed. - * - * @since 2.6.0 - */ -void purple_media_candidate_list_free(GList *candidates); - -/** - * Gets the foundation (identifier) from the candidate. - * - * @param candidate The candidate to get the foundation from. - * - * @return The foundation. - * - * @since 2.6.0 - */ -gchar *purple_media_candidate_get_foundation(PurpleMediaCandidate *candidate); - -/** - * Gets the component id (rtp or rtcp) - * - * @param candidate The candidate to get the compnent id from. - * - * @return The component id. - * - * @since 2.6.0 - */ -guint purple_media_candidate_get_component_id(PurpleMediaCandidate *candidate); - -/** - * Gets the IP address. - * - * @param candidate The candidate to get the IP address from. - * - * @return The IP address. - * - * @since 2.6.0 - */ -gchar *purple_media_candidate_get_ip(PurpleMediaCandidate *candidate); - -/** - * Gets the port. - * - * @param candidate The candidate to get the port from. - * - * @return The port. - * - * @since 2.6.0 - */ -guint16 purple_media_candidate_get_port(PurpleMediaCandidate *candidate); - -/** - * Gets the base (internal) IP address. - * - * This can be NULL. - * - * @param candidate The candidate to get the base IP address from. - * - * @return The base IP address. - * - * @since 2.6.0 - */ -gchar *purple_media_candidate_get_base_ip(PurpleMediaCandidate *candidate); - -/** - * Gets the base (internal) port. - * - * Invalid if the base IP is NULL. - * - * @param candidate The candidate to get the base port. - * - * @return The base port. - * - * @since 2.6.0 - */ -guint16 purple_media_candidate_get_base_port(PurpleMediaCandidate *candidate); - -/** - * Gets the protocol (TCP or UDP). - * - * @param candidate The candidate to get the protocol from. - * - * @return The protocol. - * - * @since 2.6.0 - */ -PurpleMediaNetworkProtocol purple_media_candidate_get_protocol( - PurpleMediaCandidate *candidate); - -/** - * Gets the priority. - * - * @param candidate The candidate to get the priority from. - * - * @return The priority. - * - * @since 2.6.0 - */ -guint32 purple_media_candidate_get_priority(PurpleMediaCandidate *candidate); - -/** - * Gets the candidate type. - * - * @param candidate The candidate to get the candidate type from. - * - * @return The candidate type. - * - * @since 2.6.0 - */ -PurpleMediaCandidateType purple_media_candidate_get_candidate_type( - PurpleMediaCandidate *candidate); - -/** - * Gets the username. - * - * This can be NULL. It depends on the transmission type. - * - * @param The candidate to get the username from. - * - * @return The username. - * - * @since 2.6.0 - */ -gchar *purple_media_candidate_get_username(PurpleMediaCandidate *candidate); - -/** - * Gets the password. - * - * This can be NULL. It depends on the transmission type. - * - * @param The candidate to get the password from. - * - * @return The password. - * - * @since 2.6.0 - */ -gchar *purple_media_candidate_get_password(PurpleMediaCandidate *candidate); - -/** - * Gets the TTL. - * - * @param The candidate to get the TTL from. - * - * @return The TTL. - * - * @since 2.6.0 - */ -guint purple_media_candidate_get_ttl(PurpleMediaCandidate *candidate); - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_CANDIDATE_H_ */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/codec.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/codec.h deleted file mode 100644 index 46a4ee1..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/codec.h +++ /dev/null @@ -1,214 +0,0 @@ -/** - * @file codec.h Codec for Media API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_CODEC_H_ -#define _PURPLE_MEDIA_CODEC_H_ - -#include "enum-types.h" - -/** An opaque structure representing an audio or video codec. */ -typedef struct _PurpleMediaCodec PurpleMediaCodec; - -#include "../util.h" - -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_CODEC (purple_media_codec_get_type()) -#define PURPLE_IS_MEDIA_CODEC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_CODEC)) -#define PURPLE_IS_MEDIA_CODEC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_CODEC)) -#define PURPLE_MEDIA_CODEC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_CODEC, PurpleMediaCodec)) -#define PURPLE_MEDIA_CODEC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_CODEC, PurpleMediaCodec)) -#define PURPLE_MEDIA_CODEC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_CODEC, PurpleMediaCodec)) - - -/** - * Gets the type of the media codec structure. - * - * @return The media codec's GType - * - * @since 2.6.0 - */ -GType purple_media_codec_get_type(void); - -/** - * Creates a new PurpleMediaCodec instance. - * - * @param id Codec identifier. - * @param encoding_name Name of the media type this encodes. - * @param media_type PurpleMediaSessionType of this codec. - * @param clock_rate The clock rate this codec encodes at, if applicable. - * - * @return The newly created PurpleMediaCodec. - * - * @since 2.6.0 - */ -PurpleMediaCodec *purple_media_codec_new(int id, const char *encoding_name, - PurpleMediaSessionType media_type, guint clock_rate); - -/** - * Gets the codec id. - * - * @param The codec to get the id from. - * - * @return The codec id. - * - * @since 2.6.0 - */ -guint purple_media_codec_get_id(PurpleMediaCodec *codec); - -/** - * Gets the encoding name. - * - * @param The codec to get the encoding name from. - * - * @return The encoding name. - * - * @since 2.6.0 - */ -gchar *purple_media_codec_get_encoding_name(PurpleMediaCodec *codec); - -/** - * Gets the clock rate. - * - * @param The codec to get the clock rate from. - * - * @return The clock rate. - * - * @since 2.6.0 - */ -guint purple_media_codec_get_clock_rate(PurpleMediaCodec *codec); - -/** - * Gets the number of channels. - * - * @param The codec to get the number of channels from. - * - * @return The number of channels. - * - * @since 2.6.0 - */ -guint purple_media_codec_get_channels(PurpleMediaCodec *codec); - -/** - * Gets a list of the optional parameters. - * - * The list consists of PurpleKeyValuePair's. - * - * @param The codec to get the optional parameters from. - * - * @return The list of optional parameters. The list is owned by the codec and - * should not be freed. - * - * @since 2.6.0 - */ -GList *purple_media_codec_get_optional_parameters(PurpleMediaCodec *codec); - -/** - * Adds an optional parameter to the codec. - * - * @param codec The codec to add the parameter to. - * @param name The name of the parameter to add. - * @param value The value of the parameter to add. - * - * @since 2.6.0 - */ -void purple_media_codec_add_optional_parameter(PurpleMediaCodec *codec, - const gchar *name, const gchar *value); - -/** - * Removes an optional parameter from the codec. - * - * @param codec The codec to remove the parameter from. - * @param param A pointer to the parameter to remove. - * - * @since 2.6.0 - */ -void purple_media_codec_remove_optional_parameter(PurpleMediaCodec *codec, - PurpleKeyValuePair *param); - -/** - * Gets an optional parameter based on the values given. - * - * @param codec The codec to find the parameter in. - * @param name The name of the parameter to search for. - * @param value The value to search for or NULL. - * - * @return The value found or NULL. - * - * @since 2.6.0 - */ -PurpleKeyValuePair *purple_media_codec_get_optional_parameter( - PurpleMediaCodec *codec, const gchar *name, - const gchar *value); - -/** - * Copies a PurpleMediaCodec object. - * - * @param codec The codec to copy. - * - * @return The copy of the codec. - * - * @since 2.7.0 - */ -PurpleMediaCodec *purple_media_codec_copy(PurpleMediaCodec *codec); - -/** - * Copies a GList of PurpleMediaCodec and its contents. - * - * @param codecs The list of codecs to be copied. - * - * @return The copy of the GList. - * - * @since 2.6.0 - */ -GList *purple_media_codec_list_copy(GList *codecs); - -/** - * Frees a GList of PurpleMediaCodec and its contents. - * - * @param codecs The list of codecs to be freed. - * - * @since 2.6.0 - */ -void purple_media_codec_list_free(GList *codecs); - -/** - * Creates a string representation of the codec. - * - * @param codec The codec to create the string of. - * - * @return The new string representation. - * - * @since 2.6.0 - */ -gchar *purple_media_codec_to_string(const PurpleMediaCodec *codec); - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_CODEC_H_ */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/enum-types.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/enum-types.h deleted file mode 100644 index e05baf2..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/media/enum-types.h +++ /dev/null @@ -1,162 +0,0 @@ -/** - * @file enum-types.h Enum types for Media API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_ENUM_TYPES_H_ -#define _PURPLE_MEDIA_ENUM_TYPES_H_ - -#include - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_CANDIDATE_TYPE (purple_media_candidate_type_get_type()) -#define PURPLE_MEDIA_TYPE_CAPS (purple_media_caps_get_type()) -#define PURPLE_MEDIA_TYPE_INFO_TYPE (purple_media_info_type_get_type()) -#define PURPLE_TYPE_MEDIA_NETWORK_PROTOCOL (purple_media_network_protocol_get_type()) -#define PURPLE_TYPE_MEDIA_SESSION_TYPE (purple_media_session_type_get_type()) -#define PURPLE_MEDIA_TYPE_STATE (purple_media_state_changed_get_type()) - -/** Media candidate types */ -typedef enum { - PURPLE_MEDIA_CANDIDATE_TYPE_HOST, - PURPLE_MEDIA_CANDIDATE_TYPE_SRFLX, - PURPLE_MEDIA_CANDIDATE_TYPE_PRFLX, - PURPLE_MEDIA_CANDIDATE_TYPE_RELAY, - PURPLE_MEDIA_CANDIDATE_TYPE_MULTICAST -} PurpleMediaCandidateType; - -/** Media caps */ -typedef enum { - PURPLE_MEDIA_CAPS_NONE = 0, - PURPLE_MEDIA_CAPS_AUDIO = 1, - PURPLE_MEDIA_CAPS_AUDIO_SINGLE_DIRECTION = 1 << 1, - PURPLE_MEDIA_CAPS_VIDEO = 1 << 2, - PURPLE_MEDIA_CAPS_VIDEO_SINGLE_DIRECTION = 1 << 3, - PURPLE_MEDIA_CAPS_AUDIO_VIDEO = 1 << 4, - PURPLE_MEDIA_CAPS_MODIFY_SESSION = 1 << 5, - PURPLE_MEDIA_CAPS_CHANGE_DIRECTION = 1 << 6 -} PurpleMediaCaps; - -/** Media component types */ -typedef enum { - PURPLE_MEDIA_COMPONENT_NONE = 0, - PURPLE_MEDIA_COMPONENT_RTP = 1, - PURPLE_MEDIA_COMPONENT_RTCP = 2 -} PurpleMediaComponentType; - -/** Media info types */ -typedef enum { - PURPLE_MEDIA_INFO_HANGUP = 0, - PURPLE_MEDIA_INFO_ACCEPT, - PURPLE_MEDIA_INFO_REJECT, - PURPLE_MEDIA_INFO_MUTE, - PURPLE_MEDIA_INFO_UNMUTE, - PURPLE_MEDIA_INFO_PAUSE, - PURPLE_MEDIA_INFO_UNPAUSE, - PURPLE_MEDIA_INFO_HOLD, - PURPLE_MEDIA_INFO_UNHOLD -} PurpleMediaInfoType; - -/** Media network protocols */ -typedef enum { - PURPLE_MEDIA_NETWORK_PROTOCOL_UDP, - PURPLE_MEDIA_NETWORK_PROTOCOL_TCP -} PurpleMediaNetworkProtocol; - -/** Media session types */ -typedef enum { - PURPLE_MEDIA_NONE = 0, - PURPLE_MEDIA_RECV_AUDIO = 1 << 0, - PURPLE_MEDIA_SEND_AUDIO = 1 << 1, - PURPLE_MEDIA_RECV_VIDEO = 1 << 2, - PURPLE_MEDIA_SEND_VIDEO = 1 << 3, - PURPLE_MEDIA_AUDIO = PURPLE_MEDIA_RECV_AUDIO | PURPLE_MEDIA_SEND_AUDIO, - PURPLE_MEDIA_VIDEO = PURPLE_MEDIA_RECV_VIDEO | PURPLE_MEDIA_SEND_VIDEO -} PurpleMediaSessionType; - -/** Media state-changed types */ -typedef enum { - PURPLE_MEDIA_STATE_NEW = 0, - PURPLE_MEDIA_STATE_CONNECTED, - PURPLE_MEDIA_STATE_END -} PurpleMediaState; - -/** - * Gets the media candidate type's GType - * - * @return The media candidate type's GType. - * - * @since 2.6.0 - */ -GType purple_media_candidate_type_get_type(void); - -/** - * Gets the type of the media caps flags - * - * @return The media caps flags' GType - * - * @since 2.7.0 - */ -GType purple_media_caps_get_type(void); - -/** - * Gets the type of the info type enum - * - * @return The info type enum's GType - * - * @since 2.6.0 - */ -GType purple_media_info_type_get_type(void); - -/** - * Gets the media network protocol's GType - * - * @return The media network protocol's GType. - * - * @since 2.6.0 - */ -GType purple_media_network_protocol_get_type(void); - -/** - * Gets the media session type's GType - * - * @return The media session type's GType. - * - * @since 2.6.0 - */ -GType purple_media_session_type_get_type(void); - -/** - * Gets the type of the state-changed enum - * - * @return The state-changed enum's GType - * - * @since 2.6.0 - */ -GType purple_media_state_changed_get_type(void); - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_ENUM_TYPES_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mediamanager.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mediamanager.h deleted file mode 100644 index d9f54ad..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mediamanager.h +++ /dev/null @@ -1,246 +0,0 @@ -/** - * @file mediamanager.h Media Manager API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_MEDIA_MANAGER_H_ -#define _PURPLE_MEDIA_MANAGER_H_ - -#include -#include - -/** An opaque structure representing a group of (usually all) media calls. */ -typedef struct _PurpleMediaManager PurpleMediaManager; -/** The GObject class structure of the PurpleMediaManager object. */ -typedef struct _PurpleMediaManagerClass PurpleMediaManagerClass; - -#include "account.h" -#include "media.h" - -G_BEGIN_DECLS - -#define PURPLE_TYPE_MEDIA_MANAGER (purple_media_manager_get_type()) -#define PURPLE_MEDIA_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_MEDIA_MANAGER, PurpleMediaManager)) -#define PURPLE_MEDIA_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_MEDIA_MANAGER, PurpleMediaManagerClass)) -#define PURPLE_IS_MEDIA_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_MEDIA_MANAGER)) -#define PURPLE_IS_MEDIA_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_MEDIA_MANAGER)) -#define PURPLE_MEDIA_MANAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_MEDIA_MANAGER, PurpleMediaManagerClass)) - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Media Manager API */ -/**************************************************************************/ -/*@{*/ - -/** - * Gets the media manager's GType. - * - * @return The media manager's GType. - * - * @since 2.6.0 - */ -GType purple_media_manager_get_type(void); - -/** - * Gets the "global" media manager object. It's created if it doesn't already exist. - * - * @return The "global" instance of the media manager object. - * - * @since 2.6.0 - */ -PurpleMediaManager *purple_media_manager_get(void); - -/** - * Creates a media session. - * - * @param manager The media manager to create the session under. - * @param account The account to create the session on. - * @param conference_type The conference type to feed into Farsight2. - * @param remote_user The remote user to initiate the session with. - * @param initiator TRUE if the local user is the initiator of this media call, FALSE otherwise. - * - * @return A newly created media session. - * - * @since 2.6.0 - */ -PurpleMedia *purple_media_manager_create_media(PurpleMediaManager *manager, - PurpleAccount *account, - const char *conference_type, - const char *remote_user, - gboolean initiator); - -/** - * Gets all of the media sessions. - * - * @param manager The media manager to get all of the sessions from. - * - * @return A list of all the media sessions. - * - * @since 2.6.0 - */ -GList *purple_media_manager_get_media(PurpleMediaManager *manager); - -/** - * Gets all of the media sessions for a given account. - * - * @param manager The media manager to get the sessions from. - * @param account The account the sessions are on. - * - * @return A list of the media sessions on the given account. - * - * @since 2.6.0 - */ -GList *purple_media_manager_get_media_by_account( - PurpleMediaManager *manager, PurpleAccount *account); - -/** - * Removes a media session from the media manager. - * - * @param manager The media manager to remove the media session from. - * @param media The media session to remove. - * - * @since 2.6.0 - */ -void -purple_media_manager_remove_media(PurpleMediaManager *manager, - PurpleMedia *media); - -/** - * Signals that output windows should be created for the chosen stream. - * - * This shouldn't be called outside of mediamanager.c and media.c - * - * @param manager Manager the output windows are registered with. - * @param media Media session the output windows are registered for. - * @param session_id The session the output windows are registered with. - * @param participant The participant the output windows are registered with. - * - * @return TRUE if it succeeded, FALSE if it failed. - * - * @since 2.6.0 - */ -gboolean purple_media_manager_create_output_window( - PurpleMediaManager *manager, PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -/** - * Registers a video output window to be created for a given stream. - * - * @param manager The manager to register the output window with. - * @param media The media instance to find the stream in. - * @param session_id The session the stream is associated with. - * @param participant The participant the stream is associated with. - * @param window_id The window ID to embed the video in. - * - * @return A unique ID to the registered output window, 0 if it failed. - * - * @since 2.6.0 - */ -gulong purple_media_manager_set_output_window(PurpleMediaManager *manager, - PurpleMedia *media, const gchar *session_id, - const gchar *participant, gulong window_id); - -/** - * Remove a previously registerd output window. - * - * @param manager The manager the output window was registered with. - * @param output_window_id The ID of the output window. - * - * @return TRUE if it found the output window and was successful, else FALSE. - * - * @since 2.6.0 - */ -gboolean purple_media_manager_remove_output_window( - PurpleMediaManager *manager, gulong output_window_id); - -/** - * Remove all output windows for a given conference/session/participant/stream. - * - * @param manager The manager the output windows were registered with. - * @param media The media instance the output windows were registered for. - * @param session_id The session the output windows were registered for. - * @param participant The participant the output windows were registered for. - * - * @since 2.6.0 - */ -void purple_media_manager_remove_output_windows( - PurpleMediaManager *manager, PurpleMedia *media, - const gchar *session_id, const gchar *participant); - -/** - * Sets which media caps the UI supports. - * - * @param manager The manager to set the caps on. - * @param caps The caps to set. - * - * @since 2.6.0 - */ -void purple_media_manager_set_ui_caps(PurpleMediaManager *manager, - PurpleMediaCaps caps); - -/** - * Gets which media caps the UI supports. - * - * @param manager The manager to get caps from. - * - * @return caps The caps retrieved. - * - * @since 2.6.0 - */ -PurpleMediaCaps purple_media_manager_get_ui_caps(PurpleMediaManager *manager); - -/** - * Sets which media backend type media objects will use. - * - * @param manager The manager to set the caps on. - * @param backend_type The media backend type to use. - * - * @since 2.7.0 - */ -void purple_media_manager_set_backend_type(PurpleMediaManager *manager, - GType backend_type); - -/** - * Gets which media backend type media objects will use. - * - * @param manager The manager to get the media backend type from. - * - * @return The type of media backend type media objects will use. - * - * @since 2.7.0 - */ -GType purple_media_manager_get_backend_type(PurpleMediaManager *manager); - -/*}@*/ - -#ifdef __cplusplus -} -#endif - -G_END_DECLS - -#endif /* _PURPLE_MEDIA_MANAGER_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mime.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mime.h deleted file mode 100644 index b568a49..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/mime.h +++ /dev/null @@ -1,218 +0,0 @@ -/* - * Purple - * - * Purple is the legal property of its developers, whose names are too - * numerous to list here. Please refer to the COPYRIGHT file distributed - * with this source distribution - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or (at - * your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, - * USA. - */ - -#ifndef _PURPLE_MIME_H -#define _PURPLE_MIME_H - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * @file mime.h - * @ingroup core - * - * Rudimentary parsing of multi-part MIME messages into more - * accessible structures. - */ - -/** - * A MIME document. - */ -typedef struct _PurpleMimeDocument PurpleMimeDocument; - -/** - * A part of a multipart MIME document. - */ -typedef struct _PurpleMimePart PurpleMimePart; - -/** - * Allocate an empty MIME document. - */ -PurpleMimeDocument *purple_mime_document_new(void); - -/** - * Frees memory used in a MIME document and all of its parts and fields - * - * @param doc The MIME document to free. - */ -void purple_mime_document_free(PurpleMimeDocument *doc); - -/** - * Parse a MIME document from a NUL-terminated string. - * - * @param buf The NULL-terminated string containing the MIME-encoded data. - * - * @returns A MIME document. - */ -PurpleMimeDocument *purple_mime_document_parse(const char *buf); - -/** - * Parse a MIME document from a string - * - * @param buf The string containing the MIME-encoded data. - * @param len Length of buf. - * - * @returns A MIME document. - */ -PurpleMimeDocument *purple_mime_document_parsen(const char *buf, gsize len); - -/** - * Write (append) a MIME document onto a GString. - */ -void purple_mime_document_write(PurpleMimeDocument *doc, GString *str); - -/** - * The list of fields in the header of a document - * - * @param doc The MIME document. - * - * @constreturn A list of strings indicating the fields (but not the values - * of the fields) in the header of doc. - */ -GList *purple_mime_document_get_fields(PurpleMimeDocument *doc); - -/** - * Get the value of a specific field in the header of a document. - * - * @param doc The MIME document. - * @param field Case-insensitive field name. - * - * @returns Value associated with the indicated header field, or - * NULL if the field doesn't exist. - */ -const char *purple_mime_document_get_field(PurpleMimeDocument *doc, - const char *field); - -/** - * Set or replace the value of a specific field in the header of a - * document. - * - * @param doc The MIME document. - * @param field Case-insensitive field name. - * @param value Value to associate with the indicated header field, - * of NULL to remove the field. - */ -void purple_mime_document_set_field(PurpleMimeDocument *doc, - const char *field, - const char *value); - -/** - * The list of parts in a multipart document. - * - * @param doc The MIME document. - * - * @constreturn List of PurpleMimePart contained within doc. - */ -GList *purple_mime_document_get_parts(PurpleMimeDocument *doc); - -/** - * Create and insert a new part into a MIME document. - * - * @param doc The new part's parent MIME document. - */ -PurpleMimePart *purple_mime_part_new(PurpleMimeDocument *doc); - - -/** - * The list of fields in the header of a document part. - * - * @param part The MIME document part. - * - * @constreturn List of strings indicating the fields (but not the values - * of the fields) in the header of part. - */ -GList *purple_mime_part_get_fields(PurpleMimePart *part); - - -/** - * Get the value of a specific field in the header of a document part. - * - * @param part The MIME document part. - * @param field Case-insensitive name of the header field. - * - * @returns Value of the specified header field, or NULL if the - * field doesn't exist. - */ -const char *purple_mime_part_get_field(PurpleMimePart *part, - const char *field); - -/** - * Get the decoded value of a specific field in the header of a - * document part. - */ -char *purple_mime_part_get_field_decoded(PurpleMimePart *part, - const char *field); - -/** - * Set or replace the value of a specific field in the header of a - * document. - * - * @param part The part of the MIME document. - * @param field Case-insensitive field name - * @param value Value to associate with the indicated header field, - * of NULL to remove the field. - */ -void purple_mime_part_set_field(PurpleMimePart *part, - const char *field, - const char *value); - -/** - * Get the (possibly encoded) data portion of a MIME document part. - * - * @param part The MIME document part. - * - * @returns NULL-terminated data found in the document part - */ -const char *purple_mime_part_get_data(PurpleMimePart *part); - -/** - * Get the data portion of a MIME document part, after attempting to - * decode it according to the content-transfer-encoding field. If the - * specified encoding method is not supported, this function will - * return NULL. - * - * @param part The MIME documemt part. - * @param data Buffer for the data. - * @param len The length of the buffer. - */ -void purple_mime_part_get_data_decoded(PurpleMimePart *part, - guchar **data, gsize *len); - -/** - * Get the length of the data portion of a MIME document part. - * - * @param part The MIME document part. - * @returns Length of the data in the document part. - */ -gsize purple_mime_part_get_length(PurpleMimePart *part); - -void purple_mime_part_set_data(PurpleMimePart *part, const char *data); - -#ifdef __cplusplus -} -#endif - -#endif diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msg.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msg.h deleted file mode 100644 index 845a839..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msg.h +++ /dev/null @@ -1,325 +0,0 @@ -/** - * @file msg.h Message functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_MSG_H -#define MSN_MSG_H - -typedef struct _MsnMessage MsnMessage; - -/* -typedef enum -{ - MSN_MSG_NORMAL, - MSN_MSG_SLP_SB, - MSN_MSG_SLP_DC -} MsnMsgType; -*/ - -typedef enum -{ - MSN_MSG_UNKNOWN, - MSN_MSG_TEXT, - MSN_MSG_TYPING, - MSN_MSG_CAPS, - MSN_MSG_SLP, - MSN_MSG_NUDGE -} MsnMsgType; - -typedef enum -{ - MSN_MSG_ERROR_NONE, /**< No error. */ - MSN_MSG_ERROR_TIMEOUT, /**< The message timedout. */ - MSN_MSG_ERROR_NAK, /**< The message could not be sent. */ - MSN_MSG_ERROR_SB, /**< The error comes from the switchboard. */ - MSN_MSG_ERROR_UNKNOWN /**< An unknown error occurred. */ -} MsnMsgErrorType; - -#include "command.h" -#include "session.h" -#include "transaction.h" -#include "user.h" -#include "slpmsg.h" -#include "slpmsg_part.h" - -typedef void (*MsnMsgCb)(MsnMessage *, void *data); - -#define MSG_BODY_DEM "\r\n\r\n" -#define MSG_LINE_DEM "\r\n" - -#define MSG_OIM_BODY_DEM "\n\n" -#define MSG_OIM_LINE_DEM "\n" - -/** - * A message. - */ -struct _MsnMessage -{ - guint ref_count; /**< The reference count. */ - - MsnMsgType type; - - MsnSlpMessagePart *part; - - char *remote_user; - char flag; - - char *content_type; - char *charset; - char *body; - gsize body_len; - guint total_chunks; /**< How many chunks in this multi-part message */ - guint received_chunks; /**< How many chunks we've received so far */ - - GHashTable *header_table; - GList *header_list; - - gboolean ack_ref; /**< A flag that states if this message has - been ref'ed for using it in a callback. */ - - MsnCommand *cmd; - - MsnMsgCb ack_cb; /**< The callback to call when we receive an ACK of this - message. */ - MsnMsgCb nak_cb; /**< The callback to call when we receive a NAK of this - message. */ - void *ack_data; /**< The data used by callbacks. */ - - guint32 retries; -}; - -/** - * Creates a new, empty message. - * - * @return A new message. - */ -MsnMessage *msn_message_new(MsnMsgType type); - -/** - * Creates a new, empty MSNSLP message. - * - * @return A new MSNSLP message. - */ -MsnMessage *msn_message_new_msnslp(void); - -/** - * Creates a new nudge message. - * - * @return A new nudge message. - */ -MsnMessage *msn_message_new_nudge(void); - -/** - * Creates a new plain message. - * - * @return A new plain message. - */ -MsnMessage *msn_message_new_plain(const char *message); - -/** - * Creates a new message based off a command. - * - * @param session The MSN session. - * @param cmd The command. - * - * @return The new message. - */ -MsnMessage *msn_message_new_from_cmd(MsnSession *session, MsnCommand *cmd); - -/** - * Parses the payload of a message. - * - * @param msg The message. - * @param payload The payload. - * @param payload_len The length of the payload. - */ -void msn_message_parse_payload(MsnMessage *msg, const char *payload, - size_t payload_len, - const char *line_dem,const char *body_dem); - -/** - * Increments the reference count on a message. - * - * @param msg The message. - * - * @return @a msg - */ -MsnMessage *msn_message_ref(MsnMessage *msg); - -/** - * Decrements the reference count on a message. - * - * This will destroy the structure if the count hits 0. - * - * @param msg The message. - * - * @return @a msg, or @c NULL if the new count is 0. - */ -void msn_message_unref(MsnMessage *msg); - -/** - * Generates the payload data of a message. - * - * @param msg The message. - * @param ret_size The returned size of the payload. - * - * @return The payload data of the message. - */ -char *msn_message_gen_payload(MsnMessage *msg, size_t *ret_size); - -/** - * Sets the flag for an outgoing message. - * - * @param msg The message. - * @param flag The flag. - */ -void msn_message_set_flag(MsnMessage *msg, char flag); - -/** - * Returns the flag for an outgoing message. - * - * @param msg The message. - * - * @return The flag. - */ -char msn_message_get_flag(const MsnMessage *msg); - -/** - * Sets the binary content of the message. - * - * @param msg The message. - * @param data The binary data. - * @param len The length of the data. - */ -void msn_message_set_bin_data(MsnMessage *msg, const void *data, size_t len); - -/** - * Returns the binary content of the message. - * - * @param msg The message. - * @param len The returned length of the data. - * - * @return The binary data. - */ -const void *msn_message_get_bin_data(const MsnMessage *msg, size_t *len); - -/** - * Sets the content type in a message. - * - * @param msg The message. - * @param type The content-type. - */ -void msn_message_set_content_type(MsnMessage *msg, const char *type); - -/** - * Returns the content type in a message. - * - * @param msg The message. - * - * @return The content-type. - */ -const char *msn_message_get_content_type(const MsnMessage *msg); - -/** - * Sets the charset in a message. - * - * @param msg The message. - * @param charset The charset. - */ -void msn_message_set_charset(MsnMessage *msg, const char *charset); - -/** - * Returns the charset in a message. - * - * @param msg The message. - * - * @return The charset. - */ -const char *msn_message_get_charset(const MsnMessage *msg); - -/** - * Sets a header in a message. - * - * @param msg The message. - * @param header The header name. - * @param value The header value. - */ -void msn_message_set_header(MsnMessage *msg, const char *name, - const char *value); - -/** - * Returns the value of a header from a message. - * - * @param msg The message. - * @param header The header value. - * - * @return The value, or @c NULL if not found. - */ -const char *msn_message_get_header_value(const MsnMessage *msg, const char *name); - -/** - * Parses the body and returns it in the form of a hashtable. - * - * @param msg The message. - * - * @return The resulting hashtable. - */ -GHashTable *msn_message_get_hashtable_from_body(const MsnMessage *msg); - -void msn_message_show_readable(MsnMessage *msg, const char *info, - gboolean text_body); - -char *msn_message_to_string(MsnMessage *msg); - -void msn_plain_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -void msn_control_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -/** - * Processes peer to peer messages. - * - * @param cmdproc The command processor. - * @param msg The message. - */ -void msn_p2p_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -/** - * Processes emoticon messages. - * - * @param cmdproc The command processor. - * @param msg The message. - */ -void msn_emoticon_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -void msn_datacast_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -/** - * Processes INVITE messages. - * - * @param cmdproc The command processor. - * @param msg The message. - */ -void msn_invite_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -void msn_handwritten_msg(MsnCmdProc *cmdproc, MsnMessage *msg); - -#endif /* MSN_MSG_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msn.h deleted file mode 100644 index 7af87ec..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msn.h +++ /dev/null @@ -1,158 +0,0 @@ -/** - * @file msn.h The MSN protocol plugin - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_H -#define MSN_H - -typedef enum -{ - MSN_CAP_VIA_MOBILE = 0x0000001, - MSN_CAP_VIA_TEXAS = 0x0000002, - MSN_CAP_INK_GIF = 0x0000004, - MSN_CAP_INK_ISF = 0x0000008, - MSN_CAP_VIDEO_CHAT = 0x0000010, - MSN_CAP_PACKET = 0x0000020, - MSN_CAP_MOBILE_ON = 0x0000040, - MSN_CAP_WEB_WATCH = 0x0000080, - MSN_CAP_ACTIVITIES = 0x0000100, - MSN_CAP_VIA_WEBIM = 0x0000200, - MSN_CAP_MOBILE_DEV = 0x0000400, - MSN_CAP_VIA_FEDERATED = 0x0000800, - MSN_CAP_SPACE = 0x0001000, - MSN_CAP_MCE = 0x0002000, - MSN_CAP_DIRECTIM = 0x0004000, - MSN_CAP_WINKS = 0x0008000, - MSN_CAP_SEARCH = 0x0010000, - MSN_CAP_BOT = 0x0020000, - MSN_CAP_VOICEIM = 0x0040000, - MSN_CAP_SCHANNEL = 0x0080000, - MSN_CAP_SIP_INVITE = 0x0100000, - MSN_CAP_MULTI_VV = 0x0200000, - MSN_CAP_SDRIVE = 0x0400000, - MSN_CAP_PAGEMODE_MSG = 0x080000, - MSN_CAP_ONECARE = 0x1000000, - MSN_CAP_P2P_TURN = 0x2000000, - MSN_CAP_P2P_BOOTSTRAP_VIA_UUN = 0x4000000, - MSN_CAP_ALIASED = 0x8000000 -} MsnClientCaps; - -typedef enum -{ - MSN_EXT_CAP_SMS_ONLY = 0x1, - MSN_EXT_CAP_VOICE_OVER_MSNP = 0x2, - MSN_EXT_CAP_UUCP_SIP = 0x4, - MSN_EXT_CAP_APP_MSGS = 0x8, - MSN_EXT_CAP_RTC_VIDEO = 0x10, - MSN_EXT_CAP_P2PV2 = 0x20, - MSN_EXT_CAP_AUTH_WEBIM = 0x40, - MSN_EXT_CAP_1ON1_VIA_GROUP = 0x80, - MSN_EXT_CAP_OFFLINEIM = 0x100, - MSN_EXT_CAP_SHARING_VIDEO = 0x200, - MSN_EXT_CAP_NUDGE = 0x400, - MSN_EXT_CAP_CIRCLE_VOICEIM = 0x800, - MSN_EXT_CAP_SHARING = 0x1000, - MSN_EXT_CAP_P2P_MIXER_RELAY = 0x8000, - MSN_EXT_CAP_CONV_WINDOW_FT = 0x20000, - MSN_EXT_CAP_VIDEO_16x9 = 0x40000, - MSN_EXT_CAP_P2P_ENVELOPE = 0x80000, - MSN_EXT_CAP_YAHOOIM_DISABLE = 0x400000, - MSN_EXT_CAP_SIP_TUNNELv2 = 0x800000, - MSN_EXT_CAP_VOICE_CLIP_WMA = 0x1000000, - MSN_EXT_CAP_VOICE_CLIP_CIRCLEIM = 0x2000000, - MSN_EXT_CAP_SOCIAL_NEWS = 0x4000000, - MSN_EXT_CAP_CUSTOM_SMILEY = 0x8000000, - MSN_EXT_CAP_UTF8_MOODS = 0x10000000, - MSN_EXT_CAP_FTURN = 0x20000000, - MSN_EXT_CAP_P4_ACTIVITY = 0x40000000, - MSN_EXT_CAP_MUC = 0x80000000 -} MsnClientExtCaps; - -typedef enum -{ - MSN_CLIENT_VER_5_0 = 0x00, - MSN_CLIENT_VER_6_0 = 0x10, /* MSNC1 */ - MSN_CLIENT_VER_6_1 = 0x20, /* MSNC2 */ - MSN_CLIENT_VER_6_2 = 0x30, /* MSNC3 */ - MSN_CLIENT_VER_7_0 = 0x40, /* MSNC4 */ - MSN_CLIENT_VER_7_5 = 0x50, /* MSNC5 */ - MSN_CLIENT_VER_8_0 = 0x60, /* MSNC6 */ - MSN_CLIENT_VER_8_1 = 0x70, /* MSNC7 */ - MSN_CLIENT_VER_8_5 = 0x80, /* MSNC8 */ - MSN_CLIENT_VER_9_0 = 0x90, /* MSNC9 */ - MSN_CLIENT_VER_14_0 = 0xA0, /* MSNC10 */ - MSN_CLIENT_VER_15_0 = 0xB0 /* MSNC11 */ -} MsnClientVerId; - -#include "internal.h" - -#include "session.h" - -#include "msg.h" - -#define MSN_BUF_LEN 8192 - -/* Windows Live Messenger Server*/ -#define MSN_SERVER "messenger.hotmail.com" -#define MSN_HTTPCONN_SERVER "gateway.messenger.hotmail.com" -#define MSN_PORT 1863 -#define WLM_PROT_VER 18 - -#define WLM_MAX_PROTOCOL 18 -#define WLM_MIN_PROTOCOL 18 - -#define MSN_TYPING_RECV_TIMEOUT 6 -#define MSN_TYPING_SEND_TIMEOUT 4 - -#define PROFILE_URL "http://spaces.live.com/profile.aspx?mem=" -#define PHOTO_URL " contactparams:photopreauthurl=\"" - -#define BUDDY_ALIAS_MAXLEN 387 - -#define MSN_CAM_GUID "4BD96FC0-AB17-4425-A14A-439185962DC8" -#define MSN_CAM_REQUEST_GUID "1C9AA97E-9C05-4583-A3BD-908A196F1E92" -#define MSN_FT_GUID "5D3E02AB-6190-11D3-BBBB-00C04F795683" -#define MSN_OBJ_GUID "A4268EEC-FEC5-49E5-95C3-F126696BDBF6" - -#define MSN_CLIENTINFO \ - "Client-Name: Purple/" VERSION "\r\n" \ - "Chat-Logging: Y\r\n" - -/* Index into attention_types */ -#define MSN_NUDGE 0 - -#define MSN_CLIENT_ID_VERSION MSN_CLIENT_VER_9_0 -#define MSN_CLIENT_ID_CAPABILITIES (MSN_CAP_PACKET|MSN_CAP_INK_GIF|MSN_CAP_VOICEIM) -#define MSN_CLIENT_ID_EXT_CAPS (0) - -#define MSN_CLIENT_ID \ - ((MSN_CLIENT_ID_VERSION << 24) | \ - (MSN_CLIENT_ID_CAPABILITIES)) - -void -msn_set_public_alias(PurpleConnection *gc, const char *alias, - PurpleSetPublicAliasSuccessCallback success_cb, - PurpleSetPublicAliasFailureCallback failure_cb); -void msn_send_privacy(PurpleConnection *gc); -void msn_send_im_message(MsnSession *session, MsnMessage *msg); - -#endif /* MSN_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msnutils.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msnutils.h deleted file mode 100644 index c4ed8fc..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/msnutils.h +++ /dev/null @@ -1,244 +0,0 @@ -/** - * @file msnutils.h Utility functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_UTILS_H -#define MSN_UTILS_H - -/*encode the str to RFC2047 style*/ -char *msn_encode_mime(const char *str); - -/** - * Generate the Random GUID - */ -char *rand_guid(void); - -/** - * Encodes the spaces in a string - * - * @param str The string to be encoded. - * @param buf The buffer to hold the encoded string. - * @param len The maximum length (including NUL) to put in @buf. - * - * @return Whether @str was able to fit in @buf. - */ -gboolean -msn_encode_spaces(const char *str, char *buf, size_t len); - -/** - * Parses the MSN message formatting into a format compatible with Purple. - * - * @param mime The mime header with the formatting. - * @param pre_ret The returned prefix string. - * @param post_ret The returned postfix string. - * - * @return The new message. - */ -void msn_parse_format(const char *mime, char **pre_ret, char **post_ret); - -/** - * Parses the Purple message formatting (html) into the MSN format. - * - * @param html The html message to format. - * @param attributes The returned attributes string. - * @param message The returned message string. - * - * @return The new message. - */ -void msn_import_html(const char *html, char **attributes, char **message); - -/** - * Parses a socket string. - * - * @param str A host:port string. - * @param ret_host Return string value of the host. - * @param ret_port Return integer value of the port. - */ -void msn_parse_socket(const char *str, char **ret_host, int *ret_port); - -/** - * Parses a user name - * - * @param str A network:username string. - * @param ret_user Return of the user's passport. - * @param ret_network Return of the user's network. - */ -void msn_parse_user(const char *str, char **ret_user, int *ret_network); - -/** - * Verify if the email is a vaild passport. - * - * @param passport The email - * - * @return True if it is a valid passport, else FALSE - */ -gboolean msn_email_is_valid(const char *passport); - -/** - * Handle MSN Challenge Computation - * This algorithm references - * http://imfreedom.org/wiki/index.php/MSN:NS/Challenges - * - * @param input Challenge input. - * @param output Callenge output. - */ -void msn_handle_chl(char *input, char *output); - -/** - * Read a byte from a buffer - * - * @param buf Pointer to buffer. - * - * @return 8-bit byte - */ -guint8 msn_read8(const char *buf); - -/** - * Read a little-endian short from a buffer - * - * @param buf Pointer to buffer. - * - * @return 16-bit short - */ -guint16 msn_read16le(const char *buf); - -/** - * Read a big-endian short from a buffer - * - * @param buf Pointer to buffer. - * - * @return 16-bit short - */ -guint16 msn_read16be(const char *buf); - -/** - * Read a little-endian int from a buffer - * - * @param buf Pointer to buffer. - * - * @return 32-bit int - */ -guint32 msn_read32le(const char *buf); - -/** - * Read a big-endian int from a buffer - * - * @param buf Pointer to buffer. - * - * @return 32-bit int - */ -guint32 msn_read32be(const char *buf); - -/** - * Read a little-endian long from a buffer - * - * @param buf Pointer to buffer. - * - * @return 64-bit long - */ -guint64 msn_read64le(const char *buf); - -/** - * Read a big-endian long from a buffer - * - * @param buf Pointer to buffer. - * - * @return 64-bit long - */ -guint64 msn_read64be(const char *buf); - -/** - * Write a byte to a buffer - * - * @param buf Pointer to buffer. - * @param data 8-bit byte. - */ -void msn_write8(char *buf, guint8 data); - -/** - * Write a little-endian short to a buffer - * - * @param buf Pointer to buffer. - * @param data short. - */ -void msn_write16le(char *buf, guint16 data); - -/** - * Write a big-endian short to a buffer - * - * @param buf Pointer to buffer. - * @param data short. - */ -void msn_write16be(char *buf, guint16 data); - -/** - * Write a little-endian int to a buffer - * - * @param buf Pointer to buffer. - * @param data int. - */ -void msn_write32le(char *buf, guint32 data); - -/** - * Write a big-endian int to a buffer - * - * @param buf Pointer to buffer. - * @param data int. - */ -void msn_write32be(char *buf, guint32 data); - -/** - * Write a little-endian long to a buffer - * - * @param buf Pointer to buffer. - * @param data long. - */ -void msn_write64le(char *buf, guint64 data); - -/** - * Write a big-endian long to a buffer - * - * @param buf Pointer to buffer. - * @param data short - */ -void msn_write64be(char *buf, guint64 data); - -/** - * Same as above, but these increment the buf pointer. - */ -#define msn_pop8(buf) msn_read8((buf+=1)-1) -#define msn_pop16le(buf) msn_read16le((buf+=2)-2) -#define msn_pop16be(buf) msn_read16be((buf+=2)-2) -#define msn_pop32le(buf) msn_read32le((buf+=4)-4) -#define msn_pop32be(buf) msn_read32be((buf+=4)-4) -#define msn_pop64le(buf) msn_read64le((buf+=8)-8) -#define msn_pop64be(buf) msn_read64be((buf+=8)-8) -#define msn_push8(buf, data) msn_write8(buf, data), buf+=1 -#define msn_push16le(buf, data) msn_write16le(buf, data), buf+=2 -#define msn_push16be(buf, data) msn_write16be(buf, data), buf+=2 -#define msn_push32le(buf, data) msn_write32le(buf, data), buf+=4 -#define msn_push32be(buf, data) msn_write32be(buf, data), buf+=4 -#define msn_push64le(buf, data) msn_write64le(buf, data), buf+=8 -#define msn_push64be(buf, data) msn_write64be(buf, data), buf+=8 - -#endif /* MSN_UTILS_H */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/namespaces.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/namespaces.h deleted file mode 100644 index 1d56c85..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/namespaces.h +++ /dev/null @@ -1,118 +0,0 @@ -/* - * purple - Jabber Protocol Plugin - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - -#ifndef PURPLE_JABBER_NAMESPACES_H_ -#define PURPLE_JABBER_NAMESPACES_H_ - -#define NS_XMPP_BIND "urn:ietf:params:xml:ns:xmpp-bind" -#define NS_XMPP_CLIENT "jabber:client" -#define NS_XMPP_SASL "urn:ietf:params:xml:ns:xmpp-sasl" -#define NS_XMPP_SESSION "urn:ietf:params:xml:ns:xmpp-session" -#define NS_XMPP_STANZAS "urn:ietf:params:xml:ns:xmpp-stanzas" -#define NS_XMPP_STREAMS "http://etherx.jabber.org/streams" -#define NS_XMPP_TLS "urn:ietf:params:xml:ns:xmpp-tls" - -/* XEP-0012 Last Activity (and XEP-0256 Last Activity in Presence) */ -#define NS_LAST_ACTIVITY "jabber:iq:last" - -/* XEP-0030 Service Discovery */ -#define NS_DISCO_INFO "http://jabber.org/protocol/disco#info" -#define NS_DISCO_ITEMS "http://jabber.org/protocol/disco#items" - -/* XEP-0047 IBB (In-band bytestreams) */ -#define NS_IBB "http://jabber.org/protocol/ibb" - -/* XEP-0065 SOCKS5 Bytestreams */ -#define NS_BYTESTREAMS "http://jabber.org/protocol/bytestreams" - -/* XEP-0066 Out of Band Data (OOB) */ -#define NS_OOB_IQ_DATA "jabber:iq:oob" -#define NS_OOB_X_DATA "jabber:x:oob" - -/* XEP-0071 XHTML-IM (rich-text messages) */ -#define NS_XHTML_IM "http://jabber.org/protocol/xhtml-im" -#define NS_XHTML "http://www.w3.org/1999/xhtml" - -/* XEP-0084 v0.12 User Avatar */ -#define NS_AVATAR_0_12_DATA "http://www.xmpp.org/extensions/xep-0084.html#ns-data" -#define NS_AVATAR_0_12_METADATA "http://www.xmpp.org/extensions/xep-0084.html#ns-metadata" - -/* XEP-0084 v1.1 User Avatar */ -#define NS_AVATAR_1_1_DATA "urn:xmpp:avatar:data" -#define NS_AVATAR_1_1_METADATA "urn:xmpp:avatar:metadata" - -/* XEP-0096 SI File Transfer */ -#define NS_SI_FILE_TRANSFER "http://jabber.org/protocol/si/profile/file-transfer" - -/* XEP-0124 Bidirectional-streams Over Synchronous HTTP (BOSH) */ -#define NS_BOSH "http://jabber.org/protocol/httpbind" - -/* XEP-0191 Simple Communications Blocking */ -#define NS_SIMPLE_BLOCKING "urn:xmpp:blocking" - -/* XEP-0199 Ping */ -#define NS_PING "urn:xmpp:ping" - -/* XEP-0202 Entity Time */ -#define NS_ENTITY_TIME "urn:xmpp:time" - -/* XEP-0203 Delayed Delivery (and legacy delayed delivery) */ -#define NS_DELAYED_DELIVERY "urn:xmpp:delay" -#define NS_DELAYED_DELIVERY_LEGACY "jabber:x:delay" - -/* XEP-0206 XMPP over BOSH */ -#define NS_XMPP_BOSH "urn:xmpp:xbosh" - -/* XEP-0224 Attention */ -#define NS_ATTENTION "urn:xmpp:attention:0" - -/* XEP-0231 BoB (Bits of Binary) */ -#define NS_BOB "urn:xmpp:bob" - -/* XEP-0237 Roster Versioning */ -#define NS_ROSTER_VERSIONING "urn:xmpp:features:rosterver" - -/* XEP-0264 File Transfer Thumbnails (Thumbs) */ -#define NS_THUMBS "urn:xmpp:thumbs:0" - -/* XEP-0280 Message Carbons */ -#define NS_XMPP_CARBONS "urn:xmpp:carbons:1" - -/* XEP-0297 Message Forwarding */ -#define NS_XMPP_FORWARD "urn:xmpp:forward:0" - -/* Google extensions */ -#define NS_GOOGLE_CAMERA "http://www.google.com/xmpp/protocol/camera/v1" -#define NS_GOOGLE_VIDEO "http://www.google.com/xmpp/protocol/video/v1" -#define NS_GOOGLE_VOICE "http://www.google.com/xmpp/protocol/voice/v1" -#define NS_GOOGLE_JINGLE_INFO "google:jingleinfo" - -#define NS_GOOGLE_MAIL_NOTIFY "google:mail:notify" -#define NS_GOOGLE_ROSTER "google:roster" - -#define NS_GOOGLE_PROTOCOL_SESSION "http://www.google.com/xmpp/protocol/session" -#define NS_GOOGLE_SESSION "http://www.google.com/session" -#define NS_GOOGLE_SESSION_PHONE "http://www.google.com/session/phone" -#define NS_GOOGLE_SESSION_VIDEO "http://www.google.com/session/video" - -#endif /* PURPLE_JABBER_NAMESPACES_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nat-pmp.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nat-pmp.h deleted file mode 100644 index 077c74c..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nat-pmp.h +++ /dev/null @@ -1,77 +0,0 @@ -/** - * @file nat-pmp.h NAT-PMP Implementation - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * Most code in nat-pmp.h copyright (C) 2007, R. Tyler Ballance, bleep, LLC. - * This file is distributed under the 3-clause (modified) BSD license: - * Redistribution and use in source and binary forms, with or without modification, are permitted - * provided that the following conditions are met: - * - * Redistributions of source code must retain the above copyright notice, this list of conditions and - * the following disclaimer. - * Neither the name of the bleep. LLC nor the names of its contributors may be used to endorse or promote - * products derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR - * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY - * OF SUCH DAMAGE. - */ - -#ifndef _PURPLE_NAT_PMP_H -#define _PURPLE_NAT_PMP_H - -#include - -#define PURPLE_PMP_LIFETIME 3600 /* 3600 seconds */ - -typedef enum { - PURPLE_PMP_TYPE_UDP, - PURPLE_PMP_TYPE_TCP -} PurplePmpType; - -/** - * Initialize nat-pmp - */ -void purple_pmp_init(void); - -/** - * - */ -char *purple_pmp_get_public_ip(void); - -/** - * Remove the NAT-PMP mapping for a specified type on a specified port - * - * @param type The PurplePmpType - * @param privateport The private port on which we are listening locally - * @param publicport The public port on which we are expecting a response - * @param lifetime The lifetime of the mapping. It is recommended that this be PURPLE_PMP_LIFETIME. - * - * @returns TRUE if succesful; FALSE if unsuccessful - */ -gboolean purple_pmp_create_map(PurplePmpType type, unsigned short privateport, unsigned short publicport, int lifetime); - -/** - * Remove the NAT-PMP mapping for a specified type on a specified port - * - * @param type The PurplePmpType - * @param privateport The private port on which the mapping was previously made - * - * @returns TRUE if succesful; FALSE if unsuccessful - */ -gboolean purple_pmp_destroy_map(PurplePmpType type, unsigned short privateport); - -#endif - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/network.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/network.h deleted file mode 100644 index 333f8e7..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/network.h +++ /dev/null @@ -1,359 +0,0 @@ -/** - * @file network.h Network API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_NETWORK_H_ -#define _PURPLE_NETWORK_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Network API */ -/**************************************************************************/ -/*@{*/ - -typedef struct _PurpleNetworkListenData PurpleNetworkListenData; - -typedef void (*PurpleNetworkListenCallback) (int listenfd, gpointer data); - -/** - * Converts a dot-decimal IP address to an array of unsigned - * chars. For example, converts 192.168.0.1 to a 4 byte - * array containing 192, 168, 0 and 1. - * - * @param ip An IP address in dot-decimal notiation. - * @return An array of 4 bytes containing an IP addresses - * equivalent to the given parameter, or NULL if - * the given IP address is invalid. This value - * is statically allocated and should not be - * freed. - */ -const unsigned char *purple_network_ip_atoi(const char *ip); - -/** - * Sets the IP address of the local system in preferences. This - * is the IP address that should be used for incoming connections - * (file transfer, direct IM, etc.) and should therefore be - * publicly accessible. - * - * @param ip The local IP address. - */ -void purple_network_set_public_ip(const char *ip); - -/** - * Returns the IP address of the local system set in preferences. - * - * This returns the value set via purple_network_set_public_ip(). - * You probably want to use purple_network_get_my_ip() instead. - * - * @return The local IP address set in preferences. - */ -const char *purple_network_get_public_ip(void); - -/** - * Returns the IP address of the local system. - * - * You probably want to use purple_network_get_my_ip() instead. - * - * @note The returned string is a pointer to a static buffer. If this - * function is called twice, it may be important to make a copy - * of the returned string. - * - * @param fd The fd to use to help figure out the IP, or else -1. - * @return The local IP address. - */ -const char *purple_network_get_local_system_ip(int fd); - -/** - * Returns all IP addresses of the local system. - * - * @note The caller must free this list. If libpurple was built with - * support for it, this function also enumerates IPv6 addresses. - * @since 2.7.0 - * - * @return A list of local IP addresses. - */ -GList *purple_network_get_all_local_system_ips(void); - -/** - * Returns the IP address that should be used anywhere a - * public IP addresses is needed (listening for an incoming - * file transfer, etc). - * - * If the user has manually specified an IP address via - * preferences, then this IP is returned. Otherwise the - * IP address returned by purple_network_get_local_system_ip() - * is returned. - * - * @note The returned string is a pointer to a static buffer. If this - * function is called twice, it may be important to make a copy - * of the returned string. - * - * @param fd The fd to use to help figure out the IP, or -1. - * @return The local IP address to be used. - */ -const char *purple_network_get_my_ip(int fd); - -/** - * Should calls to purple_network_listen() and purple_network_listen_range() - * map the port externally using NAT-PMP or UPnP? - * The default value is TRUE - * - * @param map_external Should the open port be mapped externally? - * @deprecated In 3.0.0 a boolean will be added to the functions mentioned - * above to perform the same function. - * @since 2.3.0 - */ -void purple_network_listen_map_external(gboolean map_external); - -/** - * Attempts to open a listening port ONLY on the specified port number. - * You probably want to use purple_network_listen_range() instead of this. - * This function is useful, for example, if you wanted to write a telnet - * server as a Purple plugin, and you HAD to listen on port 23. Why anyone - * would want to do that is beyond me. - * - * This opens a listening port. The caller will want to set up a watcher - * of type PURPLE_INPUT_READ on the fd returned in cb. It will probably call - * accept in the watcher callback, and then possibly remove the watcher and - * close the listening socket, and add a new watcher on the new socket accept - * returned. - * - * @param port The port number to bind to. Must be greater than 0. - * @param socket_type The type of socket to open for listening. - * This will be either SOCK_STREAM for TCP or SOCK_DGRAM for UDP. - * @param cb The callback to be invoked when the port to listen on is available. - * The file descriptor of the listening socket will be specified in - * this callback, or -1 if no socket could be established. - * @param cb_data extra data to be returned when cb is called - * - * @return A pointer to a data structure that can be used to cancel - * the pending listener, or NULL if unable to obtain a local - * socket to listen on. - */ -PurpleNetworkListenData *purple_network_listen(unsigned short port, - int socket_type, PurpleNetworkListenCallback cb, gpointer cb_data); - -/** - * \copydoc purple_network_listen - * - * Libpurple does not currently do any port mapping (stateful firewall hole - * poking) for IPv6-only listeners (if an IPv6 socket supports v4-mapped - * addresses, a mapping is done). - * - * @param socket_family The protocol family of the socket. This should be - * AF_INET for IPv4 or AF_INET6 for IPv6. IPv6 sockets - * may or may not be able to accept IPv4 connections - * based on the system configuration (use - * purple_socket_speaks_ipv4 to check). If an IPv6 - * socket doesn't accept V4-mapped addresses, you will - * need a second listener to support both v4 and v6. - * @since 2.7.0 - * @deprecated This function will be renamed to purple_network_listen in 3.0.0. - */ -PurpleNetworkListenData *purple_network_listen_family(unsigned short port, - int socket_family, int socket_type, PurpleNetworkListenCallback cb, - gpointer cb_data); - -/** - * Opens a listening port selected from a range of ports. The range of - * ports used is chosen in the following manner: - * If a range is specified in preferences, these values are used. - * If a non-0 values are passed to the function as parameters, these - * values are used. - * Otherwise a port is chosen at random by the operating system. - * - * This opens a listening port. The caller will want to set up a watcher - * of type PURPLE_INPUT_READ on the fd returned in cb. It will probably call - * accept in the watcher callback, and then possibly remove the watcher and close - * the listening socket, and add a new watcher on the new socket accept - * returned. - * - * @param start The port number to bind to, or 0 to pick a random port. - * Users are allowed to override this arg in prefs. - * @param end The highest possible port in the range of ports to listen on, - * or 0 to pick a random port. Users are allowed to override this - * arg in prefs. - * @param socket_type The type of socket to open for listening. - * This will be either SOCK_STREAM for TCP or SOCK_DGRAM for UDP. - * @param cb The callback to be invoked when the port to listen on is available. - * The file descriptor of the listening socket will be specified in - * this callback, or -1 if no socket could be established. - * @param cb_data extra data to be returned when cb is called - * - * @return A pointer to a data structure that can be used to cancel - * the pending listener, or NULL if unable to obtain a local - * socket to listen on. - */ -PurpleNetworkListenData *purple_network_listen_range(unsigned short start, - unsigned short end, int socket_type, - PurpleNetworkListenCallback cb, gpointer cb_data); - -/** - * \copydoc purple_network_listen_range - * - * Libpurple does not currently do any port mapping (stateful firewall hole - * poking) for IPv6-only listeners (if an IPv6 socket supports v4-mapped - * addresses, a mapping is done). - * - * @param socket_family The protocol family of the socket. This should be - * AF_INET for IPv4 or AF_INET6 for IPv6. IPv6 sockets - * may or may not be able to accept IPv4 connections - * based on the system configuration (use - * purple_socket_speaks_ipv4 to check). If an IPv6 - * socket doesn't accept V4-mapped addresses, you will - * need a second listener to support both v4 and v6. - * @since 2.7.0 - * @deprecated This function will be renamed to purple_network_listen_range - * in 3.0.0. - */ -PurpleNetworkListenData *purple_network_listen_range_family( - unsigned short start, unsigned short end, int socket_family, - int socket_type, PurpleNetworkListenCallback cb, gpointer cb_data); - -/** - * This can be used to cancel any in-progress listener connection - * by passing in the return value from either purple_network_listen() - * or purple_network_listen_range(). - * - * @param listen_data This listener attempt will be cancelled and - * the struct will be freed. - */ -void purple_network_listen_cancel(PurpleNetworkListenData *listen_data); - -/** - * Gets a port number from a file descriptor. - * - * @param fd The file descriptor. This should be a tcp socket. The current - * implementation probably dies on anything but IPv4. Perhaps this - * possible bug will inspire new and valuable contributors to Purple. - * @return The port number, in host byte order. - */ -unsigned short purple_network_get_port_from_fd(int fd); - -/** - * Detects if there is an available network connection. - * - * @return TRUE if the network is available - */ -gboolean purple_network_is_available(void); - -/** - * Makes purple_network_is_available() always return @c TRUE. - * - * This is what backs the --force-online command line argument in Pidgin, - * for example. This is useful for offline testing, especially when - * combined with nullprpl. - * - * @since 2.6.0 - */ -void purple_network_force_online(void); - -/** - * Get the handle for the network system - * - * @return the handle to the network system - */ -void *purple_network_get_handle(void); - -/** - * Update the STUN server IP given the host name - * Will result in a DNS query being executed asynchronous - * - * @param stun_server The host name of the STUN server to set - * @since 2.6.0 - */ -void purple_network_set_stun_server(const gchar *stun_server); - -/** - * Get the IP address of the STUN server as a string representation - * - * @return the IP address - * @since 2.6.0 - */ -const gchar *purple_network_get_stun_ip(void); - -/** - * Update the TURN server IP given the host name - * Will result in a DNS query being executed asynchronous - * - * @param turn_server The host name of the TURN server to set - * @since 2.6.0 - */ -void purple_network_set_turn_server(const gchar *turn_server); - -/** - * Get the IP address of the TURN server as a string representation - * - * @return the IP address - * @since 2.6.0 - */ -const gchar *purple_network_get_turn_ip(void); - -/** - * Remove a port mapping (UPnP or NAT-PMP) associated with listening socket - * - * @param fd Socket to remove the port mapping for - * @since 2.6.0 - */ -void purple_network_remove_port_mapping(gint fd); - -/** - * Convert a UTF-8 domain name to ASCII in accordance with the IDNA - * specification. If libpurple is compiled without IDN support, this function - * copies the input into the output buffer. - * - * Because this function is used by DNS resolver child/threads, it uses no - * other libpurple API and is threadsafe. - * - * In general, a buffer of about 512 bytes is the appropriate size to use. - * - * @param in The hostname to be converted. - * @param out The output buffer where an allocated string will be returned. - * The caller is responsible for freeing this. - * @returns 0 on success, -1 if the out is NULL, or an error code - * that currently corresponds to the Idna_rc enum in libidn. - * @since 2.6.0 - */ -int purple_network_convert_idn_to_ascii(const gchar *in, gchar **out); - -/** - * Initializes the network subsystem. - */ -void purple_network_init(void); - -/** - * Shuts down the network subsystem. - */ -void purple_network_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_NETWORK_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nexus.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nexus.h deleted file mode 100644 index d824b8f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/nexus.h +++ /dev/null @@ -1,219 +0,0 @@ -/** - * @file nexus.h MSN Nexus functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_NEXUS_H -#define MSN_NEXUS_H - -#include "internal.h" - -typedef struct _MsnNexus MsnNexus; -typedef struct _MsnTicketToken MsnTicketToken; - -/* Index into ticket_tokens in nexus.c Keep updated! */ -typedef enum -{ - MSN_AUTH_MESSENGER = 0, - MSN_AUTH_MESSENGER_WEB = 1, - MSN_AUTH_CONTACTS = 2, - MSN_AUTH_LIVE_SECURE = 3, - MSN_AUTH_STORAGE = 4, - MSN_AUTH_WHATSNEW = 5 -} MsnAuthDomains; - -#define MSN_SSO_SERVER "login.live.com" -#define SSO_POST_URL "/RST.srf" - -#define MSN_SSO_RST_TEMPLATE \ -""\ - "http://schemas.xmlsoap.org/ws/2004/04/security/trust/Issue"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ -"" - -#define MSN_SSO_TEMPLATE ""\ -""\ - "
"\ - ""\ - "{7108E71A-9926-4FCB-BCC9-9A9D3F32E423}"\ - "4"\ - "1"\ - ""\ - "AQAAAAIAAABsYwQAAAAxMDMz"\ - ""\ - ""\ - ""\ - "%s"\ - "%s"\ - ""\ - ""\ - "
"\ - ""\ - ""\ - ""\ - "http://schemas.xmlsoap.org/ws/2004/04/security/trust/Issue"\ - ""\ - ""\ - "http://Passport.NET/tb"\ - ""\ - ""\ - ""\ - "%s" /* Other RSTn tokens */\ - ""\ - ""\ -"
" - -#define MSN_SSO_AUTHINFO_TEMPLATE \ -""\ - "{7108E71A-9926-4FCB-BCC9-9A9D3F32E423}"\ - "4"\ - "1"\ - ""\ - "AQAAAAIAAABsYwQAAAA0MTA1"\ -"" -/* Not sure what's editable here, so I'll just hard-code the SHA1 hash */ -#define MSN_SSO_AUTHINFO_SHA1_BASE64 "d2IeTF4DAkPEa/tVETHznsivEpc=" - -#define MSN_SSO_TIMESTAMP_TEMPLATE \ -""\ - "%s"\ - "%s"\ -"" - -#define MSN_SSO_SIGNEDINFO_TEMPLATE \ -""\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "" MSN_SSO_AUTHINFO_SHA1_BASE64 ""\ - ""\ -"" - -#define MSN_SSO_TOKEN_UPDATE_TEMPLATE ""\ -""\ - "
"\ - MSN_SSO_AUTHINFO_TEMPLATE /* ps:AuthInfo */ \ - ""\ - ""\ - ""\ - ""\ - "http://Passport.NET/STS"\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - "%s" /* wsu:Timestamp */\ - ""\ - "%s" /* SignedInfo */\ - "%s"\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "
"\ - ""\ - "%s" /* wst:RequestSecurityToken */ \ - ""\ -"" - -struct _MsnTicketToken { - GHashTable *token; - char *secret; - time_t expiry; - GSList *updates; -}; - -struct _MsnNexus -{ - MsnSession *session; - - /* From server via USR command */ - char *policy; - char *nonce; - - /* From server via SOAP stuff */ - char *cipher; - char *secret; - MsnTicketToken *tokens; - int token_len; -}; - -void msn_nexus_connect(MsnNexus *nexus); -MsnNexus *msn_nexus_new(MsnSession *session); -void msn_nexus_destroy(MsnNexus *nexus); -GHashTable *msn_nexus_get_token(MsnNexus *nexus, MsnAuthDomains id); -const char *msn_nexus_get_token_str(MsnNexus *nexus, MsnAuthDomains id); -void msn_nexus_update_token(MsnNexus *nexus, int id, GSourceFunc cb, gpointer data); - -#endif /* MSN_NEXUS_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notification.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notification.h deleted file mode 100644 index 4e9798d..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notification.h +++ /dev/null @@ -1,124 +0,0 @@ -/** - * @file notification.h Notification server functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_NOTIFICATION_H -#define MSN_NOTIFICATION_H - -typedef struct _MsnNotification MsnNotification; - -/* MSN protocol challenge info */ - -/* MSNP18 challenge: WLM Version 2009 (Build 14.0.8089.726) */ -#define MSNP18_WLM_PRODUCT_KEY "C1BX{V4W}Q3*10SM" -#define MSNP18_WLM_PRODUCT_ID "PROD0120PW!CCV9@" - -/* MSNP15 challenge: WLM 8.5.1288.816 */ -#define MSNP15_WLM_PRODUCT_KEY "ILTXC!4IXB5FB*PX" -#define MSNP15_WLM_PRODUCT_ID "PROD0119GSJUC$18" - -/* MSNP13 challenge */ -#define MSNP13_WLM_PRODUCT_KEY "O4BG@C7BWLYQX?5G" -#define MSNP13_WLM_PRODUCT_ID "PROD01065C%ZFN6F" - -#define MSNP10_PRODUCT_KEY "VT6PX?UQTM4WM%YR" -#define MSNP10_PRODUCT_ID "PROD0038W!61ZTF9" - -#include "cmdproc.h" -#include "msg.h" -#include "session.h" -#include "servconn.h" -#include "state.h" -#include "user.h" -#include "userlist.h" - -struct _MsnNotification -{ - MsnSession *session; - - /** - * This is a convenience pointer that always points to - * servconn->cmdproc - */ - MsnCmdProc *cmdproc; - MsnServConn *servconn; - - gboolean in_use; -}; - -typedef void (*MsnFqyCb)(MsnSession *session, const char *passport, MsnNetwork network, gpointer data); - -/* Type used for msn_notification_send_uun */ -typedef enum { - MSN_UNIFIED_NOTIFICATION_SHARED_FOLDERS = 1, - MSN_UNIFIED_NOTIFICATION_UNKNOWN1 = 2, - MSN_UNIFIED_NOTIFICATION_P2P = 3, - MSN_UNIFIED_NOTIFICATION_MPOP = 4 - -} MsnUnifiedNotificationType; - -void msn_notification_end(void); -void msn_notification_init(void); - -void msn_notification_add_buddy_to_list(MsnNotification *notification, - MsnListId list_id, MsnUser *user); -void msn_notification_rem_buddy_from_list(MsnNotification *notification, - MsnListId list_id, MsnUser *user); - -void msn_notification_send_fqy(MsnSession *session, - const char *payload, int payload_len, - MsnFqyCb cb, gpointer cb_data); - -MsnNotification *msn_notification_new(MsnSession *session); -void msn_notification_destroy(MsnNotification *notification); -gboolean msn_notification_connect(MsnNotification *notification, - const char *host, int port); -void msn_notification_disconnect(MsnNotification *notification); -void msn_notification_dump_contact(MsnSession *session); - -void msn_notification_send_uum(MsnSession *session, MsnMessage *msg); - -void msn_notification_send_uux(MsnSession *session, const char *payload); - -void msn_notification_send_uux_endpointdata(MsnSession *session); - -void msn_notification_send_uux_private_endpointdata(MsnSession *session); - -void msn_notification_send_uun(MsnSession *session, - const char *user, - MsnUnifiedNotificationType type, - const char *payload); - -void msn_notification_send_circle_auth(MsnSession *session, const char *ticket); - -/** - * Closes a notification. - * - * It's first closed, and then disconnected. - * - * @param notification The notification object to close. - */ -void msn_notification_close(MsnNotification *notification); - -void msn_got_login_params(MsnSession *session, const char *ticket, const char *response); - -#endif /* MSN_NOTIFICATION_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notify.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notify.h deleted file mode 100644 index dc410b6..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/notify.h +++ /dev/null @@ -1,814 +0,0 @@ -/** - * @file notify.h Notification API - * @ingroup core - * @see @ref notify-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_NOTIFY_H_ -#define _PURPLE_NOTIFY_H_ - -#include -#include -#include - -typedef struct _PurpleNotifyUserInfoEntry PurpleNotifyUserInfoEntry; -typedef struct _PurpleNotifyUserInfo PurpleNotifyUserInfo; - -#include "connection.h" - -/** - * Notification close callbacks. - */ -typedef void (*PurpleNotifyCloseCallback) (gpointer user_data); - - -/** - * Notification types. - */ -typedef enum -{ - PURPLE_NOTIFY_MESSAGE = 0, /**< Message notification. */ - PURPLE_NOTIFY_EMAIL, /**< Single email notification. */ - PURPLE_NOTIFY_EMAILS, /**< Multiple email notification. */ - PURPLE_NOTIFY_FORMATTED, /**< Formatted text. */ - PURPLE_NOTIFY_SEARCHRESULTS, /**< Buddy search results. */ - PURPLE_NOTIFY_USERINFO, /**< Formatted userinfo text. */ - PURPLE_NOTIFY_URI /**< URI notification or display. */ - -} PurpleNotifyType; - - -/** - * Notification message types. - */ -typedef enum -{ - PURPLE_NOTIFY_MSG_ERROR = 0, /**< Error notification. */ - PURPLE_NOTIFY_MSG_WARNING, /**< Warning notification. */ - PURPLE_NOTIFY_MSG_INFO /**< Information notification. */ - -} PurpleNotifyMsgType; - - -/** - * The types of buttons - */ -typedef enum -{ - PURPLE_NOTIFY_BUTTON_LABELED = 0, /**< special use, see _button_add_labeled */ - PURPLE_NOTIFY_BUTTON_CONTINUE = 1, - PURPLE_NOTIFY_BUTTON_ADD, - PURPLE_NOTIFY_BUTTON_INFO, - PURPLE_NOTIFY_BUTTON_IM, - PURPLE_NOTIFY_BUTTON_JOIN, - PURPLE_NOTIFY_BUTTON_INVITE -} PurpleNotifySearchButtonType; - - -/** - * Search results object. - */ -typedef struct -{ - GList *columns; /**< List of the search column objects. */ - GList *rows; /**< List of rows in the result. */ - GList *buttons; /**< List of buttons to display. */ - -} PurpleNotifySearchResults; - -/** - * Types of PurpleNotifyUserInfoEntry objects - */ -typedef enum -{ - PURPLE_NOTIFY_USER_INFO_ENTRY_PAIR = 0, - PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_BREAK, - PURPLE_NOTIFY_USER_INFO_ENTRY_SECTION_HEADER -} PurpleNotifyUserInfoEntryType; - -/** - * Single column of a search result. - */ -typedef struct -{ - char *title; /**< Title of the column. */ - -} PurpleNotifySearchColumn; - - -/** - * Callback for a button in a search result. - * - * @param c the PurpleConnection passed to purple_notify_searchresults - * @param row the contents of the selected row - * @param user_data User defined data. - */ -typedef void (*PurpleNotifySearchResultsCallback)(PurpleConnection *c, GList *row, - gpointer user_data); - - -/** - * Definition of a button. - */ -typedef struct -{ - PurpleNotifySearchButtonType type; - PurpleNotifySearchResultsCallback callback; /**< Function to be called when clicked. */ - char *label; /**< only for PURPLE_NOTIFY_BUTTON_LABELED */ -} PurpleNotifySearchButton; - - -/** - * Notification UI operations. - */ -typedef struct -{ - void *(*notify_message)(PurpleNotifyMsgType type, const char *title, - const char *primary, const char *secondary); - - void *(*notify_email)(PurpleConnection *gc, - const char *subject, const char *from, - const char *to, const char *url); - - void *(*notify_emails)(PurpleConnection *gc, - size_t count, gboolean detailed, - const char **subjects, const char **froms, - const char **tos, const char **urls); - - void *(*notify_formatted)(const char *title, const char *primary, - const char *secondary, const char *text); - - void *(*notify_searchresults)(PurpleConnection *gc, const char *title, - const char *primary, const char *secondary, - PurpleNotifySearchResults *results, gpointer user_data); - - void (*notify_searchresults_new_rows)(PurpleConnection *gc, - PurpleNotifySearchResults *results, - void *data); - - void *(*notify_userinfo)(PurpleConnection *gc, const char *who, - PurpleNotifyUserInfo *user_info); - - void *(*notify_uri)(const char *uri); - - void (*close_notify)(PurpleNotifyType type, void *ui_handle); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleNotifyUiOps; - - -#ifdef __cplusplus -extern "C" { -#endif - - -/**************************************************************************/ -/** Search results notification API */ -/**************************************************************************/ -/*@{*/ - -/** - * Displays results from a buddy search. This can be, for example, - * a window with a list of all found buddies, where you are given the - * option of adding buddies to your buddy list. - * - * @param gc The PurpleConnection handle associated with the information. - * @param title The title of the message. If this is NULL, the title - * will be "Search Results." - * @param primary The main point of the message. - * @param secondary The secondary information. - * @param results The PurpleNotifySearchResults instance. - * @param cb The callback to call when the user closes - * the notification. - * @param user_data The data to pass to the close callback and any other - * callback associated with a button. - * - * @return A UI-specific handle. - */ -void *purple_notify_searchresults(PurpleConnection *gc, const char *title, - const char *primary, const char *secondary, - PurpleNotifySearchResults *results, PurpleNotifyCloseCallback cb, - gpointer user_data); - -/** - * Frees a PurpleNotifySearchResults object. - * - * @param results The PurpleNotifySearchResults to free. - */ -void purple_notify_searchresults_free(PurpleNotifySearchResults *results); - -/** - * Replace old rows with the new. Reuse an existing window. - * - * @param gc The PurpleConnection structure. - * @param results The PurpleNotifySearchResults structure. - * @param data Data returned by the purple_notify_searchresults(). - */ -void purple_notify_searchresults_new_rows(PurpleConnection *gc, - PurpleNotifySearchResults *results, - void *data); - - -/** - * Adds a stock button that will be displayed in the search results dialog. - * - * @param results The search results object. - * @param type Type of the button. (TODO: Only one button of a given type - * can be displayed.) - * @param cb Function that will be called on the click event. - */ -void purple_notify_searchresults_button_add(PurpleNotifySearchResults *results, - PurpleNotifySearchButtonType type, - PurpleNotifySearchResultsCallback cb); - - -/** - * Adds a plain labelled button that will be displayed in the search results - * dialog. - * - * @param results The search results object - * @param label The label to display - * @param cb Function that will be called on the click event - */ -void purple_notify_searchresults_button_add_labeled(PurpleNotifySearchResults *results, - const char *label, - PurpleNotifySearchResultsCallback cb); - - -/** - * Returns a newly created search results object. - * - * @return The new search results object. - */ -PurpleNotifySearchResults *purple_notify_searchresults_new(void); - -/** - * Returns a newly created search result column object. - * - * @param title Title of the column. NOTE: Title will get g_strdup()ed. - * - * @return The new search column object. - */ -PurpleNotifySearchColumn *purple_notify_searchresults_column_new(const char *title); - -/** - * Adds a new column to the search result object. - * - * @param results The result object to which the column will be added. - * @param column The column that will be added to the result object. - */ -void purple_notify_searchresults_column_add(PurpleNotifySearchResults *results, - PurpleNotifySearchColumn *column); - -/** - * Adds a new row of the results to the search results object. - * - * @param results The search results object. - * @param row The row of the results. - */ -void purple_notify_searchresults_row_add(PurpleNotifySearchResults *results, - GList *row); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_NOTIFY_C_) -/** - * Returns a number of the rows in the search results object. - * - * @deprecated This function will be removed in Pidgin 3.0.0 unless - * there is sufficient demand to keep it. Using this - * function encourages looping through the results - * inefficiently. Instead of using this function you - * should iterate through the results using a loop - * similar to this: - * for (l = results->rows; l != NULL; l = l->next) - * If you really need to get the number of rows you - * can use g_list_length(results->rows). - * - * @param results The search results object. - * - * @return Number of the result rows. - */ -guint purple_notify_searchresults_get_rows_count(PurpleNotifySearchResults *results); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_NOTIFY_C_) -/** - * Returns a number of the columns in the search results object. - * - * @deprecated This function will be removed in Pidgin 3.0.0 unless - * there is sufficient demand to keep it. Using this - * function encourages looping through the columns - * inefficiently. Instead of using this function you - * should iterate through the columns using a loop - * similar to this: - * for (l = results->columns; l != NULL; l = l->next) - * If you really need to get the number of columns you - * can use g_list_length(results->columns). - * - * @param results The search results object. - * - * @return Number of the columns. - */ -guint purple_notify_searchresults_get_columns_count(PurpleNotifySearchResults *results); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_NOTIFY_C_) -/** - * Returns a row of the results from the search results object. - * - * @deprecated This function will be removed in Pidgin 3.0.0 unless - * there is sufficient demand to keep it. Using this - * function encourages looping through the results - * inefficiently. Instead of using this function you - * should iterate through the results using a loop - * similar to this: - * for (l = results->rows; l != NULL; l = l->next) - * If you really need to get the data for a particular - * row you can use g_list_nth_data(results->rows, row_id). - * - * @param results The search results object. - * @param row_id Index of the row to be returned. - * - * @return Row of the results. - */ -GList *purple_notify_searchresults_row_get(PurpleNotifySearchResults *results, - unsigned int row_id); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_NOTIFY_C_) -/** - * Returns a title of the search results object's column. - * - * @deprecated This function will be removed in Pidgin 3.0.0 unless - * there is sufficient demand to keep it. Using this - * function encourages looping through the columns - * inefficiently. Instead of using this function you - * should iterate through the name of a particular - * column you can use - * g_list_nth_data(results->columns, row_id). - * - * @param results The search results object. - * @param column_id Index of the column. - * - * @return Title of the column. - */ -char *purple_notify_searchresults_column_get_title(PurpleNotifySearchResults *results, - unsigned int column_id); -#endif - -/*@}*/ - -/**************************************************************************/ -/** @name Notification API */ -/**************************************************************************/ -/*@{*/ - -/** - * Displays a notification message to the user. - * - * @param handle The plugin or connection handle. - * @param type The notification type. - * @param title The title of the message. - * @param primary The main point of the message. - * @param secondary The secondary information. - * @param cb The callback to call when the user closes - * the notification. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_notify_message(void *handle, PurpleNotifyMsgType type, - const char *title, const char *primary, - const char *secondary, PurpleNotifyCloseCallback cb, - gpointer user_data); - -/** - * Displays a single email notification to the user. - * - * @param handle The plugin or connection handle. - * @param subject The subject of the email. - * @param from The from address. - * @param to The destination address. - * @param url The URL where the message can be read. - * @param cb The callback to call when the user closes - * the notification. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_notify_email(void *handle, const char *subject, - const char *from, const char *to, - const char *url, PurpleNotifyCloseCallback cb, - gpointer user_data); - -/** - * Displays a notification for multiple emails to the user. - * - * @param handle The plugin or connection handle. - * @param count The number of emails. '0' can be used to signify that - * the user has no unread emails and the UI should remove - * the mail notification. - * @param detailed @c TRUE if there is information for each email in the - * arrays. - * @param subjects The array of subjects. - * @param froms The array of from addresses. - * @param tos The array of destination addresses. - * @param urls The URLs where the messages can be read. - * @param cb The callback to call when the user closes - * the notification. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_notify_emails(void *handle, size_t count, gboolean detailed, - const char **subjects, const char **froms, - const char **tos, const char **urls, - PurpleNotifyCloseCallback cb, gpointer user_data); - -/** - * Displays a notification with formatted text. - * - * The text is essentially a stripped-down format of HTML, the same that - * IMs may send. - * - * @param handle The plugin or connection handle. - * @param title The title of the message. - * @param primary The main point of the message. - * @param secondary The secondary information. - * @param text The formatted text. - * @param cb The callback to call when the user closes - * the notification. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_notify_formatted(void *handle, const char *title, - const char *primary, const char *secondary, - const char *text, PurpleNotifyCloseCallback cb, gpointer user_data); - -/** - * Displays user information with formatted text, passing information giving - * the connection and username from which the user information came. - * - * The text is essentially a stripped-down format of HTML, the same that - * IMs may send. - * - * @param gc The PurpleConnection handle associated with the information. - * @param who The username associated with the information. - * @param user_info The PurpleNotifyUserInfo which contains the information - * @param cb The callback to call when the user closes the notification. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_notify_userinfo(PurpleConnection *gc, const char *who, - PurpleNotifyUserInfo *user_info, PurpleNotifyCloseCallback cb, - gpointer user_data); - -/** - * Create a new PurpleNotifyUserInfo which is suitable for passing to - * purple_notify_userinfo() - * - * @return A new PurpleNotifyUserInfo, which the caller must destroy when done - */ -PurpleNotifyUserInfo *purple_notify_user_info_new(void); - -/** - * Destroy a PurpleNotifyUserInfo - * - * @param user_info The PurpleNotifyUserInfo - */ -void purple_notify_user_info_destroy(PurpleNotifyUserInfo *user_info); - -/** - * Retrieve the array of PurpleNotifyUserInfoEntry objects from a - * PurpleNotifyUserInfo - * - * This GList may be manipulated directly with normal GList functions such - * as g_list_insert(). Only PurpleNotifyUserInfoEntry are allowed in the - * list. If a PurpleNotifyUserInfoEntry item is added to the list, it - * should not be g_free()'d by the caller; PurpleNotifyUserInfo will g_free - * it when destroyed. - * - * To remove a PurpleNotifyUserInfoEntry, use - * purple_notify_user_info_remove_entry(). Do not use the GList directly. - * - * @param user_info The PurpleNotifyUserInfo - * - * @constreturn A GList of PurpleNotifyUserInfoEntry objects - */ -GList *purple_notify_user_info_get_entries(PurpleNotifyUserInfo *user_info); - -/** - * Create a textual representation of a PurpleNotifyUserInfo, separating - * entries with newline - * - * @param user_info The PurpleNotifyUserInfo - * @param newline The separation character - */ -char *purple_notify_user_info_get_text_with_newline(PurpleNotifyUserInfo *user_info, const char *newline); - -/** - * Add a label/value pair to a PurpleNotifyUserInfo object. - * PurpleNotifyUserInfo keeps track of the order in which pairs are added. - * - * @param user_info The PurpleNotifyUserInfo - * @param label A label, which for example might be displayed by a - * UI with a colon after it ("Status:"). Do not include - * a colon. If NULL, value will be displayed without a - * label. - * @param value The value, which might be displayed by a UI after - * the label. This should be valid HTML. If you want - * to insert plaintext then use - * purple_notify_user_info_add_pair_plaintext(), instead. - * If this is NULL the label will still be displayed; - * the UI should treat label as independent and not - * include a colon if it would otherwise. - */ -/* - * TODO: In 3.0.0 this function should be renamed to - * purple_notify_user_info_add_pair_html(). And optionally - * purple_notify_user_info_add_pair_plaintext() could be renamed to - * purple_notify_user_info_add_pair(). - */ -void purple_notify_user_info_add_pair(PurpleNotifyUserInfo *user_info, const char *label, const char *value); - -/** - * Like purple_notify_user_info_add_pair, but value should be plaintext - * and will be escaped using g_markup_escape_text(). - */ -void purple_notify_user_info_add_pair_plaintext(PurpleNotifyUserInfo *user_info, const char *label, const char *value); - -/** - * Prepend a label/value pair to a PurpleNotifyUserInfo object - * - * @param user_info The PurpleNotifyUserInfo - * @param label A label, which for example might be displayed by a - * UI with a colon after it ("Status:"). Do not include - * a colon. If NULL, value will be displayed without a - * label. - * @param value The value, which might be displayed by a UI after - * the label. If NULL, label will still be displayed; - * the UI should then treat label as independent and not - * include a colon if it would otherwise. - */ -void purple_notify_user_info_prepend_pair(PurpleNotifyUserInfo *user_info, const char *label, const char *value); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_NOTIFY_C_) -/** - * Remove a PurpleNotifyUserInfoEntry from a PurpleNotifyUserInfo object - * without freeing the entry. - * - * @param user_info The PurpleNotifyUserInfo - * @param user_info_entry The PurpleNotifyUserInfoEntry - * - * @deprecated Nothing is using this function and it should be removed - * in 3.0.0. Or, if we decide we want to keep it in 3.0.0 - * then we should make purple_notify_user_info_entry_destroy - * public so that entries can be free'd after they're removed. - */ -void purple_notify_user_info_remove_entry(PurpleNotifyUserInfo *user_info, PurpleNotifyUserInfoEntry *user_info_entry); -#endif - -/** - * Create a new PurpleNotifyUserInfoEntry - * - * If added to a PurpleNotifyUserInfo object, this should not be free()'d, - * as PurpleNotifyUserInfo will do so when destroyed. - * purple_notify_user_info_add_pair() and - * purple_notify_user_info_prepend_pair() are convenience methods for - * creating entries and adding them to a PurpleNotifyUserInfo. - * - * @param label A label, which for example might be displayed by a UI - * with a colon after it ("Status:"). Do not include a - * colon. If NULL, value will be displayed without a label. - * @param value The value, which might be displayed by a UI after the - * label. If NULL, label will still be displayed; the UI - * should then treat label as independent and not include a - * colon if it would otherwise. - * - * @result A new PurpleNotifyUserInfoEntry - */ -PurpleNotifyUserInfoEntry *purple_notify_user_info_entry_new(const char *label, const char *value); - -/** - * Add a section break. A UI might display this as a horizontal line. - * - * @param user_info The PurpleNotifyUserInfo - */ -void purple_notify_user_info_add_section_break(PurpleNotifyUserInfo *user_info); - -/** - * Prepend a section break. A UI might display this as a horizontal line. - * - * @param user_info The PurpleNotifyUserInfo - * @since 2.5.0 - */ -void purple_notify_user_info_prepend_section_break(PurpleNotifyUserInfo *user_info); - -/** - * Add a section header. A UI might display this in a different font - * from other text. - * - * @param user_info The PurpleNotifyUserInfo - * @param label The name of the section - */ -void purple_notify_user_info_add_section_header(PurpleNotifyUserInfo *user_info, const char *label); - -/** - * Prepend a section header. A UI might display this in a different font - * from other text. - * - * @param user_info The PurpleNotifyUserInfo - * @param label The name of the section - * @since 2.5.0 - */ -void purple_notify_user_info_prepend_section_header(PurpleNotifyUserInfo *user_info, const char *label); - -/** - * Remove the last item which was added to a PurpleNotifyUserInfo. This - * could be used to remove a section header which is not needed. - */ -void purple_notify_user_info_remove_last_item(PurpleNotifyUserInfo *user_info); - -/** - * Get the label for a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * - * @return The label - */ -const gchar *purple_notify_user_info_entry_get_label(PurpleNotifyUserInfoEntry *user_info_entry); - -/** - * Set the label for a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * @param label The label - */ -void purple_notify_user_info_entry_set_label(PurpleNotifyUserInfoEntry *user_info_entry, const char *label); - -/** - * Get the value for a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * - * @result The value - */ -const gchar *purple_notify_user_info_entry_get_value(PurpleNotifyUserInfoEntry *user_info_entry); - -/** - * Set the value for a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * @param value The value - */ -void purple_notify_user_info_entry_set_value(PurpleNotifyUserInfoEntry *user_info_entry, const char *value); - - -/** - * Get the type of a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * - * @return The PurpleNotifyUserInfoEntryType - */ -PurpleNotifyUserInfoEntryType purple_notify_user_info_entry_get_type(PurpleNotifyUserInfoEntry *user_info_entry); - -/** - * Set the type of a PurpleNotifyUserInfoEntry - * - * @param user_info_entry The PurpleNotifyUserInfoEntry - * @param type The PurpleNotifyUserInfoEntryType - */ -void purple_notify_user_info_entry_set_type(PurpleNotifyUserInfoEntry *user_info_entry, - PurpleNotifyUserInfoEntryType type); - -/** - * Opens a URI or somehow presents it to the user. - * - * @param handle The plugin or connection handle. - * @param uri The URI to display or go to. - * - * @return A UI-specific handle, if any. This may only be presented if - * the UI code displays a dialog instead of a webpage, or something - * similar. - */ -void *purple_notify_uri(void *handle, const char *uri); - -/** - * Closes a notification. - * - * This should be used only by the UI operation functions and part of the - * core. - * - * @param type The notification type. - * @param ui_handle The notification UI handle. - */ -void purple_notify_close(PurpleNotifyType type, void *ui_handle); - -/** - * Closes all notifications registered with the specified handle. - * - * @param handle The handle. - */ -void purple_notify_close_with_handle(void *handle); - -/** - * A wrapper for purple_notify_message that displays an information message. - */ -#define purple_notify_info(handle, title, primary, secondary) \ - purple_notify_message((handle), PURPLE_NOTIFY_MSG_INFO, (title), \ - (primary), (secondary), NULL, NULL) - -/** - * A wrapper for purple_notify_message that displays a warning message. - */ -#define purple_notify_warning(handle, title, primary, secondary) \ - purple_notify_message((handle), PURPLE_NOTIFY_MSG_WARNING, (title), \ - (primary), (secondary), NULL, NULL) - -/** - * A wrapper for purple_notify_message that displays an error message. - */ -#define purple_notify_error(handle, title, primary, secondary) \ - purple_notify_message((handle), PURPLE_NOTIFY_MSG_ERROR, (title), \ - (primary), (secondary), NULL, NULL) - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used when displaying a - * notification. - * - * @param ops The UI operations structure. - */ -void purple_notify_set_ui_ops(PurpleNotifyUiOps *ops); - -/** - * Returns the UI operations structure to be used when displaying a - * notification. - * - * @return The UI operations structure. - */ -PurpleNotifyUiOps *purple_notify_get_ui_ops(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Notify Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the notify subsystem handle. - * - * @return The notify subsystem handle. - */ -void *purple_notify_get_handle(void); - -/** - * Initializes the notify subsystem. - */ -void purple_notify_init(void); - -/** - * Uninitializes the notify subsystem. - */ -void purple_notify_uninit(void); - -/*@}*/ - - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_NOTIFY_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ntlm.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ntlm.h deleted file mode 100644 index e61a4f5..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ntlm.h +++ /dev/null @@ -1,73 +0,0 @@ -/** - * @file ntlm.h - */ - -/* purple - * - * Copyright (C) 2005, Thomas Butter - * - * ntlm structs are taken from NTLM description on - * http://www.innovation.ch/java/ntlm.html - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_NTLM_H -#define _PURPLE_NTLM_H - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Generates the base64 encoded type 1 message needed for NTLM authentication - * - * @param hostname Your hostname - * @param domain The domain to authenticate to - * @return base64 encoded string to send to the server. This should - * be g_free'd by the caller. - */ -gchar *purple_ntlm_gen_type1(const gchar *hostname, const gchar *domain); - -/** - * Parses the ntlm type 2 message - * - * @param type2 String containing the base64 encoded type2 message - * @param flags If not @c NULL, this will store the flags for the message - * - * @return The nonce for use in message type3. This is a statically - * allocated 8 byte binary string. - */ -guint8 *purple_ntlm_parse_type2(const gchar *type2, guint32 *flags); - -/** - * Generates a type3 message - * - * @param username The username - * @param passw The password - * @param hostname The hostname - * @param domain The domain to authenticate against - * @param nonce The nonce returned by purple_ntlm_parse_type2 - * @param flags Pointer to the flags returned by purple_ntlm_parse_type2 - * @return A base64 encoded type3 message. This should be g_free'd by - * the caller. - */ -gchar *purple_ntlm_gen_type3(const gchar *username, const gchar *passw, const gchar *hostname, const gchar *domain, const guint8 *nonce, guint32 *flags); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_NTLM_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/object.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/object.h deleted file mode 100644 index 81572dc..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/object.h +++ /dev/null @@ -1,276 +0,0 @@ -/** - * @file object.h MSNObject API - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_OBJECT_H -#define MSN_OBJECT_H - -typedef enum -{ - MSN_OBJECT_UNKNOWN = -1, /**< Unknown object */ - MSN_OBJECT_RESERVED1 = 1, /**< Reserved */ - MSN_OBJECT_EMOTICON = 2, /**< Custom Emoticon */ - MSN_OBJECT_USERTILE = 3, /**< UserTile (buddy icon) */ - MSN_OBJECT_RESERVED2 = 4, /**< Reserved */ - MSN_OBJECT_BACKGROUND = 5 /**< Background */ -} MsnObjectType; - -#include "internal.h" - -#include "imgstore.h" - -typedef struct -{ - gboolean local; - - char *creator; - int size; - MsnObjectType type; - PurpleStoredImage *img; - char *location; - char *friendly; - char *sha1d; - char *sha1c; - char *url; - char *url1; -} MsnObject; - -/** - * Creates a MsnObject structure. - * - * @return A new MsnObject structure. - */ -MsnObject *msn_object_new(void); - -/** - * Creates a MsnObject structure from a string. - * - * @param str The string. - * - * @return The new MsnObject structure. - */ -MsnObject *msn_object_new_from_string(const char *str); - -/** - * Creates a MsnObject structure from a stored image - * - * @param img The image associated to object - * @param location The object location as stored in MsnObject - * @param creator The creator of the object - * @param type The type of the object - * - * @return A new MsnObject structure - */ -MsnObject *msn_object_new_from_image(PurpleStoredImage *img, - const char *location, const char *creator, MsnObjectType type); - -/** - * Destroys an MsnObject structure. - * - * @param obj The object structure. - */ -void msn_object_destroy(MsnObject *obj); - -/** - * Outputs a string representation of an MsnObject. - * - * @param obj The object. - * - * @return The string representation. This must be freed. - */ -char *msn_object_to_string(const MsnObject *obj); - -/** - * Sets the creator field in a MsnObject. - * - * @param creator The creator value. - */ -void msn_object_set_creator(MsnObject *obj, const char *creator); - -/** - * Sets the size field in a MsnObject. - * - * @param size The size value. - */ -void msn_object_set_size(MsnObject *obj, int size); - -/** - * Sets the type field in a MsnObject. - * - * @param type The type value. - */ -void msn_object_set_type(MsnObject *obj, MsnObjectType type); - -/** - * Sets the location field in a MsnObject. - * - * @param location The location value. - */ -void msn_object_set_location(MsnObject *obj, const char *location); - -/** - * Sets the friendly name field in a MsnObject. - * - * @param friendly The friendly name value. - */ -void msn_object_set_friendly(MsnObject *obj, const char *friendly); - -/** - * Sets the SHA1D field in a MsnObject. - * - * @param sha1d The sha1d value. - */ -void msn_object_set_sha1d(MsnObject *obj, const char *sha1d); - -/** - * Sets the SHA1C field in a MsnObject. - * - * @param sha1c The sha1c value. - */ -void msn_object_set_sha1c(MsnObject *obj, const char *sha1c); - -/** - * Associates an image with a MsnObject. - * - * @param obj The object. - * @param img The image to associate. - */ -void msn_object_set_image(MsnObject *obj, PurpleStoredImage *img); - -/** - * Sets the url field in a MsnObject. - * - * @param url The url value. - */ -void msn_object_set_url(MsnObject *obj, const char *url); - -/** - * Sets the url1 field in a MsnObject. - * - * @param url1 The url1 value. - */ -void msn_object_set_url1(MsnObject *obj, const char *url); - -/** - * Returns a MsnObject's creator value. - * - * @param obj The object. - * - * @return The creator value. - */ -const char *msn_object_get_creator(const MsnObject *obj); - -/** - * Returns a MsnObject's size value. - * - * @param obj The object. - * - * @return The size value. - */ -int msn_object_get_size(const MsnObject *obj); - -/** - * Returns a MsnObject's type. - * - * @param obj The object. - * - * @return The object type. - */ -MsnObjectType msn_object_get_type(const MsnObject *obj); - -/** - * Returns a MsnObject's location value. - * - * @param obj The object. - * - * @return The location value. - */ -const char *msn_object_get_location(const MsnObject *obj); - -/** - * Returns a MsnObject's friendly name value. - * - * @param obj The object. - * - * @return The friendly name value. - */ -const char *msn_object_get_friendly(const MsnObject *obj); - -/** - * Returns a MsnObject's SHA1D value. - * - * @param obj The object. - * - * @return The SHA1D value. - */ -const char *msn_object_get_sha1d(const MsnObject *obj); - -/** - * Returns a MsnObject's SHA1C value. - * - * @param obj The object. - * - * @return The SHA1C value. - */ -const char *msn_object_get_sha1c(const MsnObject *obj); - -/** - * Returns a MsnObject's SHA1C value if it exists, otherwise SHA1D. - * - * @param obj The object. - * - * @return The SHA1C value. - */ -const char *msn_object_get_sha1(const MsnObject *obj); - -/** - * Returns the image associated with the MsnObject. - * - * @param obj The object. - * - * @return The associated image. - */ -PurpleStoredImage *msn_object_get_image(const MsnObject *obj); - -/** - * Returns a MsnObject's url value. - * - * @param obj The object. - * - * @return The url value. - */ -const char *msn_object_get_url(const MsnObject *obj); - -/** - * Returns a MsnObject's url1 value. - * - * @param obj The object. - * - * @return The url1 value. - */ -const char *msn_object_get_url1(const MsnObject *obj); - -MsnObject * msn_object_find_local(const char *sha1); - -void msn_object_set_local(MsnObject *obj); - -#endif /* MSN_OBJECT_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oim.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oim.h deleted file mode 100644 index 17751ea..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oim.h +++ /dev/null @@ -1,163 +0,0 @@ -/** - * @file oim.h Header file for oim.c - * Author - * MaYuan - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - */ -#ifndef MSN_OIM_H -#define MSN_OIM_H - -typedef struct _MsnOim MsnOim; - -/* OIM Retrieval Info */ -#define MSN_OIM_RETRIEVE_HOST "rsi.hotmail.com" -#define MSN_OIM_RETRIEVE_URL "/rsi/rsi.asmx" - -/* OIM GetMetadata SOAP Template */ -#define MSN_OIM_GET_METADATA_ACTION "http://www.hotmail.msn.com/ws/2004/09/oim/rsi/GetMetadata" - -#define MSN_OIM_GET_METADATA_TEMPLATE ""\ -""\ - ""\ - ""\ - "EMPTY"\ - "

EMPTY

"\ - "
"\ - "
"\ - ""\ - ""\ - ""\ -"" - -/*OIM GetMessage SOAP Template*/ -#define MSN_OIM_GET_SOAP_ACTION "http://www.hotmail.msn.com/ws/2004/09/oim/rsi/GetMessage" - -#define MSN_OIM_GET_TEMPLATE ""\ -""\ - ""\ - ""\ - "EMPTY"\ - "

EMPTY

"\ - "
"\ - "
"\ - ""\ - ""\ - "%s"\ - "false"\ - ""\ - ""\ -"" - -/*OIM DeleteMessages SOAP Template*/ -#define MSN_OIM_DEL_SOAP_ACTION "http://www.hotmail.msn.com/ws/2004/09/oim/rsi/DeleteMessages" - -#define MSN_OIM_DEL_TEMPLATE ""\ -""\ - ""\ - ""\ - "EMPTY"\ - "

EMPTY

"\ - "
"\ - "
"\ - ""\ - ""\ - ""\ - "%s"\ - ""\ - ""\ - ""\ -"" - -/*OIM Send SOAP Template*/ -#define MSN_OIM_MSG_TEMPLATE "MIME-Version: 1.0\n"\ - "Content-Type: text/plain; charset=UTF-8\n"\ - "Content-Transfer-Encoding: base64\n"\ - "X-OIM-Message-Type: OfflineMessage\n"\ - "X-OIM-Run-Id: {%s}\n"\ - "X-OIM-Sequence-Num: %d\n\n" - -#define MSN_OIM_SEND_HOST "ows.messenger.msn.com" -#define MSN_OIM_SEND_URL "/OimWS/oim.asmx" -#define MSN_OIM_SEND_SOAP_ACTION "http://messenger.live.com/ws/2006/09/oim/Store2" -#define MSN_OIM_SEND_TEMPLATE ""\ -""\ - ""\ - ""\ - ""\ - ""\ - ""\ - "http://messenger.msn.com"\ - "%d"\ - ""\ - ""\ - ""\ - "text"\ - "%s"\ - ""\ -"" - -struct _MsnOim -{ - MsnSession *session; - - GList * oim_list; - - char *challenge; - char *run_id; - gint send_seq; - GQueue *send_queue; -}; - -/**************************************************** - * function prototype - * **************************************************/ -MsnOim * msn_oim_new(MsnSession *session); -void msn_oim_destroy(MsnOim *oim); - -void msn_parse_oim_msg(MsnOim *oim,const char *xmlmsg); - -/*Send OIM Message*/ -void msn_oim_prep_send_msg_info(MsnOim *oim, const char *membername, - const char *friendname, const char *tomember, - const char * msg); - -void msn_oim_send_msg(MsnOim *oim); - -#endif/* MSN_OIM_H*/ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oscar.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oscar.h deleted file mode 100644 index fe01cec..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/oscar.h +++ /dev/null @@ -1,1350 +0,0 @@ -/* - * Purple's oscar protocol plugin - * This file is the legal property of its developers. - * Please see the AUTHORS file distributed alongside this file. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA -*/ - -/* - * Main libfaim header. Must be included in client for prototypes/macros. - * - * "come on, i turned a chick lesbian; i think this is the hackish equivalent" - * -- Josh Myer - * - */ - -#ifndef _OSCAR_H_ -#define _OSCAR_H_ - -#include "internal.h" -#include "circbuffer.h" -#include "debug.h" -#include "eventloop.h" -#include "proxy.h" -#include "sslconn.h" - -#include -#include -#include -#include -#include -#include -#include -#include - -#ifndef _WIN32 -#include -#include -#include -#include -#include -#else -#include "libc_interface.h" -#endif - -typedef struct _ByteStream ByteStream; -typedef struct _ClientInfo ClientInfo; -typedef struct _FlapConnection FlapConnection; -typedef struct _FlapFrame FlapFrame; -typedef struct _IcbmArgsCh2 IcbmArgsCh2; -typedef struct _IcbmCookie IcbmCookie; -typedef struct _OscarData OscarData; -typedef struct _QueuedSnac QueuedSnac; - -typedef guint32 aim_snacid_t; - -#include "snactypes.h" - -#ifdef __cplusplus -extern "C" { -#endif - -#define FAIM_SNAC_HASH_SIZE 16 - -/* - * Current Maximum Length for usernames (not including NULL) - * - * Currently only names up to 16 characters can be registered - * however it is apparently legal for them to be larger. - */ -#define MAXSNLEN 97 - -/* - * Current Maximum Length for Instant Messages - * - * This was found basically by experiment, but not wholly - * accurate experiment. It should not be regarded - * as completely correct. But its a decent approximation. - * - * Note that although we can send this much, its impossible - * for WinAIM clients (up through the latest (4.0.1957)) to - * send any more than 1kb. Amaze all your windows friends - * with utterly oversized instant messages! - */ -#define MAXMSGLEN 2544 - -/* - * Maximum size of a Buddy Icon. - */ -#define MAXICONLEN 7168 -#define AIM_ICONIDENT "AVT1picture.id" - -/* - * Found by trial and error. - */ -#define MAXAVAILMSGLEN 251 - -/** - * Maximum length for the password of an ICQ account - */ -#define MAXICQPASSLEN 8 - -#define AIM_MD5_STRING "AOL Instant Messenger (SM)" - -/* - * Client info. Filled in by the client and passed in to - * aim_send_login(). The information ends up getting passed to OSCAR - * through the initial login command. - * - */ -struct _ClientInfo -{ - const char *clientstring; - guint16 clientid; - guint16 major; - guint16 minor; - guint16 point; - guint16 build; - guint32 distrib; - const char *country; /* two-letter abbrev */ - const char *lang; /* two-letter abbrev */ -}; - -/* - * We need to use the major-minor-micro versions from the official - * AIM and ICQ programs here or AOL won't let us use certain features. - * - * 0x00000611 is the distid given to us by AOL for use as the default - * libpurple distid. - */ -#define CLIENTINFO_PURPLE_AIM { \ - NULL, \ - 0x0109, \ - 0x0005, 0x0001, \ - 0x0000, 0x0bdc, \ - 0x00000611, \ - "us", "en", \ -} - -#define CLIENTINFO_PURPLE_ICQ { \ - NULL, \ - 0x010a, \ - 0x0014, 0x0034, \ - 0x0000, 0x0c18, \ - 0x00000611, \ - "us", "en", \ -} - -typedef enum -{ - OSCAR_DISCONNECT_DONE, /* not considered an error */ - OSCAR_DISCONNECT_LOCAL_CLOSED, /* peer connections only, not considered an error */ - OSCAR_DISCONNECT_REMOTE_CLOSED, - OSCAR_DISCONNECT_REMOTE_REFUSED, /* peer connections only */ - OSCAR_DISCONNECT_LOST_CONNECTION, - OSCAR_DISCONNECT_INVALID_DATA, - OSCAR_DISCONNECT_COULD_NOT_CONNECT, - OSCAR_DISCONNECT_RETRYING /* peer connections only */ -} OscarDisconnectReason; - -#define OSCAR_CAPABILITY_BUDDYICON 0x0000000000000001LL -#define OSCAR_CAPABILITY_TALK 0x0000000000000002LL -#define OSCAR_CAPABILITY_DIRECTIM 0x0000000000000004LL -#define OSCAR_CAPABILITY_CHAT 0x0000000000000008LL -#define OSCAR_CAPABILITY_GETFILE 0x0000000000000010LL -#define OSCAR_CAPABILITY_SENDFILE 0x0000000000000020LL -#define OSCAR_CAPABILITY_GAMES 0x0000000000000040LL -#define OSCAR_CAPABILITY_ADDINS 0x0000000000000080LL -#define OSCAR_CAPABILITY_SENDBUDDYLIST 0x0000000000000100LL -#define OSCAR_CAPABILITY_GAMES2 0x0000000000000200LL -#define OSCAR_CAPABILITY_ICQ_DIRECT 0x0000000000000400LL -#define OSCAR_CAPABILITY_APINFO 0x0000000000000800LL -#define OSCAR_CAPABILITY_ICQRTF 0x0000000000001000LL -#define OSCAR_CAPABILITY_EMPTY 0x0000000000002000LL -#define OSCAR_CAPABILITY_ICQSERVERRELAY 0x0000000000004000LL -#define OSCAR_CAPABILITY_UNICODEOLD 0x0000000000008000LL -#define OSCAR_CAPABILITY_TRILLIANCRYPT 0x0000000000010000LL -#define OSCAR_CAPABILITY_UNICODE 0x0000000000020000LL -#define OSCAR_CAPABILITY_INTEROPERATE 0x0000000000040000LL -#define OSCAR_CAPABILITY_SHORTCAPS 0x0000000000080000LL -#define OSCAR_CAPABILITY_HIPTOP 0x0000000000100000LL -#define OSCAR_CAPABILITY_SECUREIM 0x0000000000200000LL -#define OSCAR_CAPABILITY_SMS 0x0000000000400000LL -#define OSCAR_CAPABILITY_VIDEO 0x0000000000800000LL -#define OSCAR_CAPABILITY_ICHATAV 0x0000000001000000LL -#define OSCAR_CAPABILITY_LIVEVIDEO 0x0000000002000000LL -#define OSCAR_CAPABILITY_CAMERA 0x0000000004000000LL -#define OSCAR_CAPABILITY_ICHAT_SCREENSHARE 0x0000000008000000LL -#define OSCAR_CAPABILITY_TYPING 0x0000000010000000LL -#define OSCAR_CAPABILITY_NEWCAPS 0x0000000020000000LL -#define OSCAR_CAPABILITY_XTRAZ 0x0000000040000000LL -#define OSCAR_CAPABILITY_GENERICUNKNOWN 0x0000000080000000LL -#define OSCAR_CAPABILITY_HTML_MSGS 0x0000000100000000LL -#define OSCAR_CAPABILITY_LAST 0x0000000200000000LL - -#define OSCAR_STATUS_ID_INVISIBLE "invisible" -#define OSCAR_STATUS_ID_OFFLINE "offline" -#define OSCAR_STATUS_ID_AVAILABLE "available" -#define OSCAR_STATUS_ID_AWAY "away" -#define OSCAR_STATUS_ID_DND "dnd" -#define OSCAR_STATUS_ID_NA "na" -#define OSCAR_STATUS_ID_OCCUPIED "occupied" -#define OSCAR_STATUS_ID_FREE4CHAT "free4chat" -#define OSCAR_STATUS_ID_CUSTOM "custom" -#define OSCAR_STATUS_ID_MOBILE "mobile" -#define OSCAR_STATUS_ID_EVIL "evil" -#define OSCAR_STATUS_ID_DEPRESSION "depression" -#define OSCAR_STATUS_ID_ATHOME "athome" -#define OSCAR_STATUS_ID_ATWORK "atwork" -#define OSCAR_STATUS_ID_LUNCH "lunch" - -/* - * Byte Stream type. Sort of. - * - * Use of this type serves a couple purposes: - * - Buffer/buflen pairs are passed all around everywhere. This turns - * that into one value, as well as abstracting it slightly. - * - Through the abstraction, it is possible to enable bounds checking - * for robustness at the cost of performance. But a clean failure on - * weird packets is much better than a segfault. - * - I like having variables named "bs". - * - * Don't touch the insides of this struct. Or I'll have to kill you. - * - */ -struct _ByteStream -{ - guint8 *data; - size_t len; - size_t offset; -}; - -struct _QueuedSnac -{ - guint16 family; - guint16 subtype; - FlapFrame *frame; -}; - -struct _FlapFrame -{ - guint8 channel; - guint16 seqnum; - ByteStream data; /* payload stream */ -}; - -struct _FlapConnection -{ - OscarData *od; /**< Pointer to parent session. */ - gboolean connected; - time_t lastactivity; /**< Time of last transmit. */ - guint destroy_timeout; - OscarDisconnectReason disconnect_reason; - gchar *error_message; - guint16 disconnect_code; - - /* A few variables that are only used when connecting */ - PurpleProxyConnectData *connect_data; - guint16 cookielen; - guint8 *cookie; - gpointer new_conn_data; - - int fd; - PurpleSslConnection *gsc; - guint8 header[6]; - gssize header_received; - FlapFrame buffer_incoming; - PurpleCircBuffer *buffer_outgoing; - guint watcher_incoming; - guint watcher_outgoing; - - guint16 type; - guint16 subtype; - guint16 seqnum_out; /**< The sequence number of most recently sent packet. */ - guint16 seqnum_in; /**< The sequence number of most recently received packet. */ - GSList *groups; - GSList *rateclasses; /* Contains nodes of struct rateclass. */ - struct rateclass *default_rateclass; - GHashTable *rateclass_members; /* Key is family and subtype, value is pointer to the rateclass struct to use. */ - - GQueue *queued_snacs; /**< Contains QueuedSnacs. */ - GQueue *queued_lowpriority_snacs; /**< Contains QueuedSnacs to send only once queued_snacs is empty */ - guint queued_timeout; - - void *internal; /* internal conn-specific libfaim data */ -}; - -struct _IcbmCookie -{ - guchar cookie[8]; - int type; - void *data; - time_t addtime; - struct _IcbmCookie *next; -}; - -#include "peer.h" - -/* - * AIM Session: The main client-data interface. - * - */ -struct _OscarData -{ - /** Only used when connecting with clientLogin */ - PurpleUtilFetchUrlData *url_data; - - gboolean iconconnecting; - gboolean set_icon; - - GSList *create_rooms; - - gboolean conf; - gboolean reqemail; - gboolean setemail; - char *email; - gboolean setnick; - char *newformatting; - gboolean chpass; - char *oldp; - char *newp; - - GSList *oscar_chats; - GHashTable *buddyinfo; - GSList *requesticon; - - gboolean use_ssl; - gboolean icq; - guint getblisttimer; - - struct { - guint maxwatchers; /* max users who can watch you */ - guint maxbuddies; /* max users you can watch */ - guint maxgroups; /* max groups in server list */ - guint maxpermits; /* max users on permit list */ - guint maxdenies; /* max users on deny list */ - guint maxsiglen; /* max size (bytes) of profile */ - guint maxawaymsglen; /* max size (bytes) of posted away message */ - } rights; - - PurpleConnection *gc; - - void *modlistv; - - /* - * Outstanding snac handling - * - * TODO: Should these be per-connection? -mid - */ - void *snac_hash[FAIM_SNAC_HASH_SIZE]; - aim_snacid_t snacid_next; - - /* - * TODO: Data specific to a certain family should go into a - * hashtable and the core parts of libfaim shouldn't - * need to know about them. - */ - - IcbmCookie *msgcookies; - GSList *icq_info; - - /** Only used when connecting with the old-style BUCP login. */ - struct aim_authresp_info *authinfo; - struct aim_emailinfo *emailinfo; - - struct { - struct aim_userinfo_s *userinfo; - } locate; - - struct { - gboolean have_rights; - } bos; - - /* Server-stored information (ssi) */ - struct { - gboolean received_data; - guint16 numitems; - struct aim_ssi_item *official; - struct aim_ssi_item *local; - struct aim_ssi_tmp *pending; - time_t timestamp; - gboolean waiting_for_ack; - gboolean in_transaction; - } ssi; - - /** Contains pointers to handler functions for each family/subtype. */ - GHashTable *handlerlist; - - /** A linked list containing FlapConnections. */ - GSList *oscar_connections; - guint16 default_port; - - /** A linked list containing PeerConnections. */ - GSList *peer_connections; -}; - -/* Valid for calling aim_icq_setstatus() and for aim_userinfo_t->icqinfo.status */ -#define AIM_ICQ_STATE_NORMAL 0x00000000 -#define AIM_ICQ_STATE_AWAY 0x00000001 -#define AIM_ICQ_STATE_DND 0x00000002 -#define AIM_ICQ_STATE_OUT 0x00000004 -#define AIM_ICQ_STATE_BUSY 0x00000010 -#define AIM_ICQ_STATE_CHAT 0x00000020 -#define AIM_ICQ_STATE_INVISIBLE 0x00000100 -#define AIM_ICQ_STATE_EVIL 0x00003000 -#define AIM_ICQ_STATE_DEPRESSION 0x00004000 -#define AIM_ICQ_STATE_ATHOME 0x00005000 -#define AIM_ICQ_STATE_ATWORK 0x00006000 -#define AIM_ICQ_STATE_LUNCH 0x00002001 -#define AIM_ICQ_STATE_EVIL 0x00003000 -#define AIM_ICQ_STATE_WEBAWARE 0x00010000 -#define AIM_ICQ_STATE_HIDEIP 0x00020000 -#define AIM_ICQ_STATE_BIRTHDAY 0x00080000 -#define AIM_ICQ_STATE_ICQHOMEPAGE 0x00200000 -#define AIM_ICQ_STATE_DIRECTREQUIREAUTH 0x10000000 - -/** - * Only used when connecting with the old-style BUCP login. - */ -struct aim_clientrelease -{ - char *name; - guint32 build; - char *url; - char *info; -}; - -/** - * Only used when connecting with the old-style BUCP login. - */ -struct aim_authresp_info -{ - char *bn; - guint16 errorcode; - char *errorurl; - guint16 regstatus; - char *email; - char *bosip; - guint16 cookielen; - guint8 *cookie; - char *chpassurl; - struct aim_clientrelease latestrelease; - struct aim_clientrelease latestbeta; -}; - -/* Callback data for redirect. */ -struct aim_redirect_data -{ - guint16 group; - const char *ip; - guint16 cookielen; - const guint8 *cookie; - const char *ssl_cert_cn; - guint8 use_ssl; - struct { /* group == SNAC_FAMILY_CHAT */ - guint16 exchange; - const char *room; - guint16 instance; - } chat; -}; - -int oscar_connect_to_bos(PurpleConnection *gc, OscarData *od, const char *host, guint16 port, guint8 *cookie, guint16 cookielen, const char *tls_certname); - -/* family_auth.c */ - -/** - * Only used when connecting with the old-style BUCP login. - */ -int aim_request_login(OscarData *od, FlapConnection *conn, const char *bn); - -/** - * Only used when connecting with the old-style BUCP login. - */ -int aim_send_login(OscarData *od, FlapConnection *conn, const char *bn, const char *password, gboolean truncate_pass, ClientInfo *ci, const char *key, gboolean allow_multiple_logins); - -/** - * Only used when connecting with the old-style BUCP login. - */ -/* 0x000b */ int aim_auth_securid_send(OscarData *od, const char *securid); - -/** - * Only used when connecting with clientLogin. - */ -void send_client_login(OscarData *od, const char *username); - -/* flap_connection.c */ -FlapConnection *flap_connection_new(OscarData *, int type); -void flap_connection_close(OscarData *od, FlapConnection *conn); -void flap_connection_destroy(FlapConnection *conn, OscarDisconnectReason reason, const gchar *error_message); -void flap_connection_schedule_destroy(FlapConnection *conn, OscarDisconnectReason reason, const gchar *error_message); -FlapConnection *flap_connection_findbygroup(OscarData *od, guint16 group); -FlapConnection *flap_connection_getbytype(OscarData *, int type); -FlapConnection *flap_connection_getbytype_all(OscarData *, int type); -void flap_connection_recv_cb(gpointer data, gint source, PurpleInputCondition cond); -void flap_connection_recv_cb_ssl(gpointer data, PurpleSslConnection *gsc, PurpleInputCondition cond); - -void flap_connection_send(FlapConnection *conn, FlapFrame *frame); -void flap_connection_send_version(OscarData *od, FlapConnection *conn); -void flap_connection_send_version_with_cookie(OscarData *od, FlapConnection *conn, guint16 length, const guint8 *chipsahoy); -void flap_connection_send_version_with_cookie_and_clientinfo(OscarData *od, FlapConnection *conn, guint16 length, const guint8 *chipsahoy, ClientInfo *ci, gboolean allow_multiple_login); -void flap_connection_send_snac(OscarData *od, FlapConnection *conn, guint16 family, const guint16 subtype, aim_snacid_t snacid, ByteStream *data); -void flap_connection_send_snac_with_priority(OscarData *od, FlapConnection *conn, guint16 family, const guint16 subtype, aim_snacid_t snacid, ByteStream *data, gboolean high_priority); -void flap_connection_send_keepalive(OscarData *od, FlapConnection *conn); -FlapFrame *flap_frame_new(OscarData *od, guint16 channel, int datalen); - -/* oscar_data.c */ -typedef int (*aim_rxcallback_t)(OscarData *od, FlapConnection *conn, FlapFrame *frame, ...); - -OscarData *oscar_data_new(void); -void oscar_data_destroy(OscarData *); -void oscar_data_addhandler(OscarData *od, guint16 family, guint16 subtype, aim_rxcallback_t newhandler, guint16 flags); -aim_rxcallback_t aim_callhandler(OscarData *od, guint16 family, guint16 subtype); - -/* 0x0001 - family_oservice.c */ -/* 0x0002 */ void aim_srv_clientready(OscarData *od, FlapConnection *conn); -/* 0x0004 */ void aim_srv_requestnew(OscarData *od, guint16 serviceid); -/* 0x0006 */ void aim_srv_reqrates(OscarData *od, FlapConnection *conn); -/* 0x0008 */ void aim_srv_rates_addparam(OscarData *od, FlapConnection *conn); -/* 0x000e */ void aim_srv_reqpersonalinfo(OscarData *od, FlapConnection *conn); -/* 0x0011 */ void aim_srv_setidle(OscarData *od, guint32 idletime); -/* 0x0017 */ void aim_srv_setversions(OscarData *od, FlapConnection *conn); -/* 0x001e */ int aim_srv_setextrainfo(OscarData *od, gboolean seticqstatus, guint32 icqstatus, gboolean setstatusmsg, const char *statusmsg, const char *itmsurl); -void aim_srv_set_dc_info(OscarData *od); - - -void aim_bos_reqrights(OscarData *od, FlapConnection *conn); - -#define AIM_RATE_CODE_LIMIT 0x0003 - -/* family_icbm.c */ -#define AIM_OFT_SUBTYPE_SEND_DIR 0x0002 - -#define AIM_TRANSFER_DENY_DECLINE 0x0001 - -#define AIM_IMPARAM_FLAG_CHANNEL_MSGS_ALLOWED 0x00000001 -#define AIM_IMPARAM_FLAG_MISSED_CALLS_ENABLED 0x00000002 -#define AIM_IMPARAM_FLAG_EVENTS_ALLOWED 0x00000008 -#define AIM_IMPARAM_FLAG_SMS_SUPPORTED 0x00000010 -#define AIM_IMPARAM_FLAG_OFFLINE_MSGS_ALLOWED 0x00000100 - -/** - * This flag tells the server that we always send HTML in messages - * sent from an ICQ account to an ICQ account. (If this flag is - * not sent then plaintext is sent ICQ<-->ICQ (HTML is sent in all - * other cases)). - * - * If we send an HTML message to an old client that doesn't support - * HTML messages, then the oscar servers will merrily strip the HTML - * for us. - * - * All incoming IMs are treated as HTML. - */ -#define AIM_IMPARAM_FLAG_USE_HTML_FOR_ICQ 0x00000400 - -struct aim_icbmparameters -{ - guint16 maxchan; - guint32 flags; /* AIM_IMPARAM_FLAG_ */ - guint16 maxmsglen; /* message size that you will accept */ - guint16 maxsenderwarn; /* this and below are *10 (999=99.9%) */ - guint16 maxrecverwarn; - guint32 minmsginterval; /* in milliseconds? */ -}; - -/* - * TODO: Should probably combine this with struct chat_connection. - */ -struct aim_chat_roominfo -{ - guint16 exchange; - char *name; - guint8 namelen; - guint16 instance; -}; - -struct chat_connection -{ - char *name; - char *show; /* AOL did something funny to us */ - guint16 exchange; - guint16 instance; - FlapConnection *conn; - int id; - PurpleConnection *gc; - PurpleConversation *conv; - int maxlen; - int maxvis; -}; - -/* - * All this chat struct stuff should be in family_chat.c - */ -void oscar_chat_destroy(struct chat_connection *cc); - -#define AIM_IMFLAGS_AWAY 0x0001 /* mark as an autoreply */ -#define AIM_IMFLAGS_ACK 0x0002 /* request a receipt notice */ -#define AIM_IMFLAGS_BUDDYREQ 0x0010 /* buddy icon requested */ -#define AIM_IMFLAGS_HASICON 0x0020 /* already has icon */ -#define AIM_IMFLAGS_SUBENC_MACINTOSH 0x0040 /* damn that Steve Jobs! */ -#define AIM_IMFLAGS_CUSTOMFEATURES 0x0080 /* features field present */ -#define AIM_IMFLAGS_OFFLINE 0x0800 /* send to offline user */ -#define AIM_IMFLAGS_TYPINGNOT 0x1000 /* typing notification */ - -#define AIM_CHARSET_ASCII 0x0000 /* ISO 646 */ -#define AIM_CHARSET_UNICODE 0x0002 /* ISO 10646 (UTF-16/UCS-2BE) */ -#define AIM_CHARSET_LATIN_1 0x0003 /* ISO 8859-1 */ - -/* - * Arguments to aim_send_im_ext(). - * - * This is really complicated. But immensely versatile. - * - */ -struct aim_sendimext_args -{ - /* These are _required_ */ - const char *destbn; - guint32 flags; /* often 0 */ - - const char *msg; - gsize msglen; - - /* Only used if AIM_IMFLAGS_HASICON is set */ - guint32 iconlen; - time_t iconstamp; - guint32 iconsum; - - guint16 featureslen; - guint8 *features; - - guint16 charset; -}; - -/* - * This information is provided in the Incoming ICBM callback for - * Channel 1 ICBM's. - */ -struct aim_incomingim_ch1_args -{ - guint32 icbmflags; /* some flags apply only to ->msg, not all mpmsg */ - time_t timestamp; /* Only set for offline messages */ - - gchar *msg; - - /* Only provided if AIM_IMFLAGS_HASICON is set */ - time_t iconstamp; - guint32 iconlen; - guint16 iconsum; -}; - -/* Valid values for channel 2 args->status */ -#define AIM_RENDEZVOUS_PROPOSE 0x0000 -#define AIM_RENDEZVOUS_CANCEL 0x0001 -#define AIM_RENDEZVOUS_CONNECTED 0x0002 - -struct _IcbmArgsCh2 -{ - guint16 status; - guchar cookie[8]; - guint64 type; /* One of the OSCAR_CAPABILITY_ constants */ - const char *proxyip; - const char *clientip; - const char *verifiedip; - guint16 port; - gboolean use_proxy; - guint16 errorcode; - const char *msg; /* invite message or file description */ - guint16 msglen; - const char *encoding; - const char *language; - guint16 requestnumber; - union { - struct { - guint32 checksum; - guint32 length; - time_t timestamp; - guint8 *icon; - } icon; - struct { - struct aim_chat_roominfo roominfo; - } chat; - struct { - guint8 msgtype; - const char *msg; - } rtfmsg; - struct { - guint16 subtype; - guint16 totfiles; - guint32 totsize; - char *filename; - } sendfile; - } info; - void *destructor; /* used internally only */ -}; - -struct aim_incomingim_ch4_args -{ - guint32 uin; /* Of the sender of the ICBM */ - guint8 type; - guint8 flags; - gchar *msg; /* Reason for auth request, deny, or accept */ - int msglen; -}; - -/* SNAC sending functions */ -/* 0x0002 */ int aim_im_setparams(OscarData *od, struct aim_icbmparameters *params); -/* 0x0004 */ int aim_im_reqparams(OscarData *od); -/* 0x0006 */ int aim_im_sendch1_ext(OscarData *od, struct aim_sendimext_args *args); -/* 0x0006 */ int aim_im_sendch1(OscarData *, const char *destbn, guint16 flags, const char *msg); -/* 0x0006 */ int aim_im_sendch2_chatinvite(OscarData *od, const char *bn, const char *msg, guint16 exchange, const char *roomname, guint16 instance); -/* 0x0006 */ int aim_im_sendch2_icon(OscarData *od, const char *bn, const guint8 *icon, int iconlen, time_t stamp, guint16 iconsum); - -/* 0x0006 */ void aim_im_sendch2_cancel(PeerConnection *peer_conn); -/* 0x0006 */ void aim_im_sendch2_connected(PeerConnection *peer_conn); -/* 0x0006 */ void aim_im_sendch2_odc_requestdirect(OscarData *od, guchar *cookie, const char *bn, const guint8 *ip, guint16 port, guint16 requestnumber); -/* 0x0006 */ void aim_im_sendch2_odc_requestproxy(OscarData *od, guchar *cookie, const char *bn, const guint8 *ip, guint16 pin, guint16 requestnumber); -/* 0x0006 */ void aim_im_sendch2_sendfile_requestdirect(OscarData *od, guchar *cookie, const char *bn, const guint8 *ip, guint16 port, guint16 requestnumber, const gchar *filename, guint32 size, guint16 numfiles); -/* 0x0006 */ void aim_im_sendch2_sendfile_requestproxy(OscarData *od, guchar *cookie, const char *bn, const guint8 *ip, guint16 pin, guint16 requestnumber, const gchar *filename, guint32 size, guint16 numfiles); - -/* 0x000b */ int aim_im_denytransfer(OscarData *od, const char *bn, const guchar *cookie, guint16 code); -/* 0x0010 */ int aim_im_reqofflinemsgs(OscarData *od); -/* 0x0014 */ int aim_im_sendmtn(OscarData *od, guint16 type1, const char *bn, guint16 type2); -/* 0x000b */ int icq_relay_xstatus (OscarData *od, const char *sn, const guchar* cookie); -void aim_icbm_makecookie(guchar* cookie); -void aim_im_send_icq_confirmation(OscarData *od, const char *bn, const guchar *cookie); - -/* 0x0002 - family_locate.c */ -/* - * AIM User Info, Standard Form. - */ -#define AIM_FLAG_ADMINISTRATOR 0x0002 -#define AIM_FLAG_AOL 0x0004 -#define AIM_FLAG_AWAY 0x0020 -#define AIM_FLAG_WIRELESS 0x0080 -#define AIM_FLAG_ICQ 0x0040 -#define AIM_FLAG_ACTIVEBUDDY 0x0400 - -#define AIM_USERINFO_PRESENT_FLAGS 0x00000001 -#define AIM_USERINFO_PRESENT_MEMBERSINCE 0x00000002 -#define AIM_USERINFO_PRESENT_ONLINESINCE 0x00000004 -#define AIM_USERINFO_PRESENT_IDLE 0x00000008 -#define AIM_USERINFO_PRESENT_ICQEXTSTATUS 0x00000010 -#define AIM_USERINFO_PRESENT_ICQIPADDR 0x00000020 -#define AIM_USERINFO_PRESENT_ICQDATA 0x00000040 -#define AIM_USERINFO_PRESENT_CAPABILITIES 0x00000080 -#define AIM_USERINFO_PRESENT_SESSIONLEN 0x00000100 -#define AIM_USERINFO_PRESENT_CREATETIME 0x00000200 - -struct userinfo_node -{ - char *bn; - struct userinfo_node *next; -}; - -typedef struct aim_userinfo_s -{ - char *bn; - guint16 warnlevel; /* evil percent * 10 (999 = 99.9%) */ - guint16 idletime; /* in seconds */ - guint16 flags; - guint32 createtime; /* time_t */ - guint32 membersince; /* time_t */ - guint32 onlinesince; /* time_t */ - guint32 sessionlen; /* in seconds */ - guint64 capabilities; - struct { - guint32 status; - guint32 ipaddr; - guint8 crap[0x25]; /* until we figure it out... */ - } icqinfo; - guint32 present; - - guint8 iconcsumtype; - guint16 iconcsumlen; - guint8 *iconcsum; - - char *info; - char *info_encoding; - guint16 info_len; - - char *status; - char *status_encoding; - guint16 status_len; - - char *itmsurl; - char *itmsurl_encoding; - guint16 itmsurl_len; - - char *away; - char *away_encoding; - guint16 away_len; - - struct aim_userinfo_s *next; -} aim_userinfo_t; - -#define AIM_SENDMEMBLOCK_FLAG_ISREQUEST 0 -#define AIM_SENDMEMBLOCK_FLAG_ISHASH 1 - -int aim_sendmemblock(OscarData *od, FlapConnection *conn, guint32 offset, guint32 len, const guint8 *buf, guint8 flag); - -struct aim_invite_priv -{ - char *bn; - char *roomname; - guint16 exchange; - guint16 instance; -}; - -#define AIM_COOKIETYPE_CHAT 0x01 -#define AIM_COOKIETYPE_INVITE 0x02 - -aim_userinfo_t *aim_locate_finduserinfo(OscarData *od, const char *bn); -void aim_locate_dorequest(OscarData *od); - -/* 0x0002 */ int aim_locate_reqrights(OscarData *od); -/* 0x0004 */ int aim_locate_setcaps(OscarData *od, guint64 caps); -/* 0x0004 */ int aim_locate_setprofile(OscarData *od, const char *profile_encoding, const gchar *profile, const int profile_len, const char *awaymsg_encoding, const gchar *awaymsg, const int awaymsg_len); -/* 0x0015 */ int aim_locate_getinfoshort(OscarData *od, const char *bn, guint32 flags); - -guint64 aim_locate_getcaps(OscarData *od, ByteStream *bs, int len); -guint64 aim_locate_getcaps_short(OscarData *od, ByteStream *bs, int len); -void aim_info_free(aim_userinfo_t *); -int aim_info_extract(OscarData *od, ByteStream *bs, aim_userinfo_t *); -int aim_putuserinfo(ByteStream *bs, aim_userinfo_t *info); -PurpleMood* icq_get_purple_moods(PurpleAccount *account); -const char* icq_get_custom_icon_description(const char *mood); -guint8* icq_get_custom_icon_data(const char *mood); -int icq_im_xstatus_request(OscarData *od, const char *sn); - -/* 0x0003 - family_buddy.c */ -/* 0x0002 */ void aim_buddylist_reqrights(OscarData *, FlapConnection *); - - -/* 0x000a - family_userlookup.c */ -int aim_search_address(OscarData *, const char *); - -struct aim_chat_exchangeinfo -{ - guint16 number; - guint16 flags; - char *name; - char *charset1; - char *lang1; - char *charset2; - char *lang2; -}; - -#define AIM_CHATFLAGS_NOREFLECT 0x0001 -#define AIM_CHATFLAGS_AWAY 0x0002 -int aim_chat_send_im(OscarData *od, FlapConnection *conn, guint16 flags, const gchar *msg, int msglen, const char *encoding, const char *language); -int aim_chat_join(OscarData *od, guint16 exchange, const char *roomname, guint16 instance); - -void aim_chatnav_reqrights(OscarData *od, FlapConnection *conn); - -int aim_chatnav_createroom(OscarData *od, FlapConnection *conn, const char *name, guint16 exchange); - - -/* 0x0010 - family_bart.c */ -int aim_bart_upload(OscarData *od, const guint8 *icon, guint16 iconlen); -int aim_bart_request(OscarData *od, const char *bn, guint8 iconcsumtype, const guint8 *iconstr, guint16 iconstrlen); - - - -/* 0x0013 - family_feedbag.c */ -#define AIM_SSI_TYPE_BUDDY 0x0000 -#define AIM_SSI_TYPE_GROUP 0x0001 -#define AIM_SSI_TYPE_PERMIT 0x0002 -#define AIM_SSI_TYPE_DENY 0x0003 -#define AIM_SSI_TYPE_PDINFO 0x0004 -#define AIM_SSI_TYPE_PRESENCEPREFS 0x0005 -#define AIM_SSI_TYPE_ICQDENY 0x000e -#define AIM_SSI_TYPE_ICONINFO 0x0014 - -/* These flags are set in the 0x00c9 TLV of SSI type 0x0005 */ -#define AIM_SSI_PRESENCE_FLAG_SHOWIDLE 0x00000400 -#define AIM_SSI_PRESENCE_FLAG_NORECENTBUDDIES 0x00020000 - -struct aim_ssi_item -{ - char *name; - guint16 gid; - guint16 bid; - guint16 type; - GSList *data; - struct aim_ssi_item *next; -}; - -struct aim_ssi_tmp -{ - guint16 action; - guint16 ack; - char *name; - struct aim_ssi_item *item; - struct aim_ssi_tmp *next; -}; - -/* These build the actual SNACs and queue them to be sent */ -/* 0x0002 */ int aim_ssi_reqrights(OscarData *od); -/* 0x0004 */ int aim_ssi_reqdata(OscarData *od); -/* 0x0007 */ int aim_ssi_enable(OscarData *od); -/* 0x0011 */ int aim_ssi_modbegin(OscarData *od); -/* 0x0012 */ int aim_ssi_modend(OscarData *od); -/* 0x0018 */ int aim_ssi_sendauthrequest(OscarData *od, const char *bn, const char *msg); -/* 0x001a */ int aim_ssi_sendauthreply(OscarData *od, const char *bn, guint8 reply, const char *msg); - -/* Client functions for retrieving SSI data */ -struct aim_ssi_item *aim_ssi_itemlist_find(struct aim_ssi_item *list, guint16 gid, guint16 bid); -struct aim_ssi_item *aim_ssi_itemlist_finditem(struct aim_ssi_item *list, const char *gn, const char *bn, guint16 type); -struct aim_ssi_item *aim_ssi_itemlist_exists(struct aim_ssi_item *list, const char *bn); -char *aim_ssi_itemlist_findparentname(struct aim_ssi_item *list, const char *bn); -int aim_ssi_getpermdeny(struct aim_ssi_item *list); -guint32 aim_ssi_getpresence(struct aim_ssi_item *list); -char *aim_ssi_getalias(struct aim_ssi_item *list, const char *gn, const char *bn); -char *aim_ssi_getcomment(struct aim_ssi_item *list, const char *gn, const char *bn); -gboolean aim_ssi_waitingforauth(struct aim_ssi_item *list, const char *gn, const char *bn); - -/* Client functions for changing SSI data */ -int aim_ssi_addbuddy(OscarData *od, const char *name, const char *group, GSList *tlvlist, const char *alias, const char *comment, const char *smsnum, gboolean needauth); -int aim_ssi_delbuddy(OscarData *od, const char *name, const char *group); -int aim_ssi_delgroup(OscarData *od, const char *group); -int aim_ssi_movebuddy(OscarData *od, const char *oldgn, const char *newgn, const char *bn); -int aim_ssi_aliasbuddy(OscarData *od, const char *gn, const char *bn, const char *alias); -int aim_ssi_editcomment(OscarData *od, const char *gn, const char *bn, const char *alias); -int aim_ssi_rename_group(OscarData *od, const char *oldgn, const char *newgn); -int aim_ssi_cleanlist(OscarData *od); -int aim_ssi_deletelist(OscarData *od); -int aim_ssi_setpermdeny(OscarData *od, guint8 permdeny); -int aim_ssi_setpresence(OscarData *od, guint32 presence); -int aim_ssi_seticon(OscarData *od, const guint8 *iconsum, guint8 iconsumlen); -int aim_ssi_delicon(OscarData *od); -int aim_ssi_add_to_private_list(OscarData *od, const char* name, guint16 list_type); -int aim_ssi_del_from_private_list(OscarData* od, const char* name, guint16 list_type); - -guint16 aim_ssi_getdenyentrytype(OscarData* od); - -struct aim_icq_info -{ - guint16 reqid; - - /* simple */ - guint32 uin; - - /* general and "home" information (0x00c8) */ - char *nick; - char *first; - char *last; - char *email; - char *homecity; - char *homestate; - char *homephone; - char *homefax; - char *homeaddr; - char *mobile; - char *homezip; - guint16 homecountry; -/* guint8 timezone; - guint8 hideemail; */ - - /* personal (0x00dc) */ - guint8 age; - guint8 unknown; - guint8 gender; - char *personalwebpage; - guint16 birthyear; - guint8 birthmonth; - guint8 birthday; - guint8 language1; - guint8 language2; - guint8 language3; - - /* work (0x00d2) */ - char *workcity; - char *workstate; - char *workphone; - char *workfax; - char *workaddr; - char *workzip; - guint16 workcountry; - char *workcompany; - char *workdivision; - char *workposition; - char *workwebpage; - - /* additional personal information (0x00e6) */ - char *info; - - /* email (0x00eb) */ - guint16 numaddresses; - char **email2; - - /* status note info */ - guint8 icbm_cookie[8]; - char *status_note_title; - - gboolean for_auth_request; - char *auth_request_reason; -}; - -int aim_icq_setsecurity(OscarData *od, gboolean auth_required, gboolean webaware); -int aim_icq_changepasswd(OscarData *od, const char *passwd); -int aim_icq_getalias(OscarData *od, const char *uin, gboolean for_auth_request, char *auth_request_reason); -int aim_icq_getallinfo(OscarData *od, const char *uin); -int aim_icq_sendsms(OscarData *od, const char *name, const char *msg, const char *alias); - - -/* 0x0017 - family_auth.c */ -void aim_sendcookie(OscarData *, FlapConnection *, const guint16 length, const guint8 *); -void aim_admin_changepasswd(OscarData *, FlapConnection *, const char *newpw, const char *curpw); -void aim_admin_reqconfirm(OscarData *od, FlapConnection *conn); -void aim_admin_getinfo(OscarData *od, FlapConnection *conn, guint16 info); -void aim_admin_setemail(OscarData *od, FlapConnection *conn, const char *newemail); -void aim_admin_setnick(OscarData *od, FlapConnection *conn, const char *newnick); - - - -/* 0x0018 - family_alert.c */ -struct aim_emailinfo -{ - guint8 *cookie16; - guint8 *cookie8; - char *url; - guint16 nummsgs; - guint8 unread; - char *domain; - guint16 flag; - struct aim_emailinfo *next; -}; - -int aim_email_sendcookies(OscarData *od); -int aim_email_activate(OscarData *od); - - - -/* tlv.c - TLV handling */ - -/* TLV structure */ -typedef struct aim_tlv_s -{ - guint16 type; - guint16 length; - guint8 *value; -} aim_tlv_t; - -/* TLV handling functions */ -char *aim_tlv_getvalue_as_string(aim_tlv_t *tlv); - -aim_tlv_t *aim_tlv_gettlv(GSList *list, const guint16 type, const int nth); -int aim_tlv_getlength(GSList *list, const guint16 type, const int nth); -char *aim_tlv_getstr(GSList *list, const guint16 type, const int nth); -guint8 aim_tlv_get8(GSList *list, const guint16 type, const int nth); -guint16 aim_tlv_get16(GSList *list, const guint16 type, const int nth); -guint32 aim_tlv_get32(GSList *list, const guint16 type, const int nth); - -/* TLV list handling functions */ -GSList *aim_tlvlist_read(ByteStream *bs); -GSList *aim_tlvlist_readnum(ByteStream *bs, guint16 num); -GSList *aim_tlvlist_readlen(ByteStream *bs, guint16 len); -GSList *aim_tlvlist_copy(GSList *orig); - -int aim_tlvlist_count(GSList *list); -int aim_tlvlist_size(GSList *list); -int aim_tlvlist_cmp(GSList *one, GSList *two); -int aim_tlvlist_write(ByteStream *bs, GSList **list); -void aim_tlvlist_free(GSList *list); - -int aim_tlvlist_add_raw(GSList **list, const guint16 type, const guint16 length, const guint8 *value); -int aim_tlvlist_add_noval(GSList **list, const guint16 type); -int aim_tlvlist_add_8(GSList **list, const guint16 type, const guint8 value); -int aim_tlvlist_add_16(GSList **list, const guint16 type, const guint16 value); -int aim_tlvlist_add_32(GSList **list, const guint16 type, const guint32 value); -int aim_tlvlist_add_str(GSList **list, const guint16 type, const char *value); -int aim_tlvlist_add_caps(GSList **list, const guint16 type, const guint64 caps, const char *mood); -int aim_tlvlist_add_userinfo(GSList **list, guint16 type, aim_userinfo_t *userinfo); -int aim_tlvlist_add_chatroom(GSList **list, guint16 type, guint16 exchange, const char *roomname, guint16 instance); -int aim_tlvlist_add_frozentlvlist(GSList **list, guint16 type, GSList **tl); - -int aim_tlvlist_replace_raw(GSList **list, const guint16 type, const guint16 lenth, const guint8 *value); -int aim_tlvlist_replace_str(GSList **list, const guint16 type, const char *str); -int aim_tlvlist_replace_noval(GSList **list, const guint16 type); -int aim_tlvlist_replace_8(GSList **list, const guint16 type, const guint8 value); -int aim_tlvlist_replace_16(GSList **list, const guint16 type, const guint16 value); -int aim_tlvlist_replace_32(GSList **list, const guint16 type, const guint32 value); - -void aim_tlvlist_remove(GSList **list, const guint16 type); - - - -/* util.c */ -/* These are really ugly. You'd think this was LISP. I wish it was. */ -#define aimutil_put8(buf, data) ((*(buf) = (guint8)(data)&0xff),1) -#define aimutil_get8(buf) ((*(buf))&0xff) -#define aimutil_put16(buf, data) ( \ - (*(buf) = (guint8)((data)>>8)&0xff), \ - (*((buf)+1) = (guint8)(data)&0xff), \ - 2) -#define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) -#define aimutil_put32(buf, data) ( \ - (*((buf)) = (guint8)((data)>>24)&0xff), \ - (*((buf)+1) = (guint8)((data)>>16)&0xff), \ - (*((buf)+2) = (guint8)((data)>>8)&0xff), \ - (*((buf)+3) = (guint8)(data)&0xff), \ - 4) -#define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \ - (((*((buf)+1))<<16)&0x00ff0000) + \ - (((*((buf)+2))<< 8)&0x0000ff00) + \ - (((*((buf)+3) )&0x000000ff))) - -/* Little-endian versions (damn ICQ) */ -#define aimutil_putle8(buf, data) ( \ - (*(buf) = (guint8)(data) & 0xff), \ - 1) -#define aimutil_getle8(buf) ( \ - (*(buf)) & 0xff \ - ) -#define aimutil_putle16(buf, data) ( \ - (*((buf)+0) = (guint8)((data) >> 0) & 0xff), \ - (*((buf)+1) = (guint8)((data) >> 8) & 0xff), \ - 2) -#define aimutil_getle16(buf) ( \ - (((*((buf)+0)) << 0) & 0x00ff) + \ - (((*((buf)+1)) << 8) & 0xff00) \ - ) -#define aimutil_putle32(buf, data) ( \ - (*((buf)+0) = (guint8)((data) >> 0) & 0xff), \ - (*((buf)+1) = (guint8)((data) >> 8) & 0xff), \ - (*((buf)+2) = (guint8)((data) >> 16) & 0xff), \ - (*((buf)+3) = (guint8)((data) >> 24) & 0xff), \ - 4) -#define aimutil_getle32(buf) ( \ - (((*((buf)+0)) << 0) & 0x000000ff) + \ - (((*((buf)+1)) << 8) & 0x0000ff00) + \ - (((*((buf)+2)) << 16) & 0x00ff0000) + \ - (((*((buf)+3)) << 24) & 0xff000000)) - -const char *oscar_get_msgerr_reason(size_t reason); -int oscar_get_ui_info_int(const char *str, int default_value); -const char *oscar_get_ui_info_string(const char *str, const char *default_value); -gchar *oscar_get_clientstring(void); - -guint16 aimutil_iconsum(const guint8 *buf, int buflen); - -gboolean oscar_util_valid_name(const char *bn); -gboolean oscar_util_valid_name_icq(const char *bn); -gboolean oscar_util_valid_name_sms(const char *bn); -int oscar_util_name_compare(const char *bn1, const char *bn2); -gchar *oscar_util_format_string(const char *str, const char *name); -gchar *oscar_format_buddies(GSList *buddies, const gchar *no_buddies_message); - -typedef struct { - guint16 family; - guint16 subtype; - guint16 flags; - guint32 id; -} aim_modsnac_t; - -#define AIM_MODULENAME_MAXLEN 16 -#define AIM_MODFLAG_MULTIFAMILY 0x0001 -typedef struct aim_module_s -{ - guint16 family; - guint16 version; - guint16 toolid; - guint16 toolversion; - guint16 flags; - char name[AIM_MODULENAME_MAXLEN+1]; - int (*snachandler)(OscarData *od, FlapConnection *conn, struct aim_module_s *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs); - void (*shutdown)(OscarData *od, struct aim_module_s *mod); - void *priv; - struct aim_module_s *next; -} aim_module_t; - -int aim__registermodule(OscarData *od, int (*modfirst)(OscarData *, aim_module_t *)); -void aim__shutdownmodules(OscarData *od); -aim_module_t *aim__findmodulebygroup(OscarData *od, guint16 group); -aim_module_t *aim__findmodule(OscarData *od, const char *name); - -int admin_modfirst(OscarData *od, aim_module_t *mod); -int buddylist_modfirst(OscarData *od, aim_module_t *mod); -int bos_modfirst(OscarData *od, aim_module_t *mod); -int search_modfirst(OscarData *od, aim_module_t *mod); -int stats_modfirst(OscarData *od, aim_module_t *mod); -int auth_modfirst(OscarData *od, aim_module_t *mod); -int msg_modfirst(OscarData *od, aim_module_t *mod); -int misc_modfirst(OscarData *od, aim_module_t *mod); -int chatnav_modfirst(OscarData *od, aim_module_t *mod); -int chat_modfirst(OscarData *od, aim_module_t *mod); -int locate_modfirst(OscarData *od, aim_module_t *mod); -int service_modfirst(OscarData *od, aim_module_t *mod); -int popups_modfirst(OscarData *od, aim_module_t *mod); -int bart_modfirst(OscarData *od, aim_module_t *mod); -int ssi_modfirst(OscarData *od, aim_module_t *mod); -int icq_modfirst(OscarData *od, aim_module_t *mod); -int email_modfirst(OscarData *od, aim_module_t *mod); - -void aim_genericreq_n(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype); -void aim_genericreq_n_snacid(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype); -void aim_genericreq_l(OscarData *od, FlapConnection *conn, guint16 family, guint16 subtype, guint32 *); - -/* bstream.c */ -int byte_stream_new(ByteStream *bs, size_t len); -int byte_stream_init(ByteStream *bs, guint8 *data, size_t len); -void byte_stream_destroy(ByteStream *bs); -int byte_stream_bytes_left(ByteStream *bs); -int byte_stream_curpos(ByteStream *bs); -int byte_stream_setpos(ByteStream *bs, size_t off); -void byte_stream_rewind(ByteStream *bs); -int byte_stream_advance(ByteStream *bs, int n); -guint8 byte_stream_get8(ByteStream *bs); -guint16 byte_stream_get16(ByteStream *bs); -guint32 byte_stream_get32(ByteStream *bs); -guint8 byte_stream_getle8(ByteStream *bs); -guint16 byte_stream_getle16(ByteStream *bs); -guint32 byte_stream_getle32(ByteStream *bs); -int byte_stream_getrawbuf(ByteStream *bs, guint8 *buf, size_t len); -guint8 *byte_stream_getraw(ByteStream *bs, size_t len); -char *byte_stream_getstr(ByteStream *bs, size_t len); -int byte_stream_put8(ByteStream *bs, guint8 v); -int byte_stream_put16(ByteStream *bs, guint16 v); -int byte_stream_put32(ByteStream *bs, guint32 v); -int byte_stream_putle8(ByteStream *bs, guint8 v); -int byte_stream_putle16(ByteStream *bs, guint16 v); -int byte_stream_putle32(ByteStream *bs, guint32 v); -int byte_stream_putraw(ByteStream *bs, const guint8 *v, size_t len); -int byte_stream_putstr(ByteStream *bs, const char *str); -int byte_stream_putbs(ByteStream *bs, ByteStream *srcbs, size_t len); -int byte_stream_putuid(ByteStream *bs, OscarData *od); -int byte_stream_putcaps(ByteStream *bs, guint64 caps); - -/** - * Inserts a BART asset block into the given byte stream. The flags - * and length are set appropriately based on the value of data. - */ -void byte_stream_put_bart_asset(ByteStream *bs, guint16 type, ByteStream *data); - -/** - * A helper function that calls byte_stream_put_bart_asset with the - * appropriate data ByteStream given the datastr. - */ -void byte_stream_put_bart_asset_str(ByteStream *bs, guint16 type, const char *datastr); - -/* - * Generic SNAC structure. Rarely if ever used. - */ -typedef struct aim_snac_s { - aim_snacid_t id; - guint16 family; - guint16 type; - guint16 flags; - void *data; - time_t issuetime; - struct aim_snac_s *next; -} aim_snac_t; - -/* snac.c */ -void aim_initsnachash(OscarData *od); -aim_snacid_t aim_newsnac(OscarData *, aim_snac_t *newsnac); -aim_snacid_t aim_cachesnac(OscarData *od, const guint16 family, const guint16 type, const guint16 flags, const void *data, const int datalen); -aim_snac_t *aim_remsnac(OscarData *, aim_snacid_t id); -void aim_cleansnacs(OscarData *, int maxage); -int aim_putsnac(ByteStream *, guint16 family, guint16 type, aim_snacid_t id); - -struct chatsnacinfo { - guint16 exchange; - char name[128]; - guint16 instance; -}; - -struct rateclass { - guint16 classid; - guint32 windowsize; - guint32 clear; - guint32 alert; - guint32 limit; - guint32 disconnect; - guint32 current; - guint32 max; - guint8 dropping_snacs; - - struct timeval last; /**< The time when we last sent a SNAC of this rate class. */ -}; - -int aim_cachecookie(OscarData *od, IcbmCookie *cookie); -IcbmCookie *aim_uncachecookie(OscarData *od, guint8 *cookie, int type); -IcbmCookie *aim_mkcookie(guint8 *, int, void *); -IcbmCookie *aim_checkcookie(OscarData *, const unsigned char *, const int); -int aim_freecookie(OscarData *od, IcbmCookie *cookie); -int aim_cookie_free(OscarData *od, IcbmCookie *cookie); - -int aim_chat_readroominfo(ByteStream *bs, struct aim_chat_roominfo *outinfo); - -void flap_connection_destroy_chat(OscarData *od, FlapConnection *conn); - -/* userinfo.c - displaying user information */ - -void oscar_user_info_append_status(PurpleConnection *gc, PurpleNotifyUserInfo *user_info, PurpleBuddy *b, aim_userinfo_t *userinfo, gboolean use_html_status); -void oscar_user_info_append_extra_info(PurpleConnection *gc, PurpleNotifyUserInfo *user_info, PurpleBuddy *b, aim_userinfo_t *userinfo); -void oscar_user_info_display_error(OscarData *od, guint16 error_reason, char *buddy); -void oscar_user_info_display_icq(OscarData *od, struct aim_icq_info *info); -void oscar_user_info_display_aim(OscarData *od, aim_userinfo_t *userinfo); - -/* authorization.c - OSCAR authorization requests */ -void oscar_auth_sendrequest(PurpleConnection *gc, const char *name, const char *msg); -void oscar_auth_sendrequest_menu(PurpleBlistNode *node, gpointer ignored); -void oscar_auth_recvrequest(PurpleConnection *gc, gchar *name, gchar *nick, gchar *reason); - -void oscar_set_aim_permdeny(PurpleConnection *gc); - -struct buddyinfo -{ - gboolean typingnot; - guint32 ipaddr; - - unsigned long ico_me_len; - unsigned long ico_me_csum; - time_t ico_me_time; - gboolean ico_informed; - - unsigned long ico_len; - unsigned long ico_csum; - time_t ico_time; - gboolean ico_need; - gboolean ico_sent; -}; - -struct name_data -{ - PurpleConnection *gc; - gchar *name; - gchar *nick; -}; - -void oscar_free_name_data(struct name_data *data); - -#ifdef __cplusplus -} -#endif - -#endif /* _OSCAR_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/p2p.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/p2p.h deleted file mode 100644 index 89ac239..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/p2p.h +++ /dev/null @@ -1,264 +0,0 @@ -/** - * @file p2p.h MSN P2P functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef MSN_P2P_H -#define MSN_P2P_H - -typedef struct { - guint32 session_id; - guint32 id; - /** - * In a MsnSlpMessage: - * For outgoing messages this is the number of bytes from buffer that - * have already been sent out. For incoming messages this is the - * number of bytes that have been written to buffer. - */ - guint64 offset; - guint64 total_size; - guint32 length; - guint32 flags; - guint32 ack_id; - guint32 ack_sub_id; - guint64 ack_size; -/* guint8 body[1]; */ -} MsnP2PHeader; -#define P2P_PACKET_HEADER_SIZE (6 * 4 + 3 * 8) - -typedef struct { - guint8 header_len; - guint8 opcode; - guint16 message_len; - guint32 base_id; - GSList *header_tlv; - guint8 data_header_len; - guint8 data_tf; - guint16 package_number; - guint32 session_id; - GSList *data_tlv; -/* guint8 body[1]; */ -} MsnP2Pv2Header; - -typedef struct { - guint16 protocol_version; - guint16 implementation_id; - guint16 version; - guint16 reserved; - guint32 caps; -} P2PPeerInfo; - -typedef enum -{ - TF_FIRST = 0x01, /**< The first package. */ - TF_MSNOBJ = 0x04, /**< Payload contains binary data for MsnObject. */ - TF_FILE = 0x06 /**< Payload contains binary data. */ -} TF; - -typedef enum -{ - P2P_HEADER_TLV_TYPE_PEER_INFO = 0x01, /**< Client peer info */ - P2P_HEADER_TLV_TYPE_ACK = 0x02, /**< ACK */ - P2P_HEADER_TLV_TYPE_NAK = 0x03 /**< NAK */ -} P2PHeaderTLVType; - -typedef enum -{ - P2P_DATA_TLV_REMAINING = 0x01, /**< Indicates the remaining data to transfer.*/ -} P2PDataTLVType; - -typedef enum -{ - P2P_PI_PVER = 0x0200, - P2P_PI_IMP_ID = 0, - P2P_PI_VER = 0x0e00, - P2P_PI_RES = 0, - P2P_PI_CAPS = 0x0000010f -} P2PPeerInfoVal; - -typedef struct -{ - guint32 value; -} MsnP2PFooter; -#define P2P_PACKET_FOOTER_SIZE (1 * 4) - -typedef enum -{ - MSN_P2P_VERSION_ONE = 0, - MSN_P2P_VERSION_TWO = 1, -} MsnP2PVersion; - -typedef struct { - MsnP2PVersion version; - union { - MsnP2PHeader v1; - MsnP2Pv2Header v2; - } header; - MsnP2PFooter footer; -} MsnP2PInfo; - -typedef enum -{ - P2P_NO_FLAG = 0x0, /**< No flags specified */ - P2P_OUT_OF_ORDER = 0x1, /**< Chunk out-of-order */ - P2P_ACK = 0x2, /**< Acknowledgement */ - P2P_PENDING_INVITE = 0x4, /**< There is a pending invite */ - P2P_BINARY_ERROR = 0x8, /**< Error on the binary level */ - P2P_FILE = 0x10, /**< File */ - P2P_MSN_OBJ_DATA = 0x20, /**< MsnObject data */ - P2P_CLOSE = 0x40, /**< Close session */ - P2P_TLP_ERROR = 0x80, /**< Error at transport layer protocol */ - P2P_DC_HANDSHAKE = 0x100, /**< Direct Handshake */ - P2P_WLM2009_COMP = 0x1000000, /**< Compatibility with WLM 2009 */ - P2P_FILE_DATA = 0x1000030 /**< File transfer data */ -} MsnP2PHeaderFlag; -/* Info From: - * http://msnpiki.msnfanatic.com/index.php/MSNC:P2Pv1_Headers#Flags - * http://trac.kmess.org/changeset/ba04d0c825769d23370511031c47f6be75fe9b86 - * #7180 - */ - -typedef enum -{ - P2P_APPID_SESSION = 0x0, /**< Negotiating session */ - P2P_APPID_OBJ = 0x1, /**< MsnObject (Display or Emoticon) */ - P2P_APPID_FILE = 0x2, /**< File transfer */ - P2P_APPID_EMOTE = 0xB, /**< CustomEmoticon */ - P2P_APPID_DISPLAY = 0xC /**< Display Image */ -} MsnP2PAppId; - -typedef enum -{ - P2P_OPCODE_NONE = 0x00, - P2P_OPCODE_SYN = 0x01, - P2P_OPCODE_RAK = 0x02 -} MsnP2Pv2OpCode; - -MsnP2PInfo * -msn_p2p_info_new(MsnP2PVersion version); - -MsnP2PInfo * -msn_p2p_info_dup(MsnP2PInfo *info); - -void -msn_p2p_info_free(MsnP2PInfo *info); - -size_t -msn_p2p_header_from_wire(MsnP2PInfo *info, const char *wire, size_t max_len); - -char * -msn_p2p_header_to_wire(MsnP2PInfo *info, size_t *len); - -size_t -msn_p2p_footer_from_wire(MsnP2PInfo *info, const char *wire); - -char * -msn_p2p_footer_to_wire(MsnP2PInfo *info, size_t *len); - -void -msn_p2p_info_to_string(MsnP2PInfo *info, GString *str); - -gboolean -msn_p2p_msg_is_data(const MsnP2PInfo *info); - -gboolean -msn_p2p_info_is_valid(MsnP2PInfo *info); - -gboolean -msn_p2p_info_is_first(MsnP2PInfo *info); - -gboolean -msn_p2p_info_is_final(MsnP2PInfo *info); - -void -msn_p2p_info_create_ack(MsnP2PInfo *old_info, MsnP2PInfo *new_info); - -gboolean -msn_p2p_info_require_ack(MsnP2PInfo *info); - -gboolean -msn_p2p_info_is_ack(MsnP2PInfo *info); - -void -msn_p2p_info_init_first(MsnP2PInfo *new_info, MsnP2PInfo *old_info); - -guint32 -msn_p2p_info_get_session_id(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_id(MsnP2PInfo *info); - -guint64 -msn_p2p_info_get_offset(MsnP2PInfo *info); - -guint64 -msn_p2p_info_get_total_size(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_length(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_flags(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_ack_id(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_ack_sub_id(MsnP2PInfo *info); - -guint64 -msn_p2p_info_get_ack_size(MsnP2PInfo *info); - -guint32 -msn_p2p_info_get_app_id(MsnP2PInfo *info); - -void -msn_p2p_info_set_session_id(MsnP2PInfo *info, guint32 session_id); - -void -msn_p2p_info_set_id(MsnP2PInfo *info, guint32 id); - -void -msn_p2p_info_set_offset(MsnP2PInfo *info, guint64 offset); - -void -msn_p2p_info_set_total_size(MsnP2PInfo *info, guint64 total_size); - -void -msn_p2p_info_set_length(MsnP2PInfo *info, guint32 length); - -void -msn_p2p_info_set_flags(MsnP2PInfo *info, guint32 flags); - -void -msn_p2p_info_set_ack_id(MsnP2PInfo *info, guint32 ack_id); - -void -msn_p2p_info_set_ack_sub_id(MsnP2PInfo *info, guint32 ack_sub_id); - -void -msn_p2p_info_set_ack_size(MsnP2PInfo *info, guint64 ack_size); - -void -msn_p2p_info_set_app_id(MsnP2PInfo *info, guint32 app_id); - -#endif /* MSN_P2P_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/page.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/page.h deleted file mode 100644 index 4fb89f5..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/page.h +++ /dev/null @@ -1,81 +0,0 @@ -/** - * @file page.h Paging functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_PAGE_H -#define MSN_PAGE_H - -typedef struct _MsnPage MsnPage; - -#include "session.h" - -/** - * A page. - */ -struct _MsnPage -{ - char *from_location; - char *from_phone; - - char *body; -}; - -/** - * Creates a new, empty page. - * - * @return A new page. - */ -MsnPage *msn_page_new(void); - -/** - * Destroys a page. - */ -void msn_page_destroy(MsnPage *page); - -/** - * Generates the payload data of a page. - * - * @param page The page. - * @param ret_size The returned size of the payload. - * - * @return The payload data of a page. - */ -char *msn_page_gen_payload(const MsnPage *page, size_t *ret_size); - -/** - * Sets the body of a page. - * - * @param page The page. - * @param body The body of the page. - */ -void msn_page_set_body(MsnPage *page, const char *body); - -/** - * Returns the body of the page. - * - * @param page The page. - * - * @return The body of the page. - */ -const char *msn_page_get_body(const MsnPage *page); - -#endif /* MSN_PAGE_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/peer.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/peer.h deleted file mode 100644 index a706c3f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/peer.h +++ /dev/null @@ -1,282 +0,0 @@ -/* - * Purple's oscar protocol plugin - * This file is the legal property of its developers. - * Please see the AUTHORS file distributed alongside this file. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA -*/ - -/* - * OFT and ODC Services - */ - -#ifndef _PEER_H_ -#define _PEER_H_ - -#include "ft.h" -#include "network.h" -#include "proxy.h" - -typedef struct _ChecksumData ChecksumData; -typedef struct _OdcFrame OdcFrame; -typedef struct _OftFrame OftFrame; -typedef struct _ProxyFrame ProxyFrame; -typedef struct _PeerConnection PeerConnection; - -#define PEER_CONNECTION_FLAG_INITIATED_BY_ME 0x0001 -#define PEER_CONNECTION_FLAG_APPROVED 0x0002 -#define PEER_CONNECTION_FLAG_TRIED_DIRECT 0x0004 -#define PEER_CONNECTION_FLAG_TRIED_INCOMING 0x0008 -#define PEER_CONNECTION_FLAG_TRIED_PROXY 0x0010 -#define PEER_CONNECTION_FLAG_IS_INCOMING 0x0020 - -#define PEER_TYPE_PROMPT 0x0101 /* "I am going to send you this file, is that ok?" */ -#define PEER_TYPE_RESUMEACCEPT 0x0106 /* We are accepting the resume */ -#define PEER_TYPE_ACK 0x0202 /* "Yes, it is ok for you to send me that file" */ -#define PEER_TYPE_DONE 0x0204 /* "I received that file with no problems" or "I already have that file, great!" */ -#define PEER_TYPE_RESUME 0x0205 /* Resume transferring, sent by whoever receives */ -#define PEER_TYPE_RESUMEACK 0x0207 /* Our resume accept was ACKed */ - -#define PEER_TYPE_GETFILE_REQUESTLISTING 0x1108 /* "I have a listing.txt file, do you want it?" */ -#define PEER_TYPE_GETFILE_RECEIVELISTING 0x1209 /* "Yes, please send me your listing.txt file" */ -#define PEER_TYPE_GETFILE_RECEIVEDLISTING 0x120a /* received corrupt listing.txt file? I'm just guessing about this one... */ -#define PEER_TYPE_GETFILE_ACKLISTING 0x120b /* "I received the listing.txt file successfully" */ -#define PEER_TYPE_GETFILE_REQUESTFILE 0x120c /* "Please send me this file" */ - -/* - * For peer proxying - */ -#define AIM_PEER_PROXY_SERVER "ars.oscar.aol.com" -#define ICQ_PEER_PROXY_SERVER "ars.icq.com" -#define PEER_PROXY_PORT 5190 /* The port we should always connect to */ -#define PEER_PROXY_PACKET_VERSION 0x044a - -/* Thanks to Keith Lea and the Joust project for documenting these */ -#define PEER_PROXY_TYPE_ERROR 0x0001 -#define PEER_PROXY_TYPE_CREATE 0x0002 -#define PEER_PROXY_TYPE_CREATED 0x0003 -#define PEER_PROXY_TYPE_JOIN 0x0004 -#define PEER_PROXY_TYPE_READY 0x0005 - -struct _OdcFrame -{ - /* guchar magic[4]; */ /* 0 */ - /* guint16 length; */ /* 4 */ - guint16 type; /* 6 */ - guint16 subtype; /* 8 */ - /* Unknown */ /* 10 */ - guchar cookie[8]; /* 12 */ - /* Unknown */ - /* guint32 payloadlength; */ /* 28 */ - guint16 encoding; /* 32 */ - /* Unknown */ - guint16 flags; /* 38 */ - /* Unknown */ - guchar bn[32]; /* 44 */ - /* Unknown */ - ByteStream payload; /* 76 */ -}; - -struct _OftFrame -{ - /* guchar magic[4]; */ /* 0 */ - /* guint16 length; */ /* 4 */ - guint16 type; /* 6 */ - guchar cookie[8]; /* 8 */ - guint16 encrypt; /* 16 */ - guint16 compress; /* 18 */ - guint16 totfiles; /* 20 */ - guint16 filesleft; /* 22 */ - guint16 totparts; /* 24 */ - guint16 partsleft; /* 26 */ - guint32 totsize; /* 28 */ - guint32 size; /* 32 */ - guint32 modtime; /* 36 */ - guint32 checksum; /* 40 */ - guint32 rfrcsum; /* 44 */ - guint32 rfsize; /* 48 */ - guint32 cretime; /* 52 */ - guint32 rfcsum; /* 56 */ - guint32 nrecvd; /* 60 */ - guint32 recvcsum; /* 64 */ - guchar idstring[32]; /* 68 */ - guint8 flags; /* 100 */ - guint8 lnameoffset; /* 101 */ - guint8 lsizeoffset; /* 102 */ - guchar dummy[69]; /* 103 */ - guchar macfileinfo[16]; /* 172 */ - guint16 nencode; /* 188 */ - guint16 nlanguage; /* 190 */ - guchar *name; /* 192 */ - size_t name_length; - /* Payload? */ /* 256 */ -}; - -struct _ProxyFrame -{ - /* guint16 length; */ /* 0 */ - guint16 version; /* 2 */ - guint16 type; /* 4 */ - guint32 unknown; /* 6 */ - guint16 flags; /* 10 */ - ByteStream payload; /* 12 */ -}; - -struct _PeerConnection -{ - OscarData *od; - guint64 type; - char *bn; - guchar magic[4]; - guchar cookie[8]; - guint16 lastrequestnumber; - - gboolean ready; - int flags; /**< Bitmask of PEER_CONNECTION_FLAG_ */ - time_t lastactivity; /**< Time of last transmit. */ - guint destroy_timeout; - OscarDisconnectReason disconnect_reason; - char *error_message; - - /** - * A pointer to either an OdcFrame or an OftFrame. - */ - gpointer frame; - - /** - * This is only used when the peer connection is being established. - */ - PurpleProxyConnectData *client_connect_data; - PurpleProxyConnectData *verified_connect_data; - - /** - * This is only used when the peer connection is being established. - */ - PurpleNetworkListenData *listen_data; - - - /** - * This is only used when the peer connection is being established. - */ - guint connect_timeout_timer; - - /** - * This is only used while the remote user is attempting to - * connect to us. - */ - int listenerfd; - - int fd; - guint8 header[6]; - gssize header_received; - guint8 proxy_header[12]; - gssize proxy_header_received; - ByteStream buffer_incoming; - PurpleCircBuffer *buffer_outgoing; - guint watcher_incoming; - guint watcher_outgoing; - - /** - * IP address of the proxy server, if applicable. - */ - gchar *proxyip; - - /** - * IP address of the remote user from THEIR point of view. - */ - gchar *clientip; - - /** - * IP address of the remote user from the oscar server's - * point of view. - */ - gchar *verifiedip; - - guint16 port; - gboolean use_proxy; - - /** - * Checksumming - */ - ChecksumData *checksum_data; - - /* TODOFT */ - PurpleXfer *xfer; - OftFrame xferdata; - guint sending_data_timer; -}; - -/* - * For all peer connections - */ - -/** - * Create a new PeerConnection structure and initialize it with some - * sane defaults. - * - * @param type The type of the peer connection. One of - * OSCAR_CAPABILITY_DIRECTIM or OSCAR_CAPABILITY_SENDFILE. - */ -PeerConnection *peer_connection_new(OscarData *od, guint64 type, const char *bn); - -void peer_connection_destroy(PeerConnection *conn, OscarDisconnectReason reason, const gchar *error_message); -void peer_connection_schedule_destroy(PeerConnection *conn, OscarDisconnectReason reason, const gchar *error_message); -PeerConnection *peer_connection_find_by_type(OscarData *od, const char *bn, guint64 type); -PeerConnection *peer_connection_find_by_cookie(OscarData *od, const char *bn, const guchar *cookie); - -void peer_connection_listen_cb(gpointer data, gint source, PurpleInputCondition cond); -void peer_connection_recv_cb(gpointer data, gint source, PurpleInputCondition cond); -void peer_connection_send(PeerConnection *conn, ByteStream *bs); - -void peer_connection_trynext(PeerConnection *conn); -void peer_connection_finalize_connection(PeerConnection *conn); -void peer_connection_propose(OscarData *od, guint64 type, const char *bn); -void peer_connection_got_proposition(OscarData *od, const gchar *bn, const gchar *message, IcbmArgsCh2 *args); - -/* - * For ODC - */ -void peer_odc_close(PeerConnection *conn); -void peer_odc_recv_frame(PeerConnection *conn, ByteStream *bs); -void peer_odc_send_cookie(PeerConnection *conn); -void peer_odc_send_typing(PeerConnection *conn, PurpleTypingState typing); -void peer_odc_send_im(PeerConnection *conn, const char *msg, int len, int encoding, gboolean autoreply); - -/* - * For OFT - */ -void peer_oft_close(PeerConnection *conn); -void peer_oft_recv_frame(PeerConnection *conn, ByteStream *bs); -void peer_oft_send_prompt(PeerConnection *conn); -void peer_oft_checksum_destroy(ChecksumData *checksum_data); - -/* Xfer callbacks for receiving a file */ -void peer_oft_recvcb_init(PurpleXfer *xfer); -void peer_oft_recvcb_end(PurpleXfer *xfer); -void peer_oft_recvcb_ack_recv(PurpleXfer *xfer, const guchar *buffer, size_t size); - -/* Xfer callbacks for sending a file */ -void peer_oft_sendcb_init(PurpleXfer *xfer); -void peer_oft_sendcb_ack(PurpleXfer *xfer, const guchar *buffer, size_t size); - -/* Xfer callbacks for both sending and receiving */ -void peer_oft_cb_generic_cancel(PurpleXfer *xfer); - -/* - * For peer proxying - */ -void peer_proxy_connection_established_cb(gpointer data, gint source, const gchar *error_message); - -#endif /* _PEER_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/plugin.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/plugin.h deleted file mode 100644 index 9225aec..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/plugin.h +++ /dev/null @@ -1,740 +0,0 @@ -/** - * @file plugin.h Plugin API - * @ingroup core - * @see @ref plugin-signals - * @see @ref plugin-ids - * @see @ref plugin-i18n - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_PLUGIN_H_ -#define _PURPLE_PLUGIN_H_ - -#include -#include -#include "signals.h" -#include "value.h" - -/** @copydoc _PurplePlugin */ -typedef struct _PurplePlugin PurplePlugin; -/** @copydoc _PurplePluginInfo */ -typedef struct _PurplePluginInfo PurplePluginInfo; -/** @copydoc _PurplePluginUiInfo */ -typedef struct _PurplePluginUiInfo PurplePluginUiInfo; -/** @copydoc _PurplePluginLoaderInfo */ -typedef struct _PurplePluginLoaderInfo PurplePluginLoaderInfo; - -/** @copydoc _PurplePluginAction */ -typedef struct _PurplePluginAction PurplePluginAction; - -typedef int PurplePluginPriority; /**< Plugin priority. */ - -#include "pluginpref.h" - -/** - * Plugin types. - */ -typedef enum -{ - PURPLE_PLUGIN_UNKNOWN = -1, /**< Unknown type. */ - PURPLE_PLUGIN_STANDARD = 0, /**< Standard plugin. */ - PURPLE_PLUGIN_LOADER, /**< Loader plugin. */ - PURPLE_PLUGIN_PROTOCOL /**< Protocol plugin. */ - -} PurplePluginType; - -#define PURPLE_PRIORITY_DEFAULT 0 -#define PURPLE_PRIORITY_HIGHEST 9999 -#define PURPLE_PRIORITY_LOWEST -9999 - -#define PURPLE_PLUGIN_FLAG_INVISIBLE 0x01 - -#define PURPLE_PLUGIN_MAGIC 5 /* once we hit 6.0.0 I think we can remove this */ - -/** - * Detailed information about a plugin. - * - * This is used in the version 2.0 API and up. - */ -struct _PurplePluginInfo -{ - unsigned int magic; - unsigned int major_version; - unsigned int minor_version; - PurplePluginType type; - char *ui_requirement; - unsigned long flags; - GList *dependencies; - PurplePluginPriority priority; - - char *id; - char *name; - char *version; - char *summary; - char *description; - char *author; - char *homepage; - - /** - * If a plugin defines a 'load' function, and it returns FALSE, - * then the plugin will not be loaded. - */ - gboolean (*load)(PurplePlugin *plugin); - gboolean (*unload)(PurplePlugin *plugin); - void (*destroy)(PurplePlugin *plugin); - - void *ui_info; /**< Used only by UI-specific plugins to build a preference screen with a custom UI */ - void *extra_info; - PurplePluginUiInfo *prefs_info; /**< Used by any plugin to display preferences. If #ui_info has been specified, this will be ignored. */ - - /** - * This callback has a different use depending on whether this - * plugin type is PURPLE_PLUGIN_STANDARD or PURPLE_PLUGIN_PROTOCOL. - * - * If PURPLE_PLUGIN_STANDARD then the list of actions will show up - * in the Tools menu, under a submenu with the name of the plugin. - * context will be NULL. - * - * If PURPLE_PLUGIN_PROTOCOL then the list of actions will show up - * in the Accounts menu, under a submenu with the name of the - * account. context will be set to the PurpleConnection for that - * account. This callback will only be called for online accounts. - */ - GList *(*actions)(PurplePlugin *plugin, gpointer context); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** - * Extra information for loader plugins. - */ -struct _PurplePluginLoaderInfo -{ - GList *exts; - - gboolean (*probe)(PurplePlugin *plugin); - gboolean (*load)(PurplePlugin *plugin); - gboolean (*unload)(PurplePlugin *plugin); - void (*destroy)(PurplePlugin *plugin); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -/** - * A plugin handle. - */ -struct _PurplePlugin -{ - gboolean native_plugin; /**< Native C plugin. */ - gboolean loaded; /**< The loaded state. */ - void *handle; /**< The module handle. */ - char *path; /**< The path to the plugin. */ - PurplePluginInfo *info; /**< The plugin information. */ - char *error; - void *ipc_data; /**< IPC data. */ - void *extra; /**< Plugin-specific data. */ - gboolean unloadable; /**< Unloadable */ - GList *dependent_plugins; /**< Plugins depending on this */ - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -#define PURPLE_PLUGIN_LOADER_INFO(plugin) \ - ((PurplePluginLoaderInfo *)(plugin)->info->extra_info) - -struct _PurplePluginUiInfo { - PurplePluginPrefFrame *(*get_plugin_pref_frame)(PurplePlugin *plugin); - - int page_num; /**< Reserved */ - PurplePluginPrefFrame *frame; /**< Reserved */ - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -#define PURPLE_PLUGIN_HAS_PREF_FRAME(plugin) \ - ((plugin)->info != NULL && (plugin)->info->prefs_info != NULL) - -#define PURPLE_PLUGIN_UI_INFO(plugin) \ - ((PurplePluginUiInfo*)(plugin)->info->prefs_info) - - -/** - * The structure used in the actions member of PurplePluginInfo - */ -struct _PurplePluginAction { - char *label; - void (*callback)(PurplePluginAction *); - - /** set to the owning plugin */ - PurplePlugin *plugin; - - /** NULL for plugin actions menu, set to the PurpleConnection for - account actions menu */ - gpointer context; - - gpointer user_data; -}; - -#define PURPLE_PLUGIN_HAS_ACTIONS(plugin) \ - ((plugin)->info != NULL && (plugin)->info->actions != NULL) - -#define PURPLE_PLUGIN_ACTIONS(plugin, context) \ - (PURPLE_PLUGIN_HAS_ACTIONS(plugin)? \ - (plugin)->info->actions(plugin, context): NULL) - - -/** - * Handles the initialization of modules. - */ -#if !defined(PURPLE_PLUGINS) || defined(PURPLE_STATIC_PRPL) -# define _FUNC_NAME(x) purple_init_##x##_plugin -# define PURPLE_INIT_PLUGIN(pluginname, initfunc, plugininfo) \ - gboolean _FUNC_NAME(pluginname)(void);\ - gboolean _FUNC_NAME(pluginname)(void) { \ - PurplePlugin *plugin = purple_plugin_new(TRUE, NULL); \ - plugin->info = &(plugininfo); \ - initfunc((plugin)); \ - purple_plugin_load((plugin)); \ - return purple_plugin_register(plugin); \ - } -#else /* PURPLE_PLUGINS && !PURPLE_STATIC_PRPL */ -# define PURPLE_INIT_PLUGIN(pluginname, initfunc, plugininfo) \ - G_MODULE_EXPORT gboolean purple_init_plugin(PurplePlugin *plugin); \ - G_MODULE_EXPORT gboolean purple_init_plugin(PurplePlugin *plugin) { \ - plugin->info = &(plugininfo); \ - initfunc((plugin)); \ - return purple_plugin_register(plugin); \ - } -#endif - - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Plugin API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new plugin structure. - * - * @param native Whether or not the plugin is native. - * @param path The path to the plugin, or @c NULL if statically compiled. - * - * @return A new PurplePlugin structure. - */ -PurplePlugin *purple_plugin_new(gboolean native, const char *path); - -/** - * Probes a plugin, retrieving the information on it and adding it to the - * list of available plugins. - * - * @param filename The plugin's filename. - * - * @return The plugin handle. - * - * @see purple_plugin_load() - * @see purple_plugin_destroy() - */ -PurplePlugin *purple_plugin_probe(const char *filename); - -/** - * Registers a plugin and prepares it for loading. - * - * This shouldn't be called by anything but the internal module code. - * Plugins should use the PURPLE_INIT_PLUGIN() macro to register themselves - * with the core. - * - * @param plugin The plugin to register. - * - * @return @c TRUE if the plugin was registered successfully. Otherwise - * @c FALSE is returned (this happens if the plugin does not contain - * the necessary information). - */ -gboolean purple_plugin_register(PurplePlugin *plugin); - -/** - * Attempts to load a previously probed plugin. - * - * @param plugin The plugin to load. - * - * @return @c TRUE if successful, or @c FALSE otherwise. - * - * @see purple_plugin_reload() - * @see purple_plugin_unload() - */ -gboolean purple_plugin_load(PurplePlugin *plugin); - -/** - * Unloads the specified plugin. - * - * @param plugin The plugin handle. - * - * @return @c TRUE if successful, or @c FALSE otherwise. - * - * @see purple_plugin_load() - * @see purple_plugin_reload() - */ -gboolean purple_plugin_unload(PurplePlugin *plugin); - -/** - * Disable a plugin. - * - * This function adds the plugin to a list of plugins to "disable at the next - * startup" by excluding said plugins from the list of plugins to save. The - * UI needs to call purple_plugins_save_loaded() after calling this for it - * to have any effect. - * - * @since 2.3.0 - */ -void purple_plugin_disable(PurplePlugin *plugin); - -/** - * Reloads a plugin. - * - * @param plugin The old plugin handle. - * - * @return @c TRUE if successful, or @c FALSE otherwise. - * - * @see purple_plugin_load() - * @see purple_plugin_unload() - */ -gboolean purple_plugin_reload(PurplePlugin *plugin); - -/** - * Unloads a plugin and destroys the structure from memory. - * - * @param plugin The plugin handle. - */ -void purple_plugin_destroy(PurplePlugin *plugin); - -/** - * Returns whether or not a plugin is currently loaded. - * - * @param plugin The plugin. - * - * @return @c TRUE if loaded, or @c FALSE otherwise. - */ -gboolean purple_plugin_is_loaded(const PurplePlugin *plugin); - -/** - * Returns whether or not a plugin is unloadable. - * - * If this returns @c TRUE, the plugin is guaranteed to not - * be loadable. However, a return value of @c FALSE does not - * guarantee the plugin is loadable. - * - * @param plugin The plugin. - * - * @return @c TRUE if the plugin is known to be unloadable,\ - * @c FALSE otherwise - */ -gboolean purple_plugin_is_unloadable(const PurplePlugin *plugin); - -/** - * Returns a plugin's id. - * - * @param plugin The plugin. - * - * @return The plugin's id. - */ -const gchar *purple_plugin_get_id(const PurplePlugin *plugin); - -/** - * Returns a plugin's name. - * - * @param plugin The plugin. - * - * @return THe name of the plugin, or @c NULL. - */ -const gchar *purple_plugin_get_name(const PurplePlugin *plugin); - -/** - * Returns a plugin's version. - * - * @param plugin The plugin. - * - * @return The plugin's version or @c NULL. - */ -const gchar *purple_plugin_get_version(const PurplePlugin *plugin); - -/** - * Returns a plugin's summary. - * - * @param plugin The plugin. - * - * @return The plugin's summary. - */ -const gchar *purple_plugin_get_summary(const PurplePlugin *plugin); - -/** - * Returns a plugin's description. - * - * @param plugin The plugin. - * - * @return The plugin's description. - */ -const gchar *purple_plugin_get_description(const PurplePlugin *plugin); - -/** - * Returns a plugin's author. - * - * @param plugin The plugin. - * - * @return The plugin's author. - */ -const gchar *purple_plugin_get_author(const PurplePlugin *plugin); - -/** - * Returns a plugin's homepage. - * - * @param plugin The plugin. - * - * @return The plugin's homepage. - */ -const gchar *purple_plugin_get_homepage(const PurplePlugin *plugin); - -/*@}*/ - -/**************************************************************************/ -/** @name Plugin IPC API */ -/**************************************************************************/ -/*@{*/ - -/** - * Registers an IPC command in a plugin. - * - * @param plugin The plugin to register the command with. - * @param command The name of the command. - * @param func The function to execute. - * @param marshal The marshalling function. - * @param ret_value The return value type. - * @param num_params The number of parameters. - * @param ... The parameter types. - * - * @return TRUE if the function was registered successfully, or - * FALSE otherwise. - */ -gboolean purple_plugin_ipc_register(PurplePlugin *plugin, const char *command, - PurpleCallback func, - PurpleSignalMarshalFunc marshal, - PurpleValue *ret_value, int num_params, ...); - -/** - * Unregisters an IPC command in a plugin. - * - * @param plugin The plugin to unregister the command from. - * @param command The name of the command. - */ -void purple_plugin_ipc_unregister(PurplePlugin *plugin, const char *command); - -/** - * Unregisters all IPC commands in a plugin. - * - * @param plugin The plugin to unregister the commands from. - */ -void purple_plugin_ipc_unregister_all(PurplePlugin *plugin); - -/** - * Returns a list of value types used for an IPC command. - * - * @param plugin The plugin. - * @param command The name of the command. - * @param ret_value The returned return value. - * @param num_params The returned number of parameters. - * @param params The returned list of parameters. - * - * @return TRUE if the command was found, or FALSE otherwise. - */ -gboolean purple_plugin_ipc_get_params(PurplePlugin *plugin, const char *command, - PurpleValue **ret_value, int *num_params, - PurpleValue ***params); - -/** - * Executes an IPC command. - * - * @param plugin The plugin to execute the command on. - * @param command The name of the command. - * @param ok TRUE if the call was successful, or FALSE otherwise. - * @param ... The parameters to pass. - * - * @return The return value, which will be NULL if the command doesn't - * return a value. - */ -void *purple_plugin_ipc_call(PurplePlugin *plugin, const char *command, - gboolean *ok, ...); - -/*@}*/ - -/**************************************************************************/ -/** @name Plugins API */ -/**************************************************************************/ -/*@{*/ - -/** - * Add a new directory to search for plugins - * - * @param path The new search path. - */ -void purple_plugins_add_search_path(const char *path); - -/** - * Returns a list of plugin search paths. - * - * @constreturn A list of searched paths. - * - * @since 2.6.0 - */ -GList *purple_plugins_get_search_paths(void); - -/** - * Unloads all loaded plugins. - */ -void purple_plugins_unload_all(void); - -/** - * Unloads all plugins of a specific type. - */ -void purple_plugins_unload(PurplePluginType type); - -/** - * Destroys all registered plugins. - */ -void purple_plugins_destroy_all(void); - -/** - * Saves the list of loaded plugins to the specified preference key - * - * @param key The preference key to save the list of plugins to. - */ -void purple_plugins_save_loaded(const char *key); - -/** - * Attempts to load all the plugins in the specified preference key - * that were loaded when purple last quit. - * - * @param key The preference key containing the list of plugins. - */ -void purple_plugins_load_saved(const char *key); - -/** - * Probes for plugins in the registered module paths. - * - * @param ext The extension type to probe for, or @c NULL for all. - * - * @see purple_plugin_set_probe_path() - */ -void purple_plugins_probe(const char *ext); - -/** - * Returns whether or not plugin support is enabled. - * - * @return TRUE if plugin support is enabled, or FALSE otherwise. - */ -gboolean purple_plugins_enabled(void); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Registers a function that will be called when probing is finished. - * - * @param func The callback function. - * @param data Data to pass to the callback. - * @deprecated If you need this, ask for a plugin-probe signal to be added. - */ -void purple_plugins_register_probe_notify_cb(void (*func)(void *), void *data); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Unregisters a function that would be called when probing is finished. - * - * @param func The callback function. - * @deprecated If you need this, ask for a plugin-probe signal to be added. - */ -void purple_plugins_unregister_probe_notify_cb(void (*func)(void *)); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Registers a function that will be called when a plugin is loaded. - * - * @param func The callback function. - * @param data Data to pass to the callback. - * @deprecated Use the plugin-load signal instead. - */ -void purple_plugins_register_load_notify_cb(void (*func)(PurplePlugin *, void *), - void *data); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Unregisters a function that would be called when a plugin is loaded. - * - * @param func The callback function. - * @deprecated Use the plugin-load signal instead. - */ -void purple_plugins_unregister_load_notify_cb(void (*func)(PurplePlugin *, void *)); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Registers a function that will be called when a plugin is unloaded. - * - * @param func The callback function. - * @param data Data to pass to the callback. - * @deprecated Use the plugin-unload signal instead. - */ -void purple_plugins_register_unload_notify_cb(void (*func)(PurplePlugin *, void *), - void *data); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PLUGIN_C_) -/** - * Unregisters a function that would be called when a plugin is unloaded. - * - * @param func The callback function. - * @deprecated Use the plugin-unload signal instead. - */ -void purple_plugins_unregister_unload_notify_cb(void (*func)(PurplePlugin *, - void *)); -#endif - -/** - * Finds a plugin with the specified name. - * - * @param name The plugin name. - * - * @return The plugin if found, or @c NULL if not found. - */ -PurplePlugin *purple_plugins_find_with_name(const char *name); - -/** - * Finds a plugin with the specified filename (filename with a path). - * - * @param filename The plugin filename. - * - * @return The plugin if found, or @c NULL if not found. - */ -PurplePlugin *purple_plugins_find_with_filename(const char *filename); - -/** - * Finds a plugin with the specified basename (filename without a path). - * - * @param basename The plugin basename. - * - * @return The plugin if found, or @c NULL if not found. - */ -PurplePlugin *purple_plugins_find_with_basename(const char *basename); - -/** - * Finds a plugin with the specified plugin ID. - * - * @param id The plugin ID. - * - * @return The plugin if found, or @c NULL if not found. - */ -PurplePlugin *purple_plugins_find_with_id(const char *id); - -/** - * Returns a list of all loaded plugins. - * - * @constreturn A list of all loaded plugins. - */ -GList *purple_plugins_get_loaded(void); - -/** - * Returns a list of all valid protocol plugins. A protocol - * plugin is considered invalid if it does not contain the call - * to the PURPLE_INIT_PLUGIN() macro, or if it was compiled - * against an incompatable API version. - * - * @constreturn A list of all protocol plugins. - */ -GList *purple_plugins_get_protocols(void); - -/** - * Returns a list of all plugins, whether loaded or not. - * - * @constreturn A list of all plugins. - */ -GList *purple_plugins_get_all(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Plugins SubSytem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the plugin subsystem handle. - * - * @return The plugin sybsystem handle. - */ -void *purple_plugins_get_handle(void); - -/** - * Initializes the plugin subsystem - */ -void purple_plugins_init(void); - -/** - * Uninitializes the plugin subsystem - */ -void purple_plugins_uninit(void); - -/*@}*/ - -/** - * Allocates and returns a new PurplePluginAction. - * - * @param label The description of the action to show to the user. - * @param callback The callback to call when the user selects this action. - */ -PurplePluginAction *purple_plugin_action_new(const char* label, void (*callback)(PurplePluginAction *)); - -/** - * Frees a PurplePluginAction - * - * @param action The PurplePluginAction to free. - */ -void purple_plugin_action_free(PurplePluginAction *action); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_PLUGIN_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pluginpref.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pluginpref.h deleted file mode 100644 index 6ce04ad..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pluginpref.h +++ /dev/null @@ -1,269 +0,0 @@ -/** - * @file pluginpref.h Plugin Preferences API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ -#ifndef _PURPLE_PLUGINPREF_H_ -#define _PURPLE_PLUGINPREF_H_ - -typedef struct _PurplePluginPrefFrame PurplePluginPrefFrame; -typedef struct _PurplePluginPref PurplePluginPref; - -/** - * String format for preferences. - */ -typedef enum -{ - PURPLE_STRING_FORMAT_TYPE_NONE = 0, /**< The string is plain text. */ - PURPLE_STRING_FORMAT_TYPE_MULTILINE = 1 << 0, /**< The string can have newlines. */ - PURPLE_STRING_FORMAT_TYPE_HTML = 1 << 1 /**< The string can be in HTML. */ -} PurpleStringFormatType; - -typedef enum { - PURPLE_PLUGIN_PREF_NONE, - PURPLE_PLUGIN_PREF_CHOICE, - PURPLE_PLUGIN_PREF_INFO, /**< no-value label */ - PURPLE_PLUGIN_PREF_STRING_FORMAT /**< The preference has a string value. */ -} PurplePluginPrefType; - -#include -#include "prefs.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Plugin Preference API */ -/**************************************************************************/ -/*@{*/ - -/** - * Create a new plugin preference frame - * - * @return a new PurplePluginPrefFrame - */ -PurplePluginPrefFrame *purple_plugin_pref_frame_new(void); - -/** - * Destroy a plugin preference frame - * - * @param frame The plugin frame to destroy - */ -void purple_plugin_pref_frame_destroy(PurplePluginPrefFrame *frame); - -/** - * Adds a plugin preference to a plugin preference frame - * - * @param frame The plugin frame to add the preference to - * @param pref The preference to add to the frame - */ -void purple_plugin_pref_frame_add(PurplePluginPrefFrame *frame, PurplePluginPref *pref); - -/** - * Get the plugin preferences from a plugin preference frame - * - * @param frame The plugin frame to get the plugin preferences from - * @constreturn a GList of plugin preferences - */ -GList *purple_plugin_pref_frame_get_prefs(PurplePluginPrefFrame *frame); - -/** - * Create a new plugin preference - * - * @return a new PurplePluginPref - */ -PurplePluginPref *purple_plugin_pref_new(void); - -/** - * Create a new plugin preference with name - * - * @param name The name of the pref - * @return a new PurplePluginPref - */ -PurplePluginPref *purple_plugin_pref_new_with_name(const char *name); - -/** - * Create a new plugin preference with label - * - * @param label The label to be displayed - * @return a new PurplePluginPref - */ -PurplePluginPref *purple_plugin_pref_new_with_label(const char *label); - -/** - * Create a new plugin preference with name and label - * - * @param name The name of the pref - * @param label The label to be displayed - * @return a new PurplePluginPref - */ -PurplePluginPref *purple_plugin_pref_new_with_name_and_label(const char *name, const char *label); - -/** - * Destroy a plugin preference - * - * @param pref The preference to destroy - */ -void purple_plugin_pref_destroy(PurplePluginPref *pref); - -/** - * Set a plugin pref name - * - * @param pref The plugin pref - * @param name The name of the pref - */ -void purple_plugin_pref_set_name(PurplePluginPref *pref, const char *name); - -/** - * Get a plugin pref name - * - * @param pref The plugin pref - * @return The name of the pref - */ -const char *purple_plugin_pref_get_name(PurplePluginPref *pref); - -/** - * Set a plugin pref label - * - * @param pref The plugin pref - * @param label The label for the plugin pref - */ -void purple_plugin_pref_set_label(PurplePluginPref *pref, const char *label); - -/** - * Get a plugin pref label - * - * @param pref The plugin pref - * @return The label for the plugin pref - */ -const char *purple_plugin_pref_get_label(PurplePluginPref *pref); - -/** - * Set the bounds for an integer pref - * - * @param pref The plugin pref - * @param min The min value - * @param max The max value - */ -void purple_plugin_pref_set_bounds(PurplePluginPref *pref, int min, int max); - -/** - * Get the bounds for an integer pref - * - * @param pref The plugin pref - * @param min The min value - * @param max The max value - */ -void purple_plugin_pref_get_bounds(PurplePluginPref *pref, int *min, int *max); - -/** - * Set the type of a plugin pref - * - * @param pref The plugin pref - * @param type The type - */ -void purple_plugin_pref_set_type(PurplePluginPref *pref, PurplePluginPrefType type); - -/** - * Get the type of a plugin pref - * - * @param pref The plugin pref - * @return The type - */ -PurplePluginPrefType purple_plugin_pref_get_type(PurplePluginPref *pref); - -/** - * Set the choices for a choices plugin pref - * - * @param pref The plugin pref - * @param label The label for the choice - * @param choice A gpointer of the choice - */ -void purple_plugin_pref_add_choice(PurplePluginPref *pref, const char *label, gpointer choice); - -/** - * Get the choices for a choices plugin pref - * - * @param pref The plugin pref - * @constreturn GList of the choices - */ -GList *purple_plugin_pref_get_choices(PurplePluginPref *pref); - -/** - * Set the max length for a string plugin pref - * - * @param pref The plugin pref - * @param max_length The max length of the string - */ -void purple_plugin_pref_set_max_length(PurplePluginPref *pref, unsigned int max_length); - -/** - * Get the max length for a string plugin pref - * - * @param pref The plugin pref - * @return the max length - */ -unsigned int purple_plugin_pref_get_max_length(PurplePluginPref *pref); - -/** - * Sets the masking of a string plugin pref - * - * @param pref The plugin pref - * @param mask The value to set - */ -void purple_plugin_pref_set_masked(PurplePluginPref *pref, gboolean mask); - -/** - * Gets the masking of a string plugin pref - * - * @param pref The plugin pref - * @return The masking - */ -gboolean purple_plugin_pref_get_masked(PurplePluginPref *pref); - -/** - * Sets the format type for a formattable-string plugin pref. You need to set the - * pref type to PURPLE_PLUGIN_PREF_STRING_FORMAT first before setting the format. - * - * @param pref The plugin pref - * @param format The format of the string - */ -void purple_plugin_pref_set_format_type(PurplePluginPref *pref, PurpleStringFormatType format); - -/** - * Gets the format type of the formattable-string plugin pref. - * - * @param pref The plugin pref - * @return The format of the pref - */ -PurpleStringFormatType purple_plugin_pref_get_format_type(PurplePluginPref *pref); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_PLUGINPREF_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pounce.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pounce.h deleted file mode 100644 index 434fe31..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/pounce.h +++ /dev/null @@ -1,389 +0,0 @@ -/** - * @file pounce.h Buddy Pounce API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_POUNCE_H_ -#define _PURPLE_POUNCE_H_ - -typedef struct _PurplePounce PurplePounce; - -#include -#include "account.h" - -/** - * Events that trigger buddy pounces. - */ -typedef enum -{ - PURPLE_POUNCE_NONE = 0x000, /**< No events. */ - PURPLE_POUNCE_SIGNON = 0x001, /**< The buddy signed on. */ - PURPLE_POUNCE_SIGNOFF = 0x002, /**< The buddy signed off. */ - PURPLE_POUNCE_AWAY = 0x004, /**< The buddy went away. */ - PURPLE_POUNCE_AWAY_RETURN = 0x008, /**< The buddy returned from away. */ - PURPLE_POUNCE_IDLE = 0x010, /**< The buddy became idle. */ - PURPLE_POUNCE_IDLE_RETURN = 0x020, /**< The buddy is no longer idle. */ - PURPLE_POUNCE_TYPING = 0x040, /**< The buddy started typing. */ - PURPLE_POUNCE_TYPED = 0x080, /**< The buddy has entered text. */ - PURPLE_POUNCE_TYPING_STOPPED = 0x100, /**< The buddy stopped typing. */ - PURPLE_POUNCE_MESSAGE_RECEIVED = 0x200 /**< The buddy sent a message */ - -} PurplePounceEvent; - -typedef enum -{ - PURPLE_POUNCE_OPTION_NONE = 0x00, /**< No Option */ - PURPLE_POUNCE_OPTION_AWAY = 0x01 /**< Pounce only when away */ -} PurplePounceOption; - -/** A pounce callback. */ -typedef void (*PurplePounceCb)(PurplePounce *, PurplePounceEvent, void *); - -/** - * A buddy pounce structure. - * - * Buddy pounces are actions triggered by a buddy-related event. For - * example, a sound can be played or an IM window opened when a buddy - * signs on or returns from away. Such responses are handled in the - * UI. The events themselves are done in the core. - */ -struct _PurplePounce -{ - char *ui_type; /**< The type of UI. */ - - PurplePounceEvent events; /**< The event(s) to pounce on. */ - PurplePounceOption options; /**< The pounce options */ - PurpleAccount *pouncer; /**< The user who is pouncing. */ - - char *pouncee; /**< The buddy to pounce on. */ - - GHashTable *actions; /**< The registered actions. */ - - gboolean save; /**< Whether or not the pounce should - be saved after activation. */ - void *data; /**< Pounce-specific data. */ -}; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Buddy Pounce API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new buddy pounce. - * - * @param ui_type The type of UI the pounce is for. - * @param pouncer The account that will pounce. - * @param pouncee The buddy to pounce on. - * @param event The event(s) to pounce on. - * @param option Pounce options. - * - * @return The new buddy pounce structure. - */ -PurplePounce *purple_pounce_new(const char *ui_type, PurpleAccount *pouncer, - const char *pouncee, PurplePounceEvent event, - PurplePounceOption option); - -/** - * Destroys a buddy pounce. - * - * @param pounce The buddy pounce. - */ -void purple_pounce_destroy(PurplePounce *pounce); - -/** - * Destroys all buddy pounces for the account - * - * @param account The account to remove all pounces from. - */ -void purple_pounce_destroy_all_by_account(PurpleAccount *account); - -/** - * Destroys all buddy pounces for a buddy - * - * @param buddy The buddy whose pounces are to be removed - * - * @since 2.8.0 - */ -void purple_pounce_destroy_all_by_buddy(PurpleBuddy *buddy); - -/** - * Sets the events a pounce should watch for. - * - * @param pounce The buddy pounce. - * @param events The events to watch for. - */ -void purple_pounce_set_events(PurplePounce *pounce, PurplePounceEvent events); - -/** - * Sets the options for a pounce. - * - * @param pounce The buddy pounce. - * @param options The options for the pounce. - */ -void purple_pounce_set_options(PurplePounce *pounce, PurplePounceOption options); - -/** - * Sets the account that will do the pouncing. - * - * @param pounce The buddy pounce. - * @param pouncer The account that will pounce. - */ -void purple_pounce_set_pouncer(PurplePounce *pounce, PurpleAccount *pouncer); - -/** - * Sets the buddy a pounce should pounce on. - * - * @param pounce The buddy pounce. - * @param pouncee The buddy to pounce on. - */ -void purple_pounce_set_pouncee(PurplePounce *pounce, const char *pouncee); - -/** - * Sets whether or not the pounce should be saved after execution. - * - * @param pounce The buddy pounce. - * @param save @c TRUE if the pounce should be saved, or @c FALSE otherwise. - */ -void purple_pounce_set_save(PurplePounce *pounce, gboolean save); - -/** - * Registers an action type for the pounce. - * - * @param pounce The buddy pounce. - * @param name The action name. - */ -void purple_pounce_action_register(PurplePounce *pounce, const char *name); - -/** - * Enables or disables an action for a pounce. - * - * @param pounce The buddy pounce. - * @param action The name of the action. - * @param enabled The enabled state. - */ -void purple_pounce_action_set_enabled(PurplePounce *pounce, const char *action, - gboolean enabled); - -/** - * Sets a value for an attribute in an action. - * - * If @a value is @c NULL, the value will be unset. - * - * @param pounce The buddy pounce. - * @param action The action name. - * @param attr The attribute name. - * @param value The value. - */ -void purple_pounce_action_set_attribute(PurplePounce *pounce, const char *action, - const char *attr, const char *value); - -/** - * Sets the pounce-specific data. - * - * @param pounce The buddy pounce. - * @param data Data specific to the pounce. - */ -void purple_pounce_set_data(PurplePounce *pounce, void *data); - -/** - * Returns the events a pounce should watch for. - * - * @param pounce The buddy pounce. - * - * @return The events the pounce is watching for. - */ -PurplePounceEvent purple_pounce_get_events(const PurplePounce *pounce); - -/** - * Returns the options for a pounce. - * - * @param pounce The buddy pounce. - * - * @return The options for the pounce. - */ -PurplePounceOption purple_pounce_get_options(const PurplePounce *pounce); - -/** - * Returns the account that will do the pouncing. - * - * @param pounce The buddy pounce. - * - * @return The account that will pounce. - */ -PurpleAccount *purple_pounce_get_pouncer(const PurplePounce *pounce); - -/** - * Returns the buddy a pounce should pounce on. - * - * @param pounce The buddy pounce. - * - * @return The buddy to pounce on. - */ -const char *purple_pounce_get_pouncee(const PurplePounce *pounce); - -/** - * Returns whether or not the pounce should save after execution. - * - * @param pounce The buddy pounce. - * - * @return @c TRUE if the pounce should be saved after execution, or - * @c FALSE otherwise. - */ -gboolean purple_pounce_get_save(const PurplePounce *pounce); - -/** - * Returns whether or not an action is enabled. - * - * @param pounce The buddy pounce. - * @param action The action name. - * - * @return @c TRUE if the action is enabled, or @c FALSE otherwise. - */ -gboolean purple_pounce_action_is_enabled(const PurplePounce *pounce, - const char *action); - -/** - * Returns the value for an attribute in an action. - * - * @param pounce The buddy pounce. - * @param action The action name. - * @param attr The attribute name. - * - * @return The attribute value, if it exists, or @c NULL. - */ -const char *purple_pounce_action_get_attribute(const PurplePounce *pounce, - const char *action, - const char *attr); - -/** - * Returns the pounce-specific data. - * - * @param pounce The buddy pounce. - * - * @return The data specific to a buddy pounce. - */ -void *purple_pounce_get_data(const PurplePounce *pounce); - -/** - * Executes a pounce with the specified pouncer, pouncee, and event type. - * - * @param pouncer The account that will do the pouncing. - * @param pouncee The buddy that is being pounced. - * @param events The events that triggered the pounce. - */ -void purple_pounce_execute(const PurpleAccount *pouncer, const char *pouncee, - PurplePounceEvent events); - -/*@}*/ - -/**************************************************************************/ -/** @name Buddy Pounce Subsystem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Finds a pounce with the specified event(s) and buddy. - * - * @param pouncer The account to match against. - * @param pouncee The buddy to match against. - * @param events The event(s) to match against. - * - * @return The pounce if found, or @c NULL otherwise. - */ -PurplePounce *purple_find_pounce(const PurpleAccount *pouncer, - const char *pouncee, PurplePounceEvent events); - - -/** - * Loads the pounces. - * - * @return @c TRUE if the pounces could be loaded. - */ -gboolean purple_pounces_load(void); - -/** - * Registers a pounce handler for a UI. - * - * @param ui The UI name. - * @param cb The callback function. - * @param new_pounce The function called when a pounce is created. - * @param free_pounce The function called when a pounce is freed. - */ -void purple_pounces_register_handler(const char *ui, PurplePounceCb cb, - void (*new_pounce)(PurplePounce *pounce), - void (*free_pounce)(PurplePounce *pounce)); - -/** - * Unregisters a pounce handle for a UI. - * - * @param ui The UI name. - */ -void purple_pounces_unregister_handler(const char *ui); - -/** - * Returns a list of all registered buddy pounces. - * - * @constreturn The list of buddy pounces. - */ -GList *purple_pounces_get_all(void); - -/** - * Returns a list of registered buddy pounces for the ui-type. - * - * @param ui The ID of the UI using the core. - * - * @return The list of buddy pounces. The list should be freed by - * the caller when it's no longer used. - * @since 2.1.0 - */ -GList *purple_pounces_get_all_for_ui(const char *ui); - -/** - * Returns the buddy pounce subsystem handle. - * - * @return The subsystem handle. - */ -void *purple_pounces_get_handle(void); - -/** - * Initializes the pounces subsystem. - */ -void purple_pounces_init(void); - -/** - * Uninitializes the pounces subsystem. - */ -void purple_pounces_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_POUNCE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prefs.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prefs.h deleted file mode 100644 index 2d02f3f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prefs.h +++ /dev/null @@ -1,371 +0,0 @@ -/** - * @file prefs.h Prefs API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ -#ifndef _PURPLE_PREFS_H_ -#define _PURPLE_PREFS_H_ - -#include - -/** - * Preference data types. - */ -typedef enum _PurplePrefType -{ - PURPLE_PREF_NONE, /**< No type. */ - PURPLE_PREF_BOOLEAN, /**< Boolean. */ - PURPLE_PREF_INT, /**< Integer. */ - PURPLE_PREF_STRING, /**< String. */ - PURPLE_PREF_STRING_LIST, /**< List of strings. */ - PURPLE_PREF_PATH, /**< Path. */ - PURPLE_PREF_PATH_LIST /**< List of paths. */ - -} PurplePrefType; - -/** - * The type of callbacks for preference changes. - * - * @param name the name of the preference which has changed. - * @param type the type of the preferenced named @a name - * @param val the new value of the preferencs; should be cast to the correct - * type. For instance, to recover the value of a #PURPLE_PREF_INT - * preference, use GPOINTER_TO_INT(val). Alternatively, - * just call purple_prefs_get_int(), purple_prefs_get_string_list() - * etc. - * @param data Arbitrary data specified when the callback was connected with - * purple_prefs_connect_callback(). - * - * @see purple_prefs_connect_callback() - */ -typedef void (*PurplePrefCallback) (const char *name, PurplePrefType type, - gconstpointer val, gpointer data); - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Prefs API - Preferences are named according to a directory-like structure. - Example: "/plugins/core/potato/is_from_idaho" (probably a boolean) */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the prefs subsystem handle. - * - * @return The prefs subsystem handle. - */ -void *purple_prefs_get_handle(void); - -/** - * Initialize core prefs - */ -void purple_prefs_init(void); - -/** - * Uninitializes the prefs subsystem. - */ -void purple_prefs_uninit(void); - -/** - * Add a new typeless pref. - * - * @param name The name of the pref - */ -void purple_prefs_add_none(const char *name); - -/** - * Add a new boolean pref. - * - * @param name The name of the pref - * @param value The initial value to set - */ -void purple_prefs_add_bool(const char *name, gboolean value); - -/** - * Add a new integer pref. - * - * @param name The name of the pref - * @param value The initial value to set - */ -void purple_prefs_add_int(const char *name, int value); - -/** - * Add a new string pref. - * - * @param name The name of the pref - * @param value The initial value to set - */ -void purple_prefs_add_string(const char *name, const char *value); - -/** - * Add a new string list pref. - * - * @param name The name of the pref - * @param value The initial value to set - * @note This function takes a copy of the strings in the value list. The list - * itself and original copies of the strings are up to the caller to - * free. - */ -void purple_prefs_add_string_list(const char *name, GList *value); - -/** - * Add a new path pref. - * - * @param name The name of the pref - * @param value The initial value to set - */ -void purple_prefs_add_path(const char *name, const char *value); - -/** - * Add a new path list pref. - * - * @param name The name of the pref - * @param value The initial value to set - * @note This function takes a copy of the strings in the value list. The list - * itself and original copies of the strings are up to the caller to - * free. - */ -void purple_prefs_add_path_list(const char *name, GList *value); - - -/** - * Remove a pref. - * - * @param name The name of the pref - */ -void purple_prefs_remove(const char *name); - -/** - * Rename a pref - * - * @param oldname The old name of the pref - * @param newname The new name for the pref - */ -void purple_prefs_rename(const char *oldname, const char *newname); - -/** - * Rename a boolean pref, toggling it's value - * - * @param oldname The old name of the pref - * @param newname The new name for the pref - */ -void purple_prefs_rename_boolean_toggle(const char *oldname, const char *newname); - -/** - * Remove all prefs. - */ -void purple_prefs_destroy(void); - -/** - * Set raw pref value - * - * @param name The name of the pref - * @param value The value to set - * - * @deprecated We're not really sure what purpose this function serves, so it - * will be removed in 3.0.0. Preferences values set using this - * function aren't serialized to prefs.xml, which could be - * misleading. There is also no purple_prefs_get_generic, which - * means that if you can't really get the value (other in a - * connected callback). If you think you have a use for this then - * please let us know. - */ -/* TODO: When this is removed, also remove struct purple_pref->value.generic */ -void purple_prefs_set_generic(const char *name, gpointer value); - -/** - * Set boolean pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_bool(const char *name, gboolean value); - -/** - * Set integer pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_int(const char *name, int value); - -/** - * Set string pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_string(const char *name, const char *value); - -/** - * Set string list pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_string_list(const char *name, GList *value); - -/** - * Set path pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_path(const char *name, const char *value); - -/** - * Set path list pref value - * - * @param name The name of the pref - * @param value The value to set - */ -void purple_prefs_set_path_list(const char *name, GList *value); - - -/** - * Check if a pref exists - * - * @param name The name of the pref - * @return TRUE if the pref exists. Otherwise FALSE. - */ -gboolean purple_prefs_exists(const char *name); - -/** - * Get pref type - * - * @param name The name of the pref - * @return The type of the pref - */ -PurplePrefType purple_prefs_get_type(const char *name); - -/** - * Get boolean pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -gboolean purple_prefs_get_bool(const char *name); - -/** - * Get integer pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -int purple_prefs_get_int(const char *name); - -/** - * Get string pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -const char *purple_prefs_get_string(const char *name); - -/** - * Get string list pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -GList *purple_prefs_get_string_list(const char *name); - -/** - * Get path pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -const char *purple_prefs_get_path(const char *name); - -/** - * Get path list pref value - * - * @param name The name of the pref - * @return The value of the pref - */ -GList *purple_prefs_get_path_list(const char *name); - -/** - * Returns a list of children for a pref - * - * @param name The parent pref - * @return A list of newly allocated strings denoting the names of the children. - * Returns @c NULL if there are no children or if pref doesn't exist. - * The caller must free all the strings and the list. - * - * @since 2.1.0 - */ -GList *purple_prefs_get_children_names(const char *name); - -/** - * Add a callback to a pref (and its children) - * - * @param handle The handle of the receiver. - * @param name The name of the preference - * @param cb The callback function - * @param data The data to pass to the callback function. - * - * @return An id to disconnect the callback - * - * @see purple_prefs_disconnect_callback - */ -guint purple_prefs_connect_callback(void *handle, const char *name, PurplePrefCallback cb, - gpointer data); - -/** - * Remove a callback to a pref - */ -void purple_prefs_disconnect_callback(guint callback_id); - -/** - * Remove all pref callbacks by handle - */ -void purple_prefs_disconnect_by_handle(void *handle); - -/** - * Trigger callbacks as if the pref changed - */ -void purple_prefs_trigger_callback(const char *name); - -/** - * Read preferences - */ -gboolean purple_prefs_load(void); - -/** - * Rename legacy prefs and delete some that no longer exist. - */ -void purple_prefs_update_old(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_PREFS_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/presence.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/presence.h deleted file mode 100644 index e833092..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/presence.h +++ /dev/null @@ -1,103 +0,0 @@ -/** - * @file presence.h Presence - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_PRESENCE_H_ -#define PURPLE_JABBER_PRESENCE_H_ - -typedef enum { - JABBER_PRESENCE_ERROR = -2, - JABBER_PRESENCE_PROBE = -1, - JABBER_PRESENCE_AVAILABLE, - JABBER_PRESENCE_UNAVAILABLE, - JABBER_PRESENCE_SUBSCRIBE, - JABBER_PRESENCE_SUBSCRIBED, - JABBER_PRESENCE_UNSUBSCRIBE, - JABBER_PRESENCE_UNSUBSCRIBED -} JabberPresenceType; - -typedef struct _JabberPresenceChatInfo JabberPresenceChatInfo; -typedef struct _JabberPresence JabberPresence; - -#include "buddy.h" -#include "chat.h" -#include "jabber.h" -#include "jutil.h" -#include "xmlnode.h" - -struct _JabberPresenceChatInfo { - GSList *codes; - xmlnode *item; -}; - -struct _JabberPresence { - JabberPresenceType type; - JabberID *jid_from; - const char *from; - const char *to; - const char *id; - - JabberBuddy *jb; - JabberChat *chat; - JabberPresenceChatInfo chat_info; - xmlnode *caps; /* TODO: Temporary, see presence.c:parse_caps */ - - JabberBuddyState state; - gchar *status; - int priority; - - char *vcard_avatar_hash; - char *nickname; - - gboolean delayed; - time_t sent; - int idle; -}; - -typedef void (JabberPresenceHandler)(JabberStream *js, JabberPresence *presence, - xmlnode *child); -void jabber_presence_register_handler(const char *node, const char *xmlns, - JabberPresenceHandler *handler); - -void jabber_presence_init(void); -void jabber_presence_uninit(void); - -void jabber_set_status(PurpleAccount *account, PurpleStatus *status); - -/** - * Send a full presence stanza. - * - * @param js A JabberStream object. - * @param force Force sending the presence stanza, irrespective of whether - * the contents seem to have changed. - */ -void jabber_presence_send(JabberStream *js, gboolean force); - -xmlnode *jabber_presence_create(JabberBuddyState state, const char *msg, int priority); /* DEPRECATED */ -xmlnode *jabber_presence_create_js(JabberStream *js, JabberBuddyState state, const char *msg, int priority); -void jabber_presence_parse(JabberStream *js, xmlnode *packet); -void jabber_presence_subscription_set(JabberStream *js, const char *who, - const char *type); -void jabber_presence_fake_to_self(JabberStream *js, PurpleStatus *status); -void purple_status_to_jabber(const PurpleStatus *status, JabberBuddyState *state, char **msg, int *priority); - -#endif /* PURPLE_JABBER_PRESENCE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/privacy.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/privacy.h deleted file mode 100644 index 0250541..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/privacy.h +++ /dev/null @@ -1,194 +0,0 @@ -/** - * @file privacy.h Privacy API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_PRIVACY_H_ -#define _PURPLE_PRIVACY_H_ - -/** - * Privacy data types. - */ -typedef enum _PurplePrivacyType -{ - PURPLE_PRIVACY_ALLOW_ALL = 1, - PURPLE_PRIVACY_DENY_ALL, - PURPLE_PRIVACY_ALLOW_USERS, - PURPLE_PRIVACY_DENY_USERS, - PURPLE_PRIVACY_ALLOW_BUDDYLIST -} PurplePrivacyType; - -#include "account.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Privacy core/UI operations. - */ -typedef struct -{ - void (*permit_added)(PurpleAccount *account, const char *name); - void (*permit_removed)(PurpleAccount *account, const char *name); - void (*deny_added)(PurpleAccount *account, const char *name); - void (*deny_removed)(PurpleAccount *account, const char *name); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurplePrivacyUiOps; - -/** - * Adds a user to the account's permit list. - * - * @param account The account. - * @param name The name of the user to add to the list. - * @param local_only If TRUE, only the local list is updated, and not - * the server. - * - * @return TRUE if the user was added successfully, or @c FALSE otherwise. - */ -gboolean purple_privacy_permit_add(PurpleAccount *account, const char *name, - gboolean local_only); - -/** - * Removes a user from the account's permit list. - * - * @param account The account. - * @param name The name of the user to add to the list. - * @param local_only If TRUE, only the local list is updated, and not - * the server. - * - * @return TRUE if the user was removed successfully, or @c FALSE otherwise. - */ -gboolean purple_privacy_permit_remove(PurpleAccount *account, const char *name, - gboolean local_only); - -/** - * Adds a user to the account's deny list. - * - * @param account The account. - * @param name The name of the user to add to the list. - * @param local_only If TRUE, only the local list is updated, and not - * the server. - * - * @return TRUE if the user was added successfully, or @c FALSE otherwise. - */ -gboolean purple_privacy_deny_add(PurpleAccount *account, const char *name, - gboolean local_only); - -/** - * Removes a user from the account's deny list. - * - * @param account The account. - * @param name The name of the user to add to the list. - * @param local_only If TRUE, only the local list is updated, and not - * the server. - * - * @return TRUE if the user was removed successfully, or @c FALSE otherwise. - */ -gboolean purple_privacy_deny_remove(PurpleAccount *account, const char *name, - gboolean local_only); - -/** - * Allow a user to send messages. If current privacy setting for the account is: - * PURPLE_PRIVACY_ALLOW_USERS: The user is added to the allow-list. - * PURPLE_PRIVACY_DENY_USERS : The user is removed from the deny-list. - * PURPLE_PRIVACY_ALLOW_ALL : No changes made. - * PURPLE_PRIVACY_DENY_ALL : The privacy setting is changed to - * PURPLE_PRIVACY_ALLOW_USERS and the user - * is added to the allow-list. - * PURPLE_PRIVACY_ALLOW_BUDDYLIST: No changes made if the user is already in - * the buddy-list. Otherwise the setting is - * changed to PURPLE_PRIVACY_ALLOW_USERS, all the - * buddies are added to the allow-list, and the - * user is also added to the allow-list. - * - * @param account The account. - * @param who The name of the user. - * @param local Whether the change is local-only. - * @param restore Should the previous allow/deny list be restored if the - * privacy setting is changed. - */ -void purple_privacy_allow(PurpleAccount *account, const char *who, gboolean local, - gboolean restore); - -/** - * Block messages from a user. If current privacy setting for the account is: - * PURPLE_PRIVACY_ALLOW_USERS: The user is removed from the allow-list. - * PURPLE_PRIVACY_DENY_USERS : The user is added to the deny-list. - * PURPLE_PRIVACY_DENY_ALL : No changes made. - * PURPLE_PRIVACY_ALLOW_ALL : The privacy setting is changed to - * PURPLE_PRIVACY_DENY_USERS and the user is - * added to the deny-list. - * PURPLE_PRIVACY_ALLOW_BUDDYLIST: If the user is not in the buddy-list, - * then no changes made. Otherwise, the setting - * is changed to PURPLE_PRIVACY_ALLOW_USERS, all - * the buddies are added to the allow-list, and - * this user is removed from the list. - * - * @param account The account. - * @param who The name of the user. - * @param local Whether the change is local-only. - * @param restore Should the previous allow/deny list be restored if the - * privacy setting is changed. - */ -void purple_privacy_deny(PurpleAccount *account, const char *who, gboolean local, - gboolean restore); - -/** - * Check the privacy-setting for a user. - * - * @param account The account. - * @param who The name of the user. - * - * @return @c FALSE if the specified account's privacy settings block the user or @c TRUE otherwise. The meaning of "block" is protocol-dependent and generally relates to status and/or sending of messages. - */ -gboolean purple_privacy_check(PurpleAccount *account, const char *who); - -/** - * Sets the UI operations structure for the privacy subsystem. - * - * @param ops The UI operations structure. - */ -void purple_privacy_set_ui_ops(PurplePrivacyUiOps *ops); - -/** - * Returns the UI operations structure for the privacy subsystem. - * - * @return The UI operations structure. - */ -PurplePrivacyUiOps *purple_privacy_get_ui_ops(void); - -/** - * Initializes the privacy subsystem. - */ -void purple_privacy_init(void); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_PRIVACY_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/proxy.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/proxy.h deleted file mode 100644 index cf91ee8..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/proxy.h +++ /dev/null @@ -1,372 +0,0 @@ -/** - * @file proxy.h Proxy API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_PROXY_H_ -#define _PURPLE_PROXY_H_ - -#include -#include "eventloop.h" - -/** - * A type of proxy connection. - */ -typedef enum -{ - PURPLE_PROXY_USE_GLOBAL = -1, /**< Use the global proxy information. */ - PURPLE_PROXY_NONE = 0, /**< No proxy. */ - PURPLE_PROXY_HTTP, /**< HTTP proxy. */ - PURPLE_PROXY_SOCKS4, /**< SOCKS 4 proxy. */ - PURPLE_PROXY_SOCKS5, /**< SOCKS 5 proxy. */ - PURPLE_PROXY_USE_ENVVAR, /**< Use environmental settings. */ - PURPLE_PROXY_TOR /**< Use a Tor proxy (SOCKS 5 really) */ - -} PurpleProxyType; - -/** - * Information on proxy settings. - */ -typedef struct -{ - PurpleProxyType type; /**< The proxy type. */ - - char *host; /**< The host. */ - int port; /**< The port number. */ - char *username; /**< The username. */ - char *password; /**< The password. */ - -} PurpleProxyInfo; - -typedef struct _PurpleProxyConnectData PurpleProxyConnectData; - -typedef void (*PurpleProxyConnectFunction)(gpointer data, gint source, const gchar *error_message); - - -#include "account.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Proxy structure API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a proxy information structure. - * - * @return The proxy information structure. - */ -PurpleProxyInfo *purple_proxy_info_new(void); - -/** - * Destroys a proxy information structure. - * - * @param info The proxy information structure to destroy. - */ -void purple_proxy_info_destroy(PurpleProxyInfo *info); - -/** - * Sets the type of proxy. - * - * @param info The proxy information. - * @param type The proxy type. - */ -void purple_proxy_info_set_type(PurpleProxyInfo *info, PurpleProxyType type); - -/** - * Sets the proxy host. - * - * @param info The proxy information. - * @param host The host. - */ -void purple_proxy_info_set_host(PurpleProxyInfo *info, const char *host); - -/** - * Sets the proxy port. - * - * @param info The proxy information. - * @param port The port. - */ -void purple_proxy_info_set_port(PurpleProxyInfo *info, int port); - -/** - * Sets the proxy username. - * - * @param info The proxy information. - * @param username The username. - */ -void purple_proxy_info_set_username(PurpleProxyInfo *info, const char *username); - -/** - * Sets the proxy password. - * - * @param info The proxy information. - * @param password The password. - */ -void purple_proxy_info_set_password(PurpleProxyInfo *info, const char *password); - -/** - * Returns the proxy's type. - * - * @param info The proxy information. - * - * @return The type. - */ -PurpleProxyType purple_proxy_info_get_type(const PurpleProxyInfo *info); - -/** - * Returns the proxy's host. - * - * @param info The proxy information. - * - * @return The host. - */ -const char *purple_proxy_info_get_host(const PurpleProxyInfo *info); - -/** - * Returns the proxy's port. - * - * @param info The proxy information. - * - * @return The port. - */ -int purple_proxy_info_get_port(const PurpleProxyInfo *info); - -/** - * Returns the proxy's username. - * - * @param info The proxy information. - * - * @return The username. - */ -const char *purple_proxy_info_get_username(const PurpleProxyInfo *info); - -/** - * Returns the proxy's password. - * - * @param info The proxy information. - * - * @return The password. - */ -const char *purple_proxy_info_get_password(const PurpleProxyInfo *info); - -/*@}*/ - -/**************************************************************************/ -/** @name Global Proxy API */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns purple's global proxy information. - * - * @return The global proxy information. - */ -PurpleProxyInfo *purple_global_proxy_get_info(void); - -/** - * Set purple's global proxy information. - * - * @param info The proxy information. - * @since 2.6.0 - */ -void purple_global_proxy_set_info(PurpleProxyInfo *info); - -/*@}*/ - -/**************************************************************************/ -/** @name Proxy API */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the proxy subsystem handle. - * - * @return The proxy subsystem handle. - */ -void *purple_proxy_get_handle(void); - -/** - * Initializes the proxy subsystem. - */ -void purple_proxy_init(void); - -/** - * Uninitializes the proxy subsystem. - */ -void purple_proxy_uninit(void); - -/** - * Returns configuration of a proxy. - * - * @param account The account for which the configuration is needed. - * - * @return The configuration of a proxy. - */ -PurpleProxyInfo *purple_proxy_get_setup(PurpleAccount *account); - -/** - * Makes a connection to the specified host and port. Note that this - * function name can be misleading--although it is called "proxy - * connect," it is used for establishing any outgoing TCP connection, - * whether through a proxy or not. - * - * @param handle A handle that should be associated with this - * connection attempt. The handle can be used - * to cancel the connection attempt using the - * purple_proxy_connect_cancel_with_handle() - * function. - * @param account The account making the connection. - * @param host The destination host. - * @param port The destination port. - * @param connect_cb The function to call when the connection is - * established. If the connection failed then - * fd will be -1 and error message will be set - * to something descriptive (hopefully). - * @param data User-defined data. - * - * @return NULL if there was an error, or a reference to an - * opaque data structure that can be used to cancel - * the pending connection, if needed. - */ -PurpleProxyConnectData *purple_proxy_connect(void *handle, - PurpleAccount *account, - const char *host, int port, - PurpleProxyConnectFunction connect_cb, gpointer data); - -/** - * Makes a connection to the specified host and port. Note that this - * function name can be misleading--although it is called "proxy - * connect," it is used for establishing any outgoing UDP connection, - * whether through a proxy or not. - * - * @param handle A handle that should be associated with this - * connection attempt. The handle can be used - * to cancel the connection attempt using the - * purple_proxy_connect_cancel_with_handle() - * function. - * @param account The account making the connection. - * @param host The destination host. - * @param port The destination port. - * @param connect_cb The function to call when the connection is - * established. If the connection failed then - * fd will be -1 and error message will be set - * to something descriptive (hopefully). - * @param data User-defined data. - * - * @return NULL if there was an error, or a reference to an - * opaque data structure that can be used to cancel - * the pending connection, if needed. - */ -PurpleProxyConnectData *purple_proxy_connect_udp(void *handle, - PurpleAccount *account, - const char *host, int port, - PurpleProxyConnectFunction connect_cb, gpointer data); - -/** - * Makes a connection through a SOCKS5 proxy. - * - * Note that if the account that is making the connection uses a proxy, this - * connection to a SOCKS5 proxy will be made through the account proxy. - * - * @param handle A handle that should be associated with this - * connection attempt. The handle can be used - * to cancel the connection attempt using the - * purple_proxy_connect_cancel_with_handle() - * function. - * @param account The account making the connection. - * @param gpi The PurpleProxyInfo specifying the proxy settings - * @param host The destination host. - * @param port The destination port. - * @param connect_cb The function to call when the connection is - * established. If the connection failed then - * fd will be -1 and error message will be set - * to something descriptive (hopefully). - * @param data User-defined data. - * - * @return NULL if there was an error, or a reference to an - * opaque data structure that can be used to cancel - * the pending connection, if needed. - */ -PurpleProxyConnectData *purple_proxy_connect_socks5_account(void *handle, - PurpleAccount *account, PurpleProxyInfo *gpi, - const char *host, int port, - PurpleProxyConnectFunction connect_cb, gpointer data); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_PROXY_C_) -/** - * Makes a connection through a SOCKS5 proxy. - * - * @param handle A handle that should be associated with this - * connection attempt. The handle can be used - * to cancel the connection attempt using the - * purple_proxy_connect_cancel_with_handle() - * function. - * @param gpi The PurpleProxyInfo specifying the proxy settings - * @param host The destination host. - * @param port The destination port. - * @param connect_cb The function to call when the connection is - * established. If the connection failed then - * fd will be -1 and error message will be set - * to something descriptive (hopefully). - * @param data User-defined data. - * - * @return NULL if there was an error, or a reference to an - * opaque data structure that can be used to cancel - * the pending connection, if needed. - * @deprecated Use purple_proxy_connect_socks5_account instead - */ -PurpleProxyConnectData *purple_proxy_connect_socks5(void *handle, - PurpleProxyInfo *gpi, - const char *host, int port, - PurpleProxyConnectFunction connect_cb, gpointer data); -#endif - -/** - * Cancel an in-progress connection attempt. This should be called - * by the PRPL if the user disables an account while it is still - * performing the initial sign on. Or when establishing a file - * transfer, if we attempt to connect to a remote user but they - * are behind a firewall then the PRPL can cancel the connection - * attempt early rather than just letting the OS's TCP/IP stack - * time-out the connection. - */ -void purple_proxy_connect_cancel(PurpleProxyConnectData *connect_data); - -/* - * Closes all proxy connections registered with the specified handle. - * - * @param handle The handle. - */ -void purple_proxy_connect_cancel_with_handle(void *handle); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_PROXY_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prpl.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prpl.h deleted file mode 100644 index 51e8575..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/prpl.h +++ /dev/null @@ -1,1015 +0,0 @@ -/** - * @file prpl.h Protocol Plugin functions - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -/* this file should be all that prpls need to include. therefore, by including - * this file, they should get glib, proxy, purple_connection, prpl, etc. */ - -#ifndef _PURPLE_PRPL_H_ -#define _PURPLE_PRPL_H_ - -typedef struct _PurplePluginProtocolInfo PurplePluginProtocolInfo; -/** @copydoc _PurpleAttentionType */ -typedef struct _PurpleAttentionType PurpleAttentionType; - -/**************************************************************************/ -/** @name Basic Protocol Information */ -/**************************************************************************/ - -typedef enum { - PURPLE_ICON_SCALE_DISPLAY = 0x01, /**< We scale the icon when we display it */ - PURPLE_ICON_SCALE_SEND = 0x02 /**< We scale the icon before we send it to the server */ -} PurpleIconScaleRules; - - -/** - * A description of a Buddy Icon specification. This tells Purple what kind of image file - * it should give this prpl, and what kind of image file it should expect back. - * Dimensions less than 1 should be ignored and the image not scaled. - */ -typedef struct _PurpleBuddyIconSpec PurpleBuddyIconSpec; - -/** - * A description of a file transfer thumbnail specification. - * This tells the UI if and what image formats the prpl support for file - * transfer thumbnails. - */ -typedef struct _PurpleThumbnailSpec PurpleThumbnailSpec; - -/** - * This \#define exists just to make it easier to fill out the buddy icon - * field in the prpl info struct for protocols that couldn't care less. - */ -#define NO_BUDDY_ICONS {NULL, 0, 0, 0, 0, 0, 0} - -#ifdef HAVE_UNISTD_H -#include -#endif - -#include "blist.h" -#include "conversation.h" -#include "ft.h" -#include "imgstore.h" -#include "media.h" -#include "notify.h" -#include "proxy.h" -#include "plugin.h" -#include "roomlist.h" -#include "status.h" -#include "whiteboard.h" - - -/** @copydoc PurpleBuddyIconSpec */ -struct _PurpleBuddyIconSpec { - /** This is a comma-delimited list of image formats or @c NULL if icons - * are not supported. Neither the core nor the prpl will actually - * check to see if the data it's given matches this; it's entirely up - * to the UI to do what it wants - */ - char *format; - - int min_width; /**< Minimum width of this icon */ - int min_height; /**< Minimum height of this icon */ - int max_width; /**< Maximum width of this icon */ - int max_height; /**< Maximum height of this icon */ - size_t max_filesize; /**< Maximum size in bytes */ - PurpleIconScaleRules scale_rules; /**< How to stretch this icon */ -}; - -/** Represents an entry containing information that must be supplied by the - * user when joining a chat. - */ -struct proto_chat_entry { - const char *label; /**< User-friendly name of the entry */ - const char *identifier; /**< Used by the PRPL to identify the option */ - gboolean required; /**< True if it's required */ - gboolean is_int; /**< True if the entry expects an integer */ - int min; /**< Minimum value in case of integer */ - int max; /**< Maximum value in case of integer */ - gboolean secret; /**< True if the entry is secret (password) */ -}; - -/** Represents "nudges" and "buzzes" that you may send to a buddy to attract - * their attention (or vice-versa). - */ -struct _PurpleAttentionType -{ - const char *name; /**< Shown in GUI elements */ - const char *incoming_description; /**< Shown when sent */ - const char *outgoing_description; /**< Shown when receied */ - const char *icon_name; /**< Icon to display (optional) */ - const char *unlocalized_name; /**< Unlocalized name for UIs needing it */ - - /* Reserved fields for future purposes */ - gpointer _reserved2; - gpointer _reserved3; - gpointer _reserved4; -}; - -/** - * Protocol options - * - * These should all be stuff that some plugins can do and others can't. - */ -typedef enum -{ - /** - * User names are unique to a chat and are not shared between rooms. - * - * XMPP lets you choose what name you want in chats, so it shouldn't - * be pulling the aliases from the buddy list for the chat list; - * it gets annoying. - */ - OPT_PROTO_UNIQUE_CHATNAME = 0x00000004, - - /** - * Chat rooms have topics. - * - * IRC and XMPP support this. - */ - OPT_PROTO_CHAT_TOPIC = 0x00000008, - - /** - * Don't require passwords for sign-in. - * - * Zephyr doesn't require passwords, so there's no - * need for a password prompt. - */ - OPT_PROTO_NO_PASSWORD = 0x00000010, - - /** - * Notify on new mail. - * - * MSN and Yahoo notify you when you have new mail. - */ - OPT_PROTO_MAIL_CHECK = 0x00000020, - - /** - * Images in IMs. - * - * Oscar lets you send images in direct IMs. - */ - OPT_PROTO_IM_IMAGE = 0x00000040, - - /** - * Allow passwords to be optional. - * - * Passwords in IRC are optional, and are needed for certain - * functionality. - */ - OPT_PROTO_PASSWORD_OPTIONAL = 0x00000080, - - /** - * Allows font size to be specified in sane point size - * - * Probably just XMPP and Y!M - */ - OPT_PROTO_USE_POINTSIZE = 0x00000100, - - /** - * Set the Register button active even when the username has not - * been specified. - * - * Gadu-Gadu doesn't need a username to register new account (because - * usernames are assigned by the server). - */ - OPT_PROTO_REGISTER_NOSCREENNAME = 0x00000200, - - /** - * Indicates that slash commands are native to this protocol. - * Used as a hint that unknown commands should not be sent as messages. - * @since 2.1.0 - */ - OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400, - - /** - * Indicates that this protocol supports sending a user-supplied message - * along with an invitation. - * @since 2.8.0 - */ - OPT_PROTO_INVITE_MESSAGE = 0x00000800 - -} PurpleProtocolOptions; - -/** - * A protocol plugin information structure. - * - * Every protocol plugin initializes this structure. It is the gateway - * between purple and the protocol plugin. Many of these callbacks can be - * NULL. If a callback must be implemented, it has a comment indicating so. - */ -struct _PurplePluginProtocolInfo -{ - PurpleProtocolOptions options; /**< Protocol options. */ - - GList *user_splits; /**< A GList of PurpleAccountUserSplit */ - GList *protocol_options; /**< A GList of PurpleAccountOption */ - - PurpleBuddyIconSpec icon_spec; /**< The icon spec. */ - - /** - * Returns the base icon name for the given buddy and account. - * If buddy is NULL and the account is non-NULL, it will return the - * name to use for the account's icon. If both are NULL, it will - * return the name to use for the protocol's icon. - * - * This must be implemented. - */ - const char *(*list_icon)(PurpleAccount *account, PurpleBuddy *buddy); - - /** - * Fills the four char**'s with string identifiers for "emblems" - * that the UI will interpret and display as relevant - */ - const char *(*list_emblem)(PurpleBuddy *buddy); - - /** - * Gets a short string representing this buddy's status. This will - * be shown on the buddy list. - */ - char *(*status_text)(PurpleBuddy *buddy); - - /** - * Allows the prpl to add text to a buddy's tooltip. - */ - void (*tooltip_text)(PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gboolean full); - - /** - * Returns a list of #PurpleStatusType which exist for this account; - * this must be implemented, and must add at least the offline and - * online states. - */ - GList *(*status_types)(PurpleAccount *account); - - /** - * Returns a list of #PurpleMenuAction structs, which represent extra - * actions to be shown in (for example) the right-click menu for @a - * node. - */ - GList *(*blist_node_menu)(PurpleBlistNode *node); - - /** - * Returns a list of #proto_chat_entry structs, which represent - * information required by the PRPL to join a chat. libpurple will - * call join_chat along with the information filled by the user. - * - * @return A list of #proto_chat_entry structs - */ - GList *(*chat_info)(PurpleConnection *); - - /** - * Returns a hashtable which maps #proto_chat_entry struct identifiers - * to default options as strings based on chat_name. The resulting - * hashtable should be created with g_hash_table_new_full(g_str_hash, - * g_str_equal, NULL, g_free);. Use #get_chat_name if you instead need - * to extract a chat name from a hashtable. - * - * @param chat_name The chat name to be turned into components - * @return Hashtable containing the information extracted from chat_name - */ - GHashTable *(*chat_info_defaults)(PurpleConnection *, const char *chat_name); - - /* All the server-related functions */ - - /** This must be implemented. */ - void (*login)(PurpleAccount *); - - /** This must be implemented. */ - void (*close)(PurpleConnection *); - - /** - * This PRPL function should return a positive value on success. - * If the message is too big to be sent, return -E2BIG. If - * the account is not connected, return -ENOTCONN. If the - * PRPL is unable to send the message for another reason, return - * some other negative value. You can use one of the valid - * errno values, or just big something. If the message should - * not be echoed to the conversation window, return 0. - */ - int (*send_im)(PurpleConnection *, const char *who, - const char *message, - PurpleMessageFlags flags); - - void (*set_info)(PurpleConnection *, const char *info); - - /** - * @return If this protocol requires the PURPLE_TYPING message to - * be sent repeatedly to signify that the user is still - * typing, then the PRPL should return the number of - * seconds to wait before sending a subsequent notification. - * Otherwise the PRPL should return 0. - */ - unsigned int (*send_typing)(PurpleConnection *, const char *name, PurpleTypingState state); - - /** - * Should arrange for purple_notify_userinfo() to be called with - * @a who's user info. - */ - void (*get_info)(PurpleConnection *, const char *who); - void (*set_status)(PurpleAccount *account, PurpleStatus *status); - - void (*set_idle)(PurpleConnection *, int idletime); - void (*change_passwd)(PurpleConnection *, const char *old_pass, - const char *new_pass); - /** - * Add a buddy to a group on the server. - * - * This PRPL function may be called in situations in which the buddy is - * already in the specified group. If the protocol supports - * authorization and the user is not already authorized to see the - * status of \a buddy, \a add_buddy should request authorization. - * - * @deprecated Since 2.8.0, add_buddy_with_invite is preferred. - * @see add_buddy_with_invite - */ - void (*add_buddy)(PurpleConnection *, PurpleBuddy *buddy, PurpleGroup *group); - void (*add_buddies)(PurpleConnection *, GList *buddies, GList *groups); - void (*remove_buddy)(PurpleConnection *, PurpleBuddy *buddy, PurpleGroup *group); - void (*remove_buddies)(PurpleConnection *, GList *buddies, GList *groups); - void (*add_permit)(PurpleConnection *, const char *name); - void (*add_deny)(PurpleConnection *, const char *name); - void (*rem_permit)(PurpleConnection *, const char *name); - void (*rem_deny)(PurpleConnection *, const char *name); - void (*set_permit_deny)(PurpleConnection *); - - /** - * Called when the user requests joining a chat. Should arrange for - * #serv_got_joined_chat to be called. - * - * @param components A hashtable containing information required to - * join the chat as described by the entries returned - * by #chat_info. It may also be called when accepting - * an invitation, in which case this matches the - * data parameter passed to #serv_got_chat_invite. - */ - void (*join_chat)(PurpleConnection *, GHashTable *components); - - /** - * Called when the user refuses a chat invitation. - * - * @param components A hashtable containing information required to - * join the chat as passed to #serv_got_chat_invite. - */ - void (*reject_chat)(PurpleConnection *, GHashTable *components); - - /** - * Returns a chat name based on the information in components. Use - * #chat_info_defaults if you instead need to generate a hashtable - * from a chat name. - * - * @param components A hashtable containing information about the chat. - */ - char *(*get_chat_name)(GHashTable *components); - - /** - * Invite a user to join a chat. - * - * @param id The id of the chat to invite the user to. - * @param message A message displayed to the user when the invitation - * is received. - * @param who The name of the user to send the invation to. - */ - void (*chat_invite)(PurpleConnection *, int id, - const char *message, const char *who); - /** - * Called when the user requests leaving a chat. - * - * @param id The id of the chat to leave - */ - void (*chat_leave)(PurpleConnection *, int id); - - /** - * Send a whisper to a user in a chat. - * - * @param id The id of the chat. - * @param who The name of the user to send the whisper to. - * @param message The message of the whisper. - */ - void (*chat_whisper)(PurpleConnection *, int id, - const char *who, const char *message); - - /** - * Send a message to a chat. - * This PRPL function should return a positive value on success. - * If the message is too big to be sent, return -E2BIG. If - * the account is not connected, return -ENOTCONN. If the - * PRPL is unable to send the message for another reason, return - * some other negative value. You can use one of the valid - * errno values, or just big something. If the message should - * not be echoed to the conversation window, return 0. - * - * @param id The id of the chat to send the message to. - * @param message The message to send to the chat. - * @param flags A bitwise OR of #PurpleMessageFlags representing - * message flags. - * @return A positive number or 0 in case of succes, - * a negative error number in case of failure. - */ - int (*chat_send)(PurpleConnection *, int id, const char *message, PurpleMessageFlags flags); - - /** If implemented, this will be called regularly for this prpl's - * active connections. You'd want to do this if you need to repeatedly - * send some kind of keepalive packet to the server to avoid being - * disconnected. ("Regularly" is defined by - * KEEPALIVE_INTERVAL in libpurple/connection.c.) - */ - void (*keepalive)(PurpleConnection *); - - /** new user registration */ - void (*register_user)(PurpleAccount *); - - /** - * @deprecated Use #PurplePluginProtocolInfo.get_info instead. - */ - void (*get_cb_info)(PurpleConnection *, int, const char *who); - /** - * @deprecated Use #PurplePluginProtocolInfo.get_cb_real_name and - * #PurplePluginProtocolInfo.status_text instead. - */ - void (*get_cb_away)(PurpleConnection *, int, const char *who); - - /** save/store buddy's alias on server list/roster */ - void (*alias_buddy)(PurpleConnection *, const char *who, - const char *alias); - - /** change a buddy's group on a server list/roster */ - void (*group_buddy)(PurpleConnection *, const char *who, - const char *old_group, const char *new_group); - - /** rename a group on a server list/roster */ - void (*rename_group)(PurpleConnection *, const char *old_name, - PurpleGroup *group, GList *moved_buddies); - - void (*buddy_free)(PurpleBuddy *); - - void (*convo_closed)(PurpleConnection *, const char *who); - - /** - * Convert the username @a who to its canonical form. (For example, - * AIM treats "fOo BaR" and "foobar" as the same user; this function - * should return the same normalized string for both of those.) - */ - const char *(*normalize)(const PurpleAccount *, const char *who); - - /** - * Set the buddy icon for the given connection to @a img. The prpl - * does NOT own a reference to @a img; if it needs one, it must - * #purple_imgstore_ref(@a img) itself. - */ - void (*set_buddy_icon)(PurpleConnection *, PurpleStoredImage *img); - - void (*remove_group)(PurpleConnection *gc, PurpleGroup *group); - - /** Gets the real name of a participant in a chat. For example, on - * XMPP this turns a chat room nick foo into - * room\@server/foo - * @param gc the connection on which the room is. - * @param id the ID of the chat room. - * @param who the nickname of the chat participant. - * @return the real name of the participant. This string must be - * freed by the caller. - */ - char *(*get_cb_real_name)(PurpleConnection *gc, int id, const char *who); - - void (*set_chat_topic)(PurpleConnection *gc, int id, const char *topic); - - PurpleChat *(*find_blist_chat)(PurpleAccount *account, const char *name); - - /* room listing prpl callbacks */ - PurpleRoomlist *(*roomlist_get_list)(PurpleConnection *gc); - void (*roomlist_cancel)(PurpleRoomlist *list); - void (*roomlist_expand_category)(PurpleRoomlist *list, PurpleRoomlistRoom *category); - - /* file transfer callbacks */ - gboolean (*can_receive_file)(PurpleConnection *, const char *who); - void (*send_file)(PurpleConnection *, const char *who, const char *filename); - PurpleXfer *(*new_xfer)(PurpleConnection *, const char *who); - - /** Checks whether offline messages to @a buddy are supported. - * @return @c TRUE if @a buddy can be sent messages while they are - * offline, or @c FALSE if not. - */ - gboolean (*offline_message)(const PurpleBuddy *buddy); - - PurpleWhiteboardPrplOps *whiteboard_prpl_ops; - - /** For use in plugins that may understand the underlying protocol */ - int (*send_raw)(PurpleConnection *gc, const char *buf, int len); - - /* room list serialize */ - char *(*roomlist_room_serialize)(PurpleRoomlistRoom *room); - - /** Remove the user from the server. The account can either be - * connected or disconnected. After the removal is finished, the - * connection will stay open and has to be closed! - */ - /* This is here rather than next to register_user for API compatibility - * reasons. - */ - void (*unregister_user)(PurpleAccount *, PurpleAccountUnregistrationCb cb, void *user_data); - - /* Attention API for sending & receiving zaps/nudges/buzzes etc. */ - gboolean (*send_attention)(PurpleConnection *gc, const char *username, guint type); - GList *(*get_attention_types)(PurpleAccount *acct); - - /** - * The size of the PurplePluginProtocolInfo. This should always be sizeof(PurplePluginProtocolInfo). - * This allows adding more functions to this struct without requiring a major version bump. - */ - unsigned long struct_size; - - /* NOTE: - * If more functions are added, they should accessed using the following syntax: - * - * if (PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, new_function)) - * prpl->new_function(...); - * - * instead of - * - * if (prpl->new_function != NULL) - * prpl->new_function(...); - * - * The PURPLE_PROTOCOL_PLUGIN_HAS_FUNC macro can be used for the older member - * functions (e.g. login, send_im etc.) too. - */ - - /** This allows protocols to specify additional strings to be used for - * various purposes. The idea is to stuff a bunch of strings in this hash - * table instead of expanding the struct for every addition. This hash - * table is allocated every call and MUST be unrefed by the caller. - * - * @param account The account to specify. This can be NULL. - * @return The protocol's string hash table. The hash table should be - * destroyed by the caller when it's no longer needed. - */ - GHashTable *(*get_account_text_table)(PurpleAccount *account); - - /** - * Initiate a media session with the given contact. - * - * @param account The account to initiate the media session on. - * @param who The remote user to initiate the session with. - * @param type The type of media session to initiate. - * @return TRUE if the call succeeded else FALSE. (Doesn't imply the media session or stream will be successfully created) - */ - gboolean (*initiate_media)(PurpleAccount *account, const char *who, - PurpleMediaSessionType type); - - /** - * Checks to see if the given contact supports the given type of media session. - * - * @param account The account the contact is on. - * @param who The remote user to check for media capability with. - * @return The media caps the contact supports. - */ - PurpleMediaCaps (*get_media_caps)(PurpleAccount *account, - const char *who); - - /** - * Returns an array of "PurpleMood"s, with the last one having - * "mood" set to @c NULL. - * @since 2.7.0 - */ - PurpleMood *(*get_moods)(PurpleAccount *account); - - /** - * Set the user's "friendly name" (or alias or nickname or - * whatever term you want to call it) on the server. The - * protocol plugin should call success_cb or failure_cb - * *asynchronously* (if it knows immediately that the set will fail, - * call one of the callbacks from an idle/0-second timeout) depending - * on if the nickname is set successfully. - * - * @param gc The connection for which to set an alias - * @param alias The new server-side alias/nickname for this account, - * or NULL to unset the alias/nickname (or return it to - * a protocol-specific "default"). - * @param success_cb Callback to be called if the public alias is set - * @param failure_cb Callback to be called if setting the public alias - * fails - * @see purple_account_set_public_alias - * @since 2.7.0 - */ - void (*set_public_alias)(PurpleConnection *gc, const char *alias, - PurpleSetPublicAliasSuccessCallback success_cb, - PurpleSetPublicAliasFailureCallback failure_cb); - /** - * Retrieve the user's "friendly name" as set on the server. - * The protocol plugin should call success_cb or failure_cb - * *asynchronously* (even if it knows immediately that the get will fail, - * call one of the callbacks from an idle/0-second timeout) depending - * on if the nickname is retrieved. - * - * @param gc The connection for which to retireve the alias - * @param success_cb Callback to be called with the retrieved alias - * @param failure_cb Callback to be called if the prpl is unable to - * retrieve the alias - * @see purple_account_get_public_alias - * @since 2.7.0 - */ - void (*get_public_alias)(PurpleConnection *gc, - PurpleGetPublicAliasSuccessCallback success_cb, - PurpleGetPublicAliasFailureCallback failure_cb); - - /** - * Add a buddy to a group on the server. - * - * This PRPL function may be called in situations in which the buddy is - * already in the specified group. If the protocol supports - * authorization and the user is not already authorized to see the - * status of \a buddy, \a add_buddy should request authorization. - * - * If authorization is required, then use the supplied invite message. - * - * @since 2.8.0 - */ - void (*add_buddy_with_invite)(PurpleConnection *pc, PurpleBuddy *buddy, PurpleGroup *group, const char *message); - void (*add_buddies_with_invite)(PurpleConnection *pc, GList *buddies, GList *groups, const char *message); -}; - -#define PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, member) \ - (((G_STRUCT_OFFSET(PurplePluginProtocolInfo, member) < G_STRUCT_OFFSET(PurplePluginProtocolInfo, struct_size)) \ - || (G_STRUCT_OFFSET(PurplePluginProtocolInfo, member) < prpl->struct_size)) && \ - prpl->member != NULL) - - -#define PURPLE_IS_PROTOCOL_PLUGIN(plugin) \ - ((plugin)->info->type == PURPLE_PLUGIN_PROTOCOL) - -#define PURPLE_PLUGIN_PROTOCOL_INFO(plugin) \ - ((PurplePluginProtocolInfo *)(plugin)->info->extra_info) - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Attention Type API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new #PurpleAttentionType object and sets its mandatory parameters. - * - * @param ulname A non-localized string that can be used by UIs in need of such - * non-localized strings. This should be the same as @a name, - * without localization. - * @param name A localized string that the UI may display for the event. This - * should be the same string as @a ulname, with localization. - * @param inc_desc A localized description shown when the event is received. - * @param out_desc A localized description shown when the event is sent. - * @return A pointer to the new object. - * @since 2.4.0 - */ -PurpleAttentionType *purple_attention_type_new(const char *ulname, const char *name, - const char *inc_desc, const char *out_desc); - -/** - * Sets the displayed name of the attention-demanding event. - * - * @param type The attention type. - * @param name The localized name that will be displayed by UIs. This should be - * the same string given as the unlocalized name, but with - * localization. - * @since 2.4.0 - */ -void purple_attention_type_set_name(PurpleAttentionType *type, const char *name); - -/** - * Sets the description of the attention-demanding event shown in conversations - * when the event is received. - * - * @param type The attention type. - * @param desc The localized description for incoming events. - * @since 2.4.0 - */ -void purple_attention_type_set_incoming_desc(PurpleAttentionType *type, const char *desc); - -/** - * Sets the description of the attention-demanding event shown in conversations - * when the event is sent. - * - * @param type The attention type. - * @param desc The localized description for outgoing events. - * @since 2.4.0 - */ -void purple_attention_type_set_outgoing_desc(PurpleAttentionType *type, const char *desc); - -/** - * Sets the name of the icon to display for the attention event; this is optional. - * - * @param type The attention type. - * @param name The icon's name. - * @note Icons are optional for attention events. - * @since 2.4.0 - */ -void purple_attention_type_set_icon_name(PurpleAttentionType *type, const char *name); - -/** - * Sets the unlocalized name of the attention event; some UIs may need this, - * thus it is required. - * - * @param type The attention type. - * @param ulname The unlocalized name. This should be the same string given as - * the localized name, but without localization. - * @since 2.4.0 - */ -void purple_attention_type_set_unlocalized_name(PurpleAttentionType *type, const char *ulname); - -/** - * Get the attention type's name as displayed by the UI. - * - * @param type The attention type. - * @return The name. - * @since 2.4.0 - */ -const char *purple_attention_type_get_name(const PurpleAttentionType *type); - -/** - * Get the attention type's description shown when the event is received. - * - * @param type The attention type. - * @return The description. - * @since 2.4.0 - */ -const char *purple_attention_type_get_incoming_desc(const PurpleAttentionType *type); - -/** - * Get the attention type's description shown when the event is sent. - * - * @param type The attention type. - * @return The description. - * @since 2.4.0 - */ -const char *purple_attention_type_get_outgoing_desc(const PurpleAttentionType *type); - -/** - * Get the attention type's icon name. - * - * @param type The attention type. - * @return The icon name or @c NULL if unset/empty. - * @note Icons are optional for attention events. - * @since 2.4.0 - */ -const char *purple_attention_type_get_icon_name(const PurpleAttentionType *type); - -/** - * Get the attention type's unlocalized name; this is useful for some UIs. - * - * @param type The attention type - * @return The unlocalized name. - * @since 2.4.0 - */ -const char *purple_attention_type_get_unlocalized_name(const PurpleAttentionType *type); - -/*@}*/ - -/**************************************************************************/ -/** @name Protocol Plugin API */ -/**************************************************************************/ -/*@{*/ - -/** - * Notifies Purple that our account's idle state and time have changed. - * - * This is meant to be called from protocol plugins. - * - * @param account The account. - * @param idle The user's idle state. - * @param idle_time The user's idle time. - */ -void purple_prpl_got_account_idle(PurpleAccount *account, gboolean idle, - time_t idle_time); - -/** - * Notifies Purple of our account's log-in time. - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param login_time The user's log-in time. - */ -void purple_prpl_got_account_login_time(PurpleAccount *account, time_t login_time); - -/** - * Notifies Purple that our account's status has changed. - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param status_id The status ID. - * @param ... A NULL-terminated list of attribute IDs and values, - * beginning with the value for @a attr_id. - */ -void purple_prpl_got_account_status(PurpleAccount *account, - const char *status_id, ...) G_GNUC_NULL_TERMINATED; - -/** - * Notifies Purple that our account's actions have changed. This is only - * called after the initial connection. Emits the account-actions-changed - * signal. - * - * This is meant to be called from protocol plugins. - * - * @param account The account. - * - * @see account-actions-changed - * @since 2.6.0 - */ -void purple_prpl_got_account_actions(PurpleAccount *account); - -/** - * Notifies Purple that a buddy's idle state and time have changed. - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param name The name of the buddy. - * @param idle The user's idle state. - * @param idle_time The user's idle time. This is the time at - * which the user became idle, in seconds since - * the epoch. If the PRPL does not know this value - * then it should pass 0. - */ -void purple_prpl_got_user_idle(PurpleAccount *account, const char *name, - gboolean idle, time_t idle_time); - -/** - * Notifies Purple of a buddy's log-in time. - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param name The name of the buddy. - * @param login_time The user's log-in time. - */ -void purple_prpl_got_user_login_time(PurpleAccount *account, const char *name, - time_t login_time); - -/** - * Notifies Purple that a buddy's status has been activated. - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param name The name of the buddy. - * @param status_id The status ID. - * @param ... A NULL-terminated list of attribute IDs and values, - * beginning with the value for @a attr_id. - */ -void purple_prpl_got_user_status(PurpleAccount *account, const char *name, - const char *status_id, ...) G_GNUC_NULL_TERMINATED; - -/** - * Notifies libpurple that a buddy's status has been deactivated - * - * This is meant to be called from protocol plugins. - * - * @param account The account the user is on. - * @param name The name of the buddy. - * @param status_id The status ID. - */ -void purple_prpl_got_user_status_deactive(PurpleAccount *account, const char *name, - const char *status_id); - -/** - * Informs the server that our account's status changed. - * - * @param account The account the user is on. - * @param old_status The previous status. - * @param new_status The status that was activated, or deactivated - * (in the case of independent statuses). - */ -void purple_prpl_change_account_status(PurpleAccount *account, - PurpleStatus *old_status, - PurpleStatus *new_status); - -/** - * Retrieves the list of stock status types from a prpl. - * - * @param account The account the user is on. - * @param presence The presence for which we're going to get statuses - * - * @return List of statuses - */ -GList *purple_prpl_get_statuses(PurpleAccount *account, PurplePresence *presence); - -/** - * Send an attention request message. - * - * @param gc The connection to send the message on. - * @param who Whose attention to request. - * @param type_code An index into the prpl's attention_types list determining the type - * of the attention request command to send. 0 if prpl only defines one - * (for example, Yahoo and MSN), but some protocols define more (MySpaceIM). - * - * Note that you can't send arbitrary PurpleAttentionType's, because there is - * only a fixed set of attention commands. - * - * @since 2.5.0 - */ -void purple_prpl_send_attention(PurpleConnection *gc, const char *who, guint type_code); - -/** - * Process an incoming attention message. - * - * @param gc The connection that received the attention message. - * @param who Who requested your attention. - * @param type_code An index into the prpl's attention_types list determining the type - * of the attention request command to send. - * - * @since 2.5.0 - */ -void purple_prpl_got_attention(PurpleConnection *gc, const char *who, guint type_code); - -/** - * Process an incoming attention message in a chat. - * - * @param gc The connection that received the attention message. - * @param id The chat id. - * @param who Who requested your attention. - * @param type_code An index into the prpl's attention_types list determining the type - * of the attention request command to send. - * - * @since 2.5.0 - */ -void purple_prpl_got_attention_in_chat(PurpleConnection *gc, int id, const char *who, guint type_code); - -/** - * Determines if the contact supports the given media session type. - * - * @param account The account the user is on. - * @param who The name of the contact to check capabilities for. - * - * @return The media caps the contact supports. - */ -PurpleMediaCaps purple_prpl_get_media_caps(PurpleAccount *account, - const char *who); - -/** - * Initiates a media session with the given contact. - * - * @param account The account the user is on. - * @param who The name of the contact to start a session with. - * @param type The type of media session to start. - * - * @return TRUE if the call succeeded else FALSE. (Doesn't imply the media session or stream will be successfully created) - */ -gboolean purple_prpl_initiate_media(PurpleAccount *account, - const char *who, - PurpleMediaSessionType type); - -/** - * Signals that the prpl received capabilities for the given contact. - * - * This function is intended to be used only by prpls. - * - * @param account The account the user is on. - * @param who The name of the contact for which capabilities have been received. - * @since 2.7.0 - */ -void purple_prpl_got_media_caps(PurpleAccount *account, const char *who); - -/*@}*/ - -/**************************************************************************/ -/** @name Protocol Plugin Subsystem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Finds a protocol plugin structure of the specified type. - * - * @param id The protocol plugin; - */ -PurplePlugin *purple_find_prpl(const char *id); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PRPL_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/purple.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/purple.h deleted file mode 100644 index 8e5a1b1..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/purple.h +++ /dev/null @@ -1,105 +0,0 @@ -/** - * @file purple.h Header files and defines - * This file contains all the necessary preprocessor directives to include - * libpurple's headers and other preprocessor directives required for plugins - * or UIs to build. Including this file eliminates the need to directly - * include any other libpurple files. - * - * @ingroup core libpurple - * @since 2.3.0 - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_PURPLE_H_ -#define _PURPLE_PURPLE_H_ - -#include - -#ifndef G_GNUC_NULL_TERMINATED -# if __GNUC__ >= 4 -# define G_GNUC_NULL_TERMINATED __attribute__((__sentinel__)) -# else -# define G_GNUC_NULL_TERMINATED -# endif -#endif - -#undef PURPLE_PLUGINS - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#endif diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/request.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/request.h deleted file mode 100644 index 8035ef8..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/request.h +++ /dev/null @@ -1,1608 +0,0 @@ -/** - * @file request.h Request API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_REQUEST_H_ -#define _PURPLE_REQUEST_H_ - -#include -#include -#include - -/** @copydoc _PurpleRequestField */ -typedef struct _PurpleRequestField PurpleRequestField; - -#include "account.h" - -#define PURPLE_DEFAULT_ACTION_NONE -1 - -/** - * Request types. - */ -typedef enum -{ - PURPLE_REQUEST_INPUT = 0, /**< Text input request. */ - PURPLE_REQUEST_CHOICE, /**< Multiple-choice request. */ - PURPLE_REQUEST_ACTION, /**< Action request. */ - PURPLE_REQUEST_FIELDS, /**< Multiple fields request. */ - PURPLE_REQUEST_FILE, /**< File open or save request. */ - PURPLE_REQUEST_FOLDER /**< Folder selection request. */ - -} PurpleRequestType; - -/** - * A type of field. - */ -typedef enum -{ - PURPLE_REQUEST_FIELD_NONE, - PURPLE_REQUEST_FIELD_STRING, - PURPLE_REQUEST_FIELD_INTEGER, - PURPLE_REQUEST_FIELD_BOOLEAN, - PURPLE_REQUEST_FIELD_CHOICE, - PURPLE_REQUEST_FIELD_LIST, - PURPLE_REQUEST_FIELD_LABEL, - PURPLE_REQUEST_FIELD_IMAGE, - PURPLE_REQUEST_FIELD_ACCOUNT - -} PurpleRequestFieldType; - -/** - * Multiple fields request data. - */ -typedef struct -{ - GList *groups; - - GHashTable *fields; - - GList *required_fields; - - void *ui_data; - -} PurpleRequestFields; - -/** - * A group of fields with a title. - */ -typedef struct -{ - PurpleRequestFields *fields_list; - - char *title; - - GList *fields; - -} PurpleRequestFieldGroup; - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_REQUEST_C_) -/** - * A request field. - */ -struct _PurpleRequestField -{ - PurpleRequestFieldType type; - PurpleRequestFieldGroup *group; - - char *id; - char *label; - char *type_hint; - - gboolean visible; - gboolean required; - - union - { - struct - { - gboolean multiline; - gboolean masked; - gboolean editable; - char *default_value; - char *value; - - } string; - - struct - { - int default_value; - int value; - - } integer; - - struct - { - gboolean default_value; - gboolean value; - - } boolean; - - struct - { - int default_value; - int value; - - GList *labels; - - } choice; - - struct - { - GList *items; - GList *icons; - GHashTable *item_data; - GList *selected; - GHashTable *selected_table; - - gboolean multiple_selection; - - } list; - - struct - { - PurpleAccount *default_account; - PurpleAccount *account; - gboolean show_all; - - PurpleFilterAccountFunc filter_func; - - } account; - - struct - { - unsigned int scale_x; - unsigned int scale_y; - const char *buffer; - gsize size; - } image; - - } u; - - void *ui_data; - -}; -#endif - -/** - * Request UI operations. - */ -typedef struct -{ - /** @see purple_request_input(). */ - void *(*request_input)(const char *title, const char *primary, - const char *secondary, const char *default_value, - gboolean multiline, gboolean masked, gchar *hint, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, - PurpleConversation *conv, void *user_data); - - /** @see purple_request_choice_varg(). */ - void *(*request_choice)(const char *title, const char *primary, - const char *secondary, int default_value, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, - PurpleConversation *conv, void *user_data, - va_list choices); - - /** @see purple_request_action_varg(). */ - void *(*request_action)(const char *title, const char *primary, - const char *secondary, int default_action, - PurpleAccount *account, const char *who, - PurpleConversation *conv, void *user_data, - size_t action_count, va_list actions); - - /** @see purple_request_fields(). */ - void *(*request_fields)(const char *title, const char *primary, - const char *secondary, PurpleRequestFields *fields, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, - PurpleConversation *conv, void *user_data); - - /** @see purple_request_file(). */ - void *(*request_file)(const char *title, const char *filename, - gboolean savedialog, GCallback ok_cb, - GCallback cancel_cb, PurpleAccount *account, - const char *who, PurpleConversation *conv, - void *user_data); - - void (*close_request)(PurpleRequestType type, void *ui_handle); - - /** @see purple_request_folder(). */ - void *(*request_folder)(const char *title, const char *dirname, - GCallback ok_cb, GCallback cancel_cb, - PurpleAccount *account, const char *who, - PurpleConversation *conv, void *user_data); - - /** @see purple_request_action_with_icon_varg(). */ - void *(*request_action_with_icon)(const char *title, const char *primary, - const char *secondary, int default_action, - PurpleAccount *account, const char *who, - PurpleConversation *conv, - gconstpointer icon_data, gsize icon_size, - void *user_data, - size_t action_count, va_list actions); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); -} PurpleRequestUiOps; - -typedef void (*PurpleRequestInputCb)(void *, const char *); - -/** The type of callbacks passed to purple_request_action(). The first - * argument is the @a user_data parameter; the second is the index in the list - * of actions of the one chosen. - */ -typedef void (*PurpleRequestActionCb)(void *, int); -typedef void (*PurpleRequestChoiceCb)(void *, int); -typedef void (*PurpleRequestFieldsCb)(void *, PurpleRequestFields *fields); -typedef void (*PurpleRequestFileCb)(void *, const char *filename); - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Field List API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a list of fields to pass to purple_request_fields(). - * - * @return A PurpleRequestFields structure. - */ -PurpleRequestFields *purple_request_fields_new(void); - -/** - * Destroys a list of fields. - * - * @param fields The list of fields to destroy. - */ -void purple_request_fields_destroy(PurpleRequestFields *fields); - -/** - * Adds a group of fields to the list. - * - * @param fields The fields list. - * @param group The group to add. - */ -void purple_request_fields_add_group(PurpleRequestFields *fields, - PurpleRequestFieldGroup *group); - -/** - * Returns a list of all groups in a field list. - * - * @param fields The fields list. - * - * @constreturn A list of groups. - */ -GList *purple_request_fields_get_groups(const PurpleRequestFields *fields); - -/** - * Returns whether or not the field with the specified ID exists. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return TRUE if the field exists, or FALSE. - */ -gboolean purple_request_fields_exists(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns a list of all required fields. - * - * @param fields The fields list. - * - * @constreturn The list of required fields. - */ -GList *purple_request_fields_get_required(const PurpleRequestFields *fields); - -/** - * Returns whether or not a field with the specified ID is required. - * - * @param fields The fields list. - * @param id The field ID. - * - * @return TRUE if the specified field is required, or FALSE. - */ -gboolean purple_request_fields_is_field_required(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns whether or not all required fields have values. - * - * @param fields The fields list. - * - * @return TRUE if all required fields have values, or FALSE. - */ -gboolean purple_request_fields_all_required_filled( - const PurpleRequestFields *fields); - -/** - * Return the field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The field, if found. - */ -PurpleRequestField *purple_request_fields_get_field( - const PurpleRequestFields *fields, const char *id); - -/** - * Returns the string value of a field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The string value, if found, or @c NULL otherwise. - */ -const char *purple_request_fields_get_string(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns the integer value of a field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The integer value, if found, or 0 otherwise. - */ -int purple_request_fields_get_integer(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns the boolean value of a field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The boolean value, if found, or @c FALSE otherwise. - */ -gboolean purple_request_fields_get_bool(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns the choice index of a field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The choice index, if found, or -1 otherwise. - */ -int purple_request_fields_get_choice(const PurpleRequestFields *fields, - const char *id); - -/** - * Returns the account of a field with the specified ID. - * - * @param fields The fields list. - * @param id The ID of the field. - * - * @return The account value, if found, or NULL otherwise. - */ -PurpleAccount *purple_request_fields_get_account(const PurpleRequestFields *fields, - const char *id); - -/*@}*/ - -/**************************************************************************/ -/** @name Fields Group API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a fields group with an optional title. - * - * @param title The optional title to give the group. - * - * @return A new fields group - */ -PurpleRequestFieldGroup *purple_request_field_group_new(const char *title); - -/** - * Destroys a fields group. - * - * @param group The group to destroy. - */ -void purple_request_field_group_destroy(PurpleRequestFieldGroup *group); - -/** - * Adds a field to the group. - * - * @param group The group to add the field to. - * @param field The field to add to the group. - */ -void purple_request_field_group_add_field(PurpleRequestFieldGroup *group, - PurpleRequestField *field); - -/** - * Returns the title of a fields group. - * - * @param group The group. - * - * @return The title, if set. - */ -const char *purple_request_field_group_get_title( - const PurpleRequestFieldGroup *group); - -/** - * Returns a list of all fields in a group. - * - * @param group The group. - * - * @constreturn The list of fields in the group. - */ -GList *purple_request_field_group_get_fields( - const PurpleRequestFieldGroup *group); - -/*@}*/ - -/**************************************************************************/ -/** @name Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a field of the specified type. - * - * @param id The field ID. - * @param text The text label of the field. - * @param type The type of field. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_new(const char *id, const char *text, - PurpleRequestFieldType type); - -/** - * Destroys a field. - * - * @param field The field to destroy. - */ -void purple_request_field_destroy(PurpleRequestField *field); - -/** - * Sets the label text of a field. - * - * @param field The field. - * @param label The text label. - */ -void purple_request_field_set_label(PurpleRequestField *field, const char *label); - -/** - * Sets whether or not a field is visible. - * - * @param field The field. - * @param visible TRUE if visible, or FALSE if not. - */ -void purple_request_field_set_visible(PurpleRequestField *field, gboolean visible); - -/** - * Sets the type hint for the field. - * - * This is optionally used by the UIs to provide such features as - * auto-completion for type hints like "account" and "screenname". - * - * @param field The field. - * @param type_hint The type hint. - */ -void purple_request_field_set_type_hint(PurpleRequestField *field, - const char *type_hint); - -/** - * Sets whether or not a field is required. - * - * @param field The field. - * @param required TRUE if required, or FALSE. - */ -void purple_request_field_set_required(PurpleRequestField *field, - gboolean required); - -/** - * Returns the type of a field. - * - * @param field The field. - * - * @return The field's type. - */ -PurpleRequestFieldType purple_request_field_get_type(const PurpleRequestField *field); - -/** - * Returns the group for the field. - * - * @param field The field. - * - * @return The UI data. - * - * @since 2.6.0 - */ -PurpleRequestFieldGroup *purple_request_field_get_group(const PurpleRequestField *field); - -/** - * Returns the ID of a field. - * - * @param field The field. - * - * @return The ID - */ -const char *purple_request_field_get_id(const PurpleRequestField *field); - -/** - * Returns the label text of a field. - * - * @param field The field. - * - * @return The label text. - */ -const char *purple_request_field_get_label(const PurpleRequestField *field); - -/** - * Returns whether or not a field is visible. - * - * @param field The field. - * - * @return TRUE if the field is visible. FALSE otherwise. - */ -gboolean purple_request_field_is_visible(const PurpleRequestField *field); - -/** - * Returns the field's type hint. - * - * @param field The field. - * - * @return The field's type hint. - */ -const char *purple_request_field_get_type_hint(const PurpleRequestField *field); - -/** - * Returns whether or not a field is required. - * - * @param field The field. - * - * @return TRUE if the field is required, or FALSE. - */ -gboolean purple_request_field_is_required(const PurpleRequestField *field); - -/** - * Returns the ui_data for a field. - * - * @param field The field. - * - * @return The UI data. - * - * @since 2.6.0 - */ -gpointer purple_request_field_get_ui_data(const PurpleRequestField *field); - -/** - * Sets the ui_data for a field. - * - * @param field The field. - * @param ui_data The UI data. - * - * @return The UI data. - * - * @since 2.6.0 - */ -void purple_request_field_set_ui_data(PurpleRequestField *field, - gpointer ui_data); - -/*@}*/ - -/**************************************************************************/ -/** @name String Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a string request field. - * - * @param id The field ID. - * @param text The text label of the field. - * @param default_value The optional default value. - * @param multiline Whether or not this should be a multiline string. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_string_new(const char *id, - const char *text, - const char *default_value, - gboolean multiline); - -/** - * Sets the default value in a string field. - * - * @param field The field. - * @param default_value The default value. - */ -void purple_request_field_string_set_default_value(PurpleRequestField *field, - const char *default_value); - -/** - * Sets the value in a string field. - * - * @param field The field. - * @param value The value. - */ -void purple_request_field_string_set_value(PurpleRequestField *field, - const char *value); - -/** - * Sets whether or not a string field is masked - * (commonly used for password fields). - * - * @param field The field. - * @param masked The masked value. - */ -void purple_request_field_string_set_masked(PurpleRequestField *field, - gboolean masked); - -/** - * Sets whether or not a string field is editable. - * - * @param field The field. - * @param editable The editable value. - */ -void purple_request_field_string_set_editable(PurpleRequestField *field, - gboolean editable); - -/** - * Returns the default value in a string field. - * - * @param field The field. - * - * @return The default value. - */ -const char *purple_request_field_string_get_default_value( - const PurpleRequestField *field); - -/** - * Returns the user-entered value in a string field. - * - * @param field The field. - * - * @return The value. - */ -const char *purple_request_field_string_get_value(const PurpleRequestField *field); - -/** - * Returns whether or not a string field is multi-line. - * - * @param field The field. - * - * @return @c TRUE if the field is mulit-line, or @c FALSE otherwise. - */ -gboolean purple_request_field_string_is_multiline(const PurpleRequestField *field); - -/** - * Returns whether or not a string field is masked. - * - * @param field The field. - * - * @return @c TRUE if the field is masked, or @c FALSE otherwise. - */ -gboolean purple_request_field_string_is_masked(const PurpleRequestField *field); - -/** - * Returns whether or not a string field is editable. - * - * @param field The field. - * - * @return @c TRUE if the field is editable, or @c FALSE otherwise. - */ -gboolean purple_request_field_string_is_editable(const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Integer Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates an integer field. - * - * @param id The field ID. - * @param text The text label of the field. - * @param default_value The default value. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_int_new(const char *id, - const char *text, - int default_value); - -/** - * Sets the default value in an integer field. - * - * @param field The field. - * @param default_value The default value. - */ -void purple_request_field_int_set_default_value(PurpleRequestField *field, - int default_value); - -/** - * Sets the value in an integer field. - * - * @param field The field. - * @param value The value. - */ -void purple_request_field_int_set_value(PurpleRequestField *field, int value); - -/** - * Returns the default value in an integer field. - * - * @param field The field. - * - * @return The default value. - */ -int purple_request_field_int_get_default_value(const PurpleRequestField *field); - -/** - * Returns the user-entered value in an integer field. - * - * @param field The field. - * - * @return The value. - */ -int purple_request_field_int_get_value(const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Boolean Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a boolean field. - * - * This is often represented as a checkbox. - * - * @param id The field ID. - * @param text The text label of the field. - * @param default_value The default value. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_bool_new(const char *id, - const char *text, - gboolean default_value); - -/** - * Sets the default value in an boolean field. - * - * @param field The field. - * @param default_value The default value. - */ -void purple_request_field_bool_set_default_value(PurpleRequestField *field, - gboolean default_value); - -/** - * Sets the value in an boolean field. - * - * @param field The field. - * @param value The value. - */ -void purple_request_field_bool_set_value(PurpleRequestField *field, - gboolean value); - -/** - * Returns the default value in an boolean field. - * - * @param field The field. - * - * @return The default value. - */ -gboolean purple_request_field_bool_get_default_value( - const PurpleRequestField *field); - -/** - * Returns the user-entered value in an boolean field. - * - * @param field The field. - * - * @return The value. - */ -gboolean purple_request_field_bool_get_value(const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Choice Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a multiple choice field. - * - * This is often represented as a group of radio buttons. - * - * @param id The field ID. - * @param text The optional label of the field. - * @param default_value The default choice. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_choice_new(const char *id, - const char *text, - int default_value); - -/** - * Adds a choice to a multiple choice field. - * - * @param field The choice field. - * @param label The choice label. - */ -void purple_request_field_choice_add(PurpleRequestField *field, - const char *label); - -/** - * Sets the default value in an choice field. - * - * @param field The field. - * @param default_value The default value. - */ -void purple_request_field_choice_set_default_value(PurpleRequestField *field, - int default_value); - -/** - * Sets the value in an choice field. - * - * @param field The field. - * @param value The value. - */ -void purple_request_field_choice_set_value(PurpleRequestField *field, int value); - -/** - * Returns the default value in an choice field. - * - * @param field The field. - * - * @return The default value. - */ -int purple_request_field_choice_get_default_value(const PurpleRequestField *field); - -/** - * Returns the user-entered value in an choice field. - * - * @param field The field. - * - * @return The value. - */ -int purple_request_field_choice_get_value(const PurpleRequestField *field); - -/** - * Returns a list of labels in a choice field. - * - * @param field The field. - * - * @constreturn The list of labels. - */ -GList *purple_request_field_choice_get_labels(const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name List Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a multiple list item field. - * - * @param id The field ID. - * @param text The optional label of the field. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_list_new(const char *id, const char *text); - -/** - * Sets whether or not a list field allows multiple selection. - * - * @param field The list field. - * @param multi_select TRUE if multiple selection is enabled, - * or FALSE otherwise. - */ -void purple_request_field_list_set_multi_select(PurpleRequestField *field, - gboolean multi_select); - -/** - * Returns whether or not a list field allows multiple selection. - * - * @param field The list field. - * - * @return TRUE if multiple selection is enabled, or FALSE otherwise. - */ -gboolean purple_request_field_list_get_multi_select( - const PurpleRequestField *field); - -/** - * Returns the data for a particular item. - * - * @param field The list field. - * @param text The item text. - * - * @return The data associated with the item. - */ -void *purple_request_field_list_get_data(const PurpleRequestField *field, - const char *text); - -/** - * Adds an item to a list field. - * - * @param field The list field. - * @param item The list item. - * @param data The associated data. - * - * @deprecated Use purple_request_field_list_add_icon() instead. - */ -void purple_request_field_list_add(PurpleRequestField *field, - const char *item, void *data); - -/** - * Adds an item to a list field. - * - * @param field The list field. - * @param item The list item. - * @param icon_path The path to icon file, or @c NULL for no icon. - * @param data The associated data. - */ -void purple_request_field_list_add_icon(PurpleRequestField *field, - const char *item, const char* icon_path, void* data); - -/** - * Adds a selected item to the list field. - * - * @param field The field. - * @param item The item to add. - */ -void purple_request_field_list_add_selected(PurpleRequestField *field, - const char *item); - -/** - * Clears the list of selected items in a list field. - * - * @param field The field. - */ -void purple_request_field_list_clear_selected(PurpleRequestField *field); - -/** - * Sets a list of selected items in a list field. - * - * @param field The field. - * @param items The list of selected items, which is not modified or freed. - */ -void purple_request_field_list_set_selected(PurpleRequestField *field, - GList *items); - -/** - * Returns whether or not a particular item is selected in a list field. - * - * @param field The field. - * @param item The item. - * - * @return TRUE if the item is selected. FALSE otherwise. - */ -gboolean purple_request_field_list_is_selected(const PurpleRequestField *field, - const char *item); - -/** - * Returns a list of selected items in a list field. - * - * To retrieve the data for each item, use - * purple_request_field_list_get_data(). - * - * @param field The field. - * - * @constreturn The list of selected items. - */ -GList *purple_request_field_list_get_selected( - const PurpleRequestField *field); - -/** - * Returns a list of items in a list field. - * - * @param field The field. - * - * @constreturn The list of items. - */ -GList *purple_request_field_list_get_items(const PurpleRequestField *field); - -/** - * Returns a list of icons in a list field. - * - * The icons will correspond with the items, in order. - * - * @param field The field. - * - * @constreturn The list of icons or @c NULL (i.e. the empty GList) if no - * items have icons. - */ -GList *purple_request_field_list_get_icons(const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Label Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a label field. - * - * @param id The field ID. - * @param text The label of the field. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_label_new(const char *id, - const char *text); - -/*@}*/ - -/**************************************************************************/ -/** @name Image Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates an image field. - * - * @param id The field ID. - * @param text The label of the field. - * @param buf The image data. - * @param size The size of the data in @a buffer. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_image_new(const char *id, const char *text, - const char *buf, gsize size); - -/** - * Sets the scale factors of an image field. - * - * @param field The image field. - * @param x The x scale factor. - * @param y The y scale factor. - */ -void purple_request_field_image_set_scale(PurpleRequestField *field, unsigned int x, unsigned int y); - -/** - * Returns pointer to the image. - * - * @param field The image field. - * - * @return Pointer to the image. - */ -const char *purple_request_field_image_get_buffer(PurpleRequestField *field); - -/** - * Returns size (in bytes) of the image. - * - * @param field The image field. - * - * @return Size of the image. - */ -gsize purple_request_field_image_get_size(PurpleRequestField *field); - -/** - * Returns X scale coefficient of the image. - * - * @param field The image field. - * - * @return X scale coefficient of the image. - */ -unsigned int purple_request_field_image_get_scale_x(PurpleRequestField *field); - -/** - * Returns Y scale coefficient of the image. - * - * @param field The image field. - * - * @return Y scale coefficient of the image. - */ -unsigned int purple_request_field_image_get_scale_y(PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Account Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates an account field. - * - * By default, this field will not show offline accounts. - * - * @param id The field ID. - * @param text The text label of the field. - * @param account The optional default account. - * - * @return The new field. - */ -PurpleRequestField *purple_request_field_account_new(const char *id, - const char *text, - PurpleAccount *account); - -/** - * Sets the default account on an account field. - * - * @param field The account field. - * @param default_value The default account. - */ -void purple_request_field_account_set_default_value(PurpleRequestField *field, - PurpleAccount *default_value); - -/** - * Sets the account in an account field. - * - * @param field The account field. - * @param value The account. - */ -void purple_request_field_account_set_value(PurpleRequestField *field, - PurpleAccount *value); - -/** - * Sets whether or not to show all accounts in an account field. - * - * If TRUE, all accounts, online or offline, will be shown. If FALSE, - * only online accounts will be shown. - * - * @param field The account field. - * @param show_all Whether or not to show all accounts. - */ -void purple_request_field_account_set_show_all(PurpleRequestField *field, - gboolean show_all); - -/** - * Sets the account filter function in an account field. - * - * This function will determine which accounts get displayed and which - * don't. - * - * @param field The account field. - * @param filter_func The account filter function. - */ -void purple_request_field_account_set_filter(PurpleRequestField *field, - PurpleFilterAccountFunc filter_func); - -/** - * Returns the default account in an account field. - * - * @param field The field. - * - * @return The default account. - */ -PurpleAccount *purple_request_field_account_get_default_value( - const PurpleRequestField *field); - -/** - * Returns the user-entered account in an account field. - * - * @param field The field. - * - * @return The user-entered account. - */ -PurpleAccount *purple_request_field_account_get_value( - const PurpleRequestField *field); - -/** - * Returns whether or not to show all accounts in an account field. - * - * If TRUE, all accounts, online or offline, will be shown. If FALSE, - * only online accounts will be shown. - * - * @param field The account field. - * @return Whether or not to show all accounts. - */ -gboolean purple_request_field_account_get_show_all( - const PurpleRequestField *field); - -/** - * Returns the account filter function in an account field. - * - * This function will determine which accounts get displayed and which - * don't. - * - * @param field The account field. - * - * @return The account filter function. - */ -PurpleFilterAccountFunc purple_request_field_account_get_filter( - const PurpleRequestField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name Request API */ -/**************************************************************************/ -/*@{*/ - -/** - * Prompts the user for text input. - * - * @param handle The plugin or connection handle. For some - * things this is extremely important. The - * handle is used to programmatically close the request - * dialog when it is no longer needed. For PRPLs this - * is often a pointer to the #PurpleConnection - * instance. For plugins this should be a similar, - * unique memory location. This value is important - * because it allows a request to be closed with - * purple_request_close_with_handle() when, for - * example, you sign offline. If the request is - * not closed it is very - * likely to cause a crash whenever the callback - * handler functions are triggered. - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param primary The main point of the message, or @c NULL if you're - * feeling enigmatic. - * @param secondary Secondary information, or @c NULL if there is none. - * @param default_value The default value. - * @param multiline @c TRUE if the inputted text can span multiple lines. - * @param masked @c TRUE if the inputted text should be masked in some - * way (such as by displaying characters as stars). This - * might be because the input is some kind of password. - * @param hint Optionally suggest how the input box should appear. - * Use "html", for example, to allow the user to enter - * HTML. - * @param ok_text The text for the @c OK button, which may not be @c NULL. - * @param ok_cb The callback for the @c OK button, which may not be @c - * NULL. - * @param cancel_text The text for the @c Cancel button, which may not be @c - * NULL. - * @param cancel_cb The callback for the @c Cancel button, which may be - * @c NULL. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is. - * @param who The username of the buddy associated with this request, - * or @c NULL if none is. - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is. - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_request_input(void *handle, const char *title, const char *primary, - const char *secondary, const char *default_value, gboolean multiline, - gboolean masked, gchar *hint, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data); - -/** - * Prompts the user for multiple-choice input. - * - * @param handle The plugin or connection handle. For some things this - * is extremely important. See the comments on - * purple_request_input(). - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param primary The main point of the message, or @c NULL if you're - * feeling enigmatic. - * @param secondary Secondary information, or @c NULL if there is none. - * @param default_value The default choice; this should be one of the values - * listed in the varargs. - * @param ok_text The text for the @c OK button, which may not be @c NULL. - * @param ok_cb The callback for the @c OK button, which may not be @c - * NULL. - * @param cancel_text The text for the @c Cancel button, which may not be @c - * NULL. - * @param cancel_cb The callback for the @c Cancel button, or @c NULL to - * do nothing. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is. - * @param who The username of the buddy associated with this request, - * or @c NULL if none is. - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is. - * @param user_data The data to pass to the callback. - * @param ... The choices, which should be pairs of char * - * descriptions and int values, terminated with a - * @c NULL parameter. - * - * @return A UI-specific handle. - */ -void *purple_request_choice(void *handle, const char *title, const char *primary, - const char *secondary, int default_value, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data, ...) G_GNUC_NULL_TERMINATED; - -/** - * va_list version of purple_request_choice(); see its documentation. - */ -void *purple_request_choice_varg(void *handle, const char *title, - const char *primary, const char *secondary, int default_value, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data, va_list choices); - -/** - * Prompts the user for an action. - * - * This is often represented as a dialog with a button for each action. - * - * @param handle The plugin or connection handle. For some things this - * is extremely important. See the comments on - * purple_request_input(). - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param primary The main point of the message, or @c NULL if you're - * feeling enigmatic. - * @param secondary Secondary information, or @c NULL if there is none. - * @param default_action The default action, zero-indexed; if the third action - * supplied should be the default, supply 2. - * The should be the action that users are most likely - * to select. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is. - * @param who The username of the buddy associated with this request, - * or @c NULL if none is. - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is. - * @param user_data The data to pass to the callback. - * @param action_count The number of actions. - * @param ... A list of actions. These are pairs of - * arguments. The first of each pair is the - * char * label that appears on the button. It - * should have an underscore before the letter you want - * to use as the accelerator key for the button. The - * second of each pair is the #PurpleRequestActionCb - * function to use when the button is clicked. - * - * @return A UI-specific handle. - */ -void *purple_request_action(void *handle, const char *title, const char *primary, - const char *secondary, int default_action, PurpleAccount *account, - const char *who, PurpleConversation *conv, void *user_data, - size_t action_count, ...); - -/** - * va_list version of purple_request_action(); see its documentation. - */ -void *purple_request_action_varg(void *handle, const char *title, - const char *primary, const char *secondary, int default_action, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data, size_t action_count, va_list actions); - -/** - * Version of purple_request_action() supplying an image for the UI to - * optionally display as an icon in the dialog; see its documentation - * @since 2.7.0 - */ -void *purple_request_action_with_icon(void *handle, const char *title, - const char *primary, const char *secondary, int default_action, - PurpleAccount *account, const char *who, PurpleConversation *conv, - gconstpointer icon_data, gsize icon_size, void *user_data, - size_t action_count, ...); - -/** - * va_list version of purple_request_action_with_icon(); - * see its documentation. - * @since 2.7.0 - */ -void *purple_request_action_with_icon_varg(void *handle, const char *title, - const char *primary, const char *secondary, int default_action, - PurpleAccount *account, const char *who, PurpleConversation *conv, - gconstpointer icon_data, gsize icon_size, - void *user_data, size_t action_count, va_list actions); - - -/** - * Displays groups of fields for the user to fill in. - * - * @param handle The plugin or connection handle. For some things this - * is extremely important. See the comments on - * purple_request_input(). - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param primary The main point of the message, or @c NULL if you're - * feeling enigmatic. - * @param secondary Secondary information, or @c NULL if there is none. - * @param fields The list of fields. - * @param ok_text The text for the @c OK button, which may not be @c NULL. - * @param ok_cb The callback for the @c OK button, which may not be @c - * NULL. - * @param cancel_text The text for the @c Cancel button, which may not be @c - * NULL. - * @param cancel_cb The callback for the @c Cancel button, which may be - * @c NULL. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is - * @param who The username of the buddy associated with this request, - * or @c NULL if none is - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_request_fields(void *handle, const char *title, const char *primary, - const char *secondary, PurpleRequestFields *fields, - const char *ok_text, GCallback ok_cb, - const char *cancel_text, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data); - -/** - * Closes a request. - * - * @param type The request type. - * @param uihandle The request UI handle. - */ -void purple_request_close(PurpleRequestType type, void *uihandle); - -/** - * Closes all requests registered with the specified handle. - * - * @param handle The handle, as supplied as the @a handle parameter to one of the - * purple_request_* functions. - * - * @see purple_request_input(). - */ -void purple_request_close_with_handle(void *handle); - -/** - * A wrapper for purple_request_action() that uses @c Yes and @c No buttons. - */ -#define purple_request_yes_no(handle, title, primary, secondary, \ - default_action, account, who, conv, \ - user_data, yes_cb, no_cb) \ - purple_request_action((handle), (title), (primary), (secondary), \ - (default_action), account, who, conv, (user_data), 2, \ - _("_Yes"), (yes_cb), _("_No"), (no_cb)) - -/** - * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. - */ -#define purple_request_ok_cancel(handle, title, primary, secondary, \ - default_action, account, who, conv, \ - user_data, ok_cb, cancel_cb) \ - purple_request_action((handle), (title), (primary), (secondary), \ - (default_action), account, who, conv, (user_data), 2, \ - _("_OK"), (ok_cb), _("_Cancel"), (cancel_cb)) - -/** - * A wrapper for purple_request_action() that uses Accept and Cancel buttons. - */ -#define purple_request_accept_cancel(handle, title, primary, secondary, \ - default_action, account, who, conv, \ - user_data, accept_cb, cancel_cb) \ - purple_request_action((handle), (title), (primary), (secondary), \ - (default_action), account, who, conv, (user_data), 2, \ - _("_Accept"), (accept_cb), _("_Cancel"), (cancel_cb)) - -/** - * A wrapper for purple_request_action_with_icon() that uses Accept and Cancel - * buttons. - */ -#define purple_request_accept_cancel_with_icon(handle, title, primary, secondary, \ - default_action, account, who, conv, \ - icon_data, icon_size, \ - user_data, accept_cb, cancel_cb) \ - purple_request_action_with_icon((handle), (title), (primary), (secondary), \ - (default_action), account, who, conv, icon_data, icon_size, \ - (user_data), 2, \ - _("_Accept"), (accept_cb), _("_Cancel"), (cancel_cb)) - -/** - * Displays a file selector request dialog. Returns the selected filename to - * the callback. Can be used for either opening a file or saving a file. - * - * @param handle The plugin or connection handle. For some things this - * is extremely important. See the comments on - * purple_request_input(). - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param filename The default filename (may be @c NULL) - * @param savedialog True if this dialog is being used to save a file. - * False if it is being used to open a file. - * @param ok_cb The callback for the @c OK button. - * @param cancel_cb The callback for the @c Cancel button, which may be @c NULL. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is - * @param who The username of the buddy associated with this request, - * or @c NULL if none is - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_request_file(void *handle, const char *title, const char *filename, - gboolean savedialog, GCallback ok_cb, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data); - -/** - * Displays a folder select dialog. Returns the selected filename to - * the callback. - * - * @param handle The plugin or connection handle. For some things this - * is extremely important. See the comments on - * purple_request_input(). - * @param title The title of the message, or @c NULL if it should have - * no title. - * @param dirname The default directory name (may be @c NULL) - * @param ok_cb The callback for the @c OK button. - * @param cancel_cb The callback for the @c Cancel button, which may be @c NULL. - * @param account The #PurpleAccount associated with this request, or @c - * NULL if none is - * @param who The username of the buddy associated with this request, - * or @c NULL if none is - * @param conv The #PurpleConversation associated with this request, or - * @c NULL if none is - * @param user_data The data to pass to the callback. - * - * @return A UI-specific handle. - */ -void *purple_request_folder(void *handle, const char *title, const char *dirname, - GCallback ok_cb, GCallback cancel_cb, - PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data); - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used when displaying a - * request. - * - * @param ops The UI operations structure. - */ -void purple_request_set_ui_ops(PurpleRequestUiOps *ops); - -/** - * Returns the UI operations structure to be used when displaying a - * request. - * - * @return The UI operations structure. - */ -PurpleRequestUiOps *purple_request_get_ui_ops(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_REQUEST_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/roomlist.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/roomlist.h deleted file mode 100644 index de9270f..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/roomlist.h +++ /dev/null @@ -1,398 +0,0 @@ -/** - * @file roomlist.h Room List API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_ROOMLIST_H_ -#define _PURPLE_ROOMLIST_H_ - -typedef struct _PurpleRoomlist PurpleRoomlist; -typedef struct _PurpleRoomlistRoom PurpleRoomlistRoom; -typedef struct _PurpleRoomlistField PurpleRoomlistField; -/** @copydoc _PurpleRoomlistUiOps */ -typedef struct _PurpleRoomlistUiOps PurpleRoomlistUiOps; - -/** - * The types of rooms. - * - * These are ORable flags. - */ -typedef enum -{ - PURPLE_ROOMLIST_ROOMTYPE_CATEGORY = 0x01, /**< It's a category, but not a room you can join. */ - PURPLE_ROOMLIST_ROOMTYPE_ROOM = 0x02 /**< It's a room, like the kind you can join. */ - -} PurpleRoomlistRoomType; - -/** - * The types of fields. - */ -typedef enum -{ - PURPLE_ROOMLIST_FIELD_BOOL, - PURPLE_ROOMLIST_FIELD_INT, - PURPLE_ROOMLIST_FIELD_STRING /**< We do a g_strdup on the passed value if it's this type. */ - -} PurpleRoomlistFieldType; - -#include "account.h" -#include - -/**************************************************************************/ -/** Data Structures */ -/**************************************************************************/ - -/** - * Represents a list of rooms for a given connection on a given protocol. - */ -struct _PurpleRoomlist { - PurpleAccount *account; /**< The account this list belongs to. */ - GList *fields; /**< The fields. */ - GList *rooms; /**< The list of rooms. */ - gboolean in_progress; /**< The listing is in progress. */ - gpointer ui_data; /**< UI private data. */ - gpointer proto_data; /** Prpl private data. */ - guint ref; /**< The reference count. */ -}; - -/** - * Represents a room. - */ -struct _PurpleRoomlistRoom { - PurpleRoomlistRoomType type; /**< The type of room. */ - gchar *name; /**< The name of the room. */ - GList *fields; /**< Other fields. */ - PurpleRoomlistRoom *parent; /**< The parent room, or NULL. */ - gboolean expanded_once; /**< A flag the UI uses to avoid multiple expand prpl cbs. */ -}; - -/** - * A field a room might have. - */ -struct _PurpleRoomlistField { - PurpleRoomlistFieldType type; /**< The type of field. */ - gchar *label; /**< The i18n user displayed name of the field. */ - gchar *name; /**< The internal name of the field. */ - gboolean hidden; /**< Hidden? */ -}; - -/** - * The room list ops to be filled out by the UI. - */ -struct _PurpleRoomlistUiOps { - void (*show_with_account)(PurpleAccount *account); /**< Force the ui to pop up a dialog and get the list */ - void (*create)(PurpleRoomlist *list); /**< A new list was created. */ - void (*set_fields)(PurpleRoomlist *list, GList *fields); /**< Sets the columns. */ - void (*add_room)(PurpleRoomlist *list, PurpleRoomlistRoom *room); /**< Add a room to the list. */ - void (*in_progress)(PurpleRoomlist *list, gboolean flag); /**< Are we fetching stuff still? */ - void (*destroy)(PurpleRoomlist *list); /**< We're destroying list. */ - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Room List API */ -/**************************************************************************/ -/*@{*/ - -/** - * This is used to get the room list on an account, asking the UI - * to pop up a dialog with the specified account already selected, - * and pretend the user clicked the get list button. - * While we're pretending, predend I didn't say anything about dialogs - * or buttons, since this is the core. - * - * @param account The account to get the list on. - */ -void purple_roomlist_show_with_account(PurpleAccount *account); - -/** - * Returns a newly created room list object. - * - * It has an initial reference count of 1. - * - * @param account The account that's listing rooms. - * @return The new room list handle. - */ -PurpleRoomlist *purple_roomlist_new(PurpleAccount *account); - -/** - * Increases the reference count on the room list. - * - * @param list The object to ref. - */ -void purple_roomlist_ref(PurpleRoomlist *list); - -/** - * Decreases the reference count on the room list. - * - * The room list will be destroyed when this reaches 0. - * - * @param list The room list object to unref and possibly - * destroy. - */ -void purple_roomlist_unref(PurpleRoomlist *list); - -/** - * Set the different field types and their names for this protocol. - * - * This must be called before purple_roomlist_room_add(). - * - * @param list The room list. - * @param fields A GList of PurpleRoomlistField's. UI's are encouraged - * to default to displaying them in the order given. - */ -void purple_roomlist_set_fields(PurpleRoomlist *list, GList *fields); - -/** - * Set the "in progress" state of the room list. - * - * The UI is encouraged to somehow hint to the user - * whether or not we're busy downloading a room list or not. - * - * @param list The room list. - * @param in_progress We're downloading it, or we're not. - */ -void purple_roomlist_set_in_progress(PurpleRoomlist *list, gboolean in_progress); - -/** - * Gets the "in progress" state of the room list. - * - * The UI is encouraged to somehow hint to the user - * whether or not we're busy downloading a room list or not. - * - * @param list The room list. - * @return True if we're downloading it, or false if we're not. - */ -gboolean purple_roomlist_get_in_progress(PurpleRoomlist *list); - -/** - * Adds a room to the list of them. - * - * @param list The room list. - * @param room The room to add to the list. The GList of fields must be in the same - order as was given in purple_roomlist_set_fields(). -*/ -void purple_roomlist_room_add(PurpleRoomlist *list, PurpleRoomlistRoom *room); - -/** - * Returns a PurpleRoomlist structure from the prpl, and - * instructs the prpl to start fetching the list. - * - * @param gc The PurpleConnection to have get a list. - * - * @return A PurpleRoomlist* or @c NULL if the protocol - * doesn't support that. - */ -PurpleRoomlist *purple_roomlist_get_list(PurpleConnection *gc); - -/** - * Tells the prpl to stop fetching the list. - * If this is possible and done, the prpl will - * call set_in_progress with @c FALSE and possibly - * unref the list if it took a reference. - * - * @param list The room list to cancel a get_list on. - */ -void purple_roomlist_cancel_get_list(PurpleRoomlist *list); - -/** - * Tells the prpl that a category was expanded. - * - * On some protocols, the rooms in the category - * won't be fetched until this is called. - * - * @param list The room list. - * @param category The category that was expanded. The expression - * (category->type & PURPLE_ROOMLIST_ROOMTYPE_CATEGORY) - * must be true. - */ -void purple_roomlist_expand_category(PurpleRoomlist *list, PurpleRoomlistRoom *category); - -/** - * Get the list of fields for a roomlist. - * - * @param roomlist The roomlist, which must not be @c NULL. - * @constreturn A list of fields - * @since 2.4.0 - */ -GList * purple_roomlist_get_fields(PurpleRoomlist *roomlist); - -/*@}*/ - -/**************************************************************************/ -/** @name Room API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new room, to be added to the list. - * - * @param type The type of room. - * @param name The name of the room. - * @param parent The room's parent, if any. - * - * @return A new room. - */ -PurpleRoomlistRoom *purple_roomlist_room_new(PurpleRoomlistRoomType type, const gchar *name, - PurpleRoomlistRoom *parent); - -/** - * Adds a field to a room. - * - * @param list The room list the room belongs to. - * @param room The room. - * @param field The field to append. Strings get g_strdup'd internally. - */ -void purple_roomlist_room_add_field(PurpleRoomlist *list, PurpleRoomlistRoom *room, gconstpointer field); - -/** - * Join a room, given a PurpleRoomlistRoom and it's associated PurpleRoomlist. - * - * @param list The room list the room belongs to. - * @param room The room to join. - */ -void purple_roomlist_room_join(PurpleRoomlist *list, PurpleRoomlistRoom *room); - -/** - * Get the type of a room. - * @param room The room, which must not be @c NULL. - * @return The type of the room. - * @since 2.4.0 - */ -PurpleRoomlistRoomType purple_roomlist_room_get_type(PurpleRoomlistRoom *room); - -/** - * Get the name of a room. - * @param room The room, which must not be @c NULL. - * @return The name of the room. - * @since 2.4.0 - */ -const char * purple_roomlist_room_get_name(PurpleRoomlistRoom *room); - -/** - * Get the parent of a room. - * @param room The room, which must not be @c NULL. - * @return The parent of the room, which can be @c NULL. - * @since 2.4.0 - */ -PurpleRoomlistRoom * purple_roomlist_room_get_parent(PurpleRoomlistRoom *room); - -/** - * Get the list of fields for a room. - * - * @param room The room, which must not be @c NULL. - * @constreturn A list of fields - * @since 2.4.0 - */ -GList * purple_roomlist_room_get_fields(PurpleRoomlistRoom *room); - -/*@}*/ - -/**************************************************************************/ -/** @name Room Field API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new field. - * - * @param type The type of the field. - * @param label The i18n'ed, user displayable name. - * @param name The internal name of the field. - * @param hidden Hide the field. - * - * @return A new PurpleRoomlistField, ready to be added to a GList and passed to - * purple_roomlist_set_fields(). - */ -PurpleRoomlistField *purple_roomlist_field_new(PurpleRoomlistFieldType type, - const gchar *label, const gchar *name, - gboolean hidden); - -/** - * Get the type of a field. - * - * @param field A PurpleRoomlistField, which must not be @c NULL. - * - * @return The type of the field. - * @since 2.4.0 - */ -PurpleRoomlistFieldType purple_roomlist_field_get_type(PurpleRoomlistField *field); - -/** - * Get the label of a field. - * - * @param field A PurpleRoomlistField, which must not be @c NULL. - * - * @return The label of the field. - * @since 2.4.0 - */ -const char * purple_roomlist_field_get_label(PurpleRoomlistField *field); - -/** - * Check whether a roomlist-field is hidden. - * @param field A PurpleRoomlistField, which must not be @c NULL. - * - * @return @c TRUE if the field is hidden, @c FALSE otherwise. - * @since 2.4.0 - */ -gboolean purple_roomlist_field_get_hidden(PurpleRoomlistField *field); - -/*@}*/ - -/**************************************************************************/ -/** @name UI Registration Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations structure to be used in all purple room lists. - * - * @param ops The UI operations structure. - */ -void purple_roomlist_set_ui_ops(PurpleRoomlistUiOps *ops); - -/** - * Returns the purple window UI operations structure to be used in - * new windows. - * - * @return A filled-out PurpleRoomlistUiOps structure. - */ -PurpleRoomlistUiOps *purple_roomlist_get_ui_ops(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_ROOMLIST_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/savedstatuses.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/savedstatuses.h deleted file mode 100644 index bd5b091..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/savedstatuses.h +++ /dev/null @@ -1,425 +0,0 @@ -/** - * @file savedstatuses.h Saved Status API - * @ingroup core - * @see @ref savedstatus-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_SAVEDSTATUSES_H_ -#define _PURPLE_SAVEDSTATUSES_H_ - -/** - * Saved statuses don't really interact much with the rest of Purple. It - * could really be a plugin. It's just a list of away states. When - * a user chooses one of the saved states, their Purple accounts are set - * to the settings of that state. - * - * In the savedstatus API, there is the concept of a 'transient' - * saved status. A transient saved status is one that is not - * permanent. Purple will removed it automatically if it isn't - * used for a period of time. Transient saved statuses don't - * have titles and they don't show up in the list of saved - * statuses. In fact, if a saved status does not have a title - * then it is transient. If it does have a title, then it is not - * transient. - * - * What good is a transient status, you ask? They can be used to - * keep track of the user's 5 most recently used statuses, for - * example. Basically if they just set a message on the fly, - * we'll cache it for them in case they want to use it again. If - * they don't use it again, we'll just delete it. - */ - -/* - * TODO: Hmm. We should probably just be saving PurplePresences. That's - * something we should look into once the status box gets fleshed - * out more. - */ - -typedef struct _PurpleSavedStatus PurpleSavedStatus; -typedef struct _PurpleSavedStatusSub PurpleSavedStatusSub; - -#include "status.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Saved status subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Create a new saved status. This will add the saved status to the - * list of saved statuses and writes the revised list to status.xml. - * - * @param title The title of the saved status. This must be - * unique. Or, if you want to create a transient - * saved status, then pass in NULL. - * @param type The type of saved status. - * - * @return The newly created saved status, or NULL if the title you - * used was already taken. - */ -PurpleSavedStatus *purple_savedstatus_new(const char *title, - PurpleStatusPrimitive type); - -/** - * Set the title for the given saved status. - * - * @param status The saved status. - * @param title The title of the saved status. - */ -void purple_savedstatus_set_title(PurpleSavedStatus *status, - const char *title); - -/** - * Set the type for the given saved status. - * - * @param status The saved status. - * @param type The type of saved status. - */ -void purple_savedstatus_set_type(PurpleSavedStatus *status, - PurpleStatusPrimitive type); - -/** - * Set the message for the given saved status. - * - * @param status The saved status. - * @param message The message, or NULL if you want to unset the - * message for this status. - */ -void purple_savedstatus_set_message(PurpleSavedStatus *status, - const char *message); - -/** - * Set a substatus for an account in a saved status. - * - * @param status The saved status. - * @param account The account. - * @param type The status type for the account in the staved - * status. - * @param message The message for the account in the substatus. - */ -void purple_savedstatus_set_substatus(PurpleSavedStatus *status, - const PurpleAccount *account, - const PurpleStatusType *type, - const char *message); - -/** - * Unset a substatus for an account in a saved status. This clears - * the previosly set substatus for the PurpleSavedStatus. If this - * saved status is activated then this account will use the default - * status type and message. - * - * @param saved_status The saved status. - * @param account The account. -*/ -void purple_savedstatus_unset_substatus(PurpleSavedStatus *saved_status, - const PurpleAccount *account); - -/** - * Delete a saved status. This removes the saved status from the list - * of saved statuses, and writes the revised list to status.xml. - * - * @param title The title of the saved status. - * - * @return TRUE if the status was successfully deleted. FALSE if the - * status could not be deleted because no saved status exists - * with the given title. - */ -gboolean purple_savedstatus_delete(const char *title); - -/** - * Delete a saved status. This removes the saved status from the list - * of saved statuses, and writes the revised list to status.xml. - * - * @param saved_status the status to delete, the pointer is invalid after - * the call - * - */ -void purple_savedstatus_delete_by_status(PurpleSavedStatus *saved_status); - -/** - * Returns all saved statuses. - * - * @constreturn A list of saved statuses. - */ -GList *purple_savedstatuses_get_all(void); - -/** - * Returns the n most popular saved statuses. "Popularity" is - * determined by when the last time a saved_status was used and - * how many times it has been used. Transient statuses without - * messages are not included in the list. - * - * @param how_many The maximum number of saved statuses - * to return, or '0' to get all saved - * statuses sorted by popularity. - * @return A linked list containing at most how_many - * PurpleSavedStatuses. This list should be - * g_list_free'd by the caller (but the - * PurpleSavedStatuses must not be free'd). - */ -GList *purple_savedstatuses_get_popular(unsigned int how_many); - -/** - * Returns the currently selected saved status. If we are idle - * then this returns purple_savedstatus_get_idleaway(). Otherwise - * it returns purple_savedstatus_get_default(). - * - * @return A pointer to the in-use PurpleSavedStatus. - * This function never returns NULL. - */ -PurpleSavedStatus *purple_savedstatus_get_current(void); - -/** - * Returns the default saved status that is used when our - * accounts are not idle-away. - * - * @return A pointer to the in-use PurpleSavedStatus. - * This function never returns NULL. - */ -PurpleSavedStatus *purple_savedstatus_get_default(void); - -/** - * Returns the saved status that is used when your - * accounts become idle-away. - * - * @return A pointer to the idle-away PurpleSavedStatus. - * This function never returns NULL. - */ -PurpleSavedStatus *purple_savedstatus_get_idleaway(void); - -/** - * Return TRUE if we are currently idle-away. Otherwise - * returns FALSE. - * - * @return TRUE if our accounts have been set to idle-away. - */ -gboolean purple_savedstatus_is_idleaway(void); - -/** - * Set whether accounts in Purple are idle-away or not. - * - * @param idleaway TRUE if accounts should be switched to use the - * idle-away saved status. FALSE if they should - * be switched to use the default status. - */ -void purple_savedstatus_set_idleaway(gboolean idleaway); - -/** - * Returns the status to be used when purple is starting up - * - * @return A pointer to the startup PurpleSavedStatus. - * This function never returns NULL. - */ -PurpleSavedStatus *purple_savedstatus_get_startup(void); - -/** - * Finds a saved status with the specified title. - * - * @param title The name of the saved status. - * - * @return The saved status if found, or NULL. - */ -PurpleSavedStatus *purple_savedstatus_find(const char *title); - -/** - * Finds a saved status with the specified creation time. - * - * @param creation_time The timestamp when the saved - * status was created. - * - * @return The saved status if found, or NULL. - */ -PurpleSavedStatus *purple_savedstatus_find_by_creation_time(time_t creation_time); - -/** - * Finds a saved status with the specified primitive and message. - * - * @param type The PurpleStatusPrimitive for the status you're trying - * to find. - * @param message The message for the status you're trying - * to find. - * - * @return The saved status if found, or NULL. - */ -PurpleSavedStatus *purple_savedstatus_find_transient_by_type_and_message(PurpleStatusPrimitive type, const char *message); - -/** - * Determines if a given saved status is "transient." - * A transient saved status is one that was not - * explicitly added by the user. Transient statuses - * are automatically removed if they are not used - * for a period of time. - * - * A transient saved statuses is automatically - * created by the status box when the user sets himself - * to one of the generic primitive statuses. The reason - * we need to save this status information is so we can - * restore it when Purple restarts. - * - * @param saved_status The saved status. - * - * @return TRUE if the saved status is transient. - */ -gboolean purple_savedstatus_is_transient(const PurpleSavedStatus *saved_status); - -/** - * Return the name of a given saved status. - * - * @param saved_status The saved status. - * - * @return The title. This value may be a static buffer which may - * be overwritten on subsequent calls to this function. If - * you need a reference to the title for prolonged use then - * you should make a copy of it. - */ -const char *purple_savedstatus_get_title(const PurpleSavedStatus *saved_status); - -/** - * Return the type of a given saved status. - * - * @param saved_status The saved status. - * - * @return The name. - */ -PurpleStatusPrimitive purple_savedstatus_get_type(const PurpleSavedStatus *saved_status); - -/** - * Return the default message of a given saved status. - * - * @param saved_status The saved status. - * - * @return The message. This will return NULL if the saved - * status does not have a message. This will - * contain the normal markup that is created by - * Purple's IMHTML (basically HTML markup). - */ -const char *purple_savedstatus_get_message(const PurpleSavedStatus *saved_status); - -/** - * Return the time in seconds-since-the-epoch when this - * saved status was created. Note: For any status created - * by Purple 1.5.0 or older this value will be invalid and - * very small (close to 0). This is because Purple 1.5.0 - * and older did not record the timestamp when the status - * was created. - * - * However, this value is guaranteed to be a unique - * identifier for the given saved status. - * - * @param saved_status The saved status. - * - * @return The timestamp when this saved status was created. - */ -time_t purple_savedstatus_get_creation_time(const PurpleSavedStatus *saved_status); - -/** - * Determine if a given saved status has "substatuses," - * or if it is a simple status (the same for all - * accounts). - * - * @param saved_status The saved status. - * - * @return TRUE if the saved_status has substatuses. - * FALSE otherwise. - */ -gboolean purple_savedstatus_has_substatuses(const PurpleSavedStatus *saved_status); - -/** - * Get the substatus for an account in a saved status. - * - * @param saved_status The saved status. - * @param account The account. - * - * @return The PurpleSavedStatusSub for the account, or NULL if - * the given account does not have a substatus that - * differs from the default status of this PurpleSavedStatus. - */ -PurpleSavedStatusSub *purple_savedstatus_get_substatus( - const PurpleSavedStatus *saved_status, - const PurpleAccount *account); - -/** - * Get the status type of a given substatus. - * - * @param substatus The substatus. - * - * @return The status type. - */ -const PurpleStatusType *purple_savedstatus_substatus_get_type(const PurpleSavedStatusSub *substatus); - -/** - * Get the message of a given substatus. - * - * @param substatus The substatus. - * - * @return The message of the substatus, or NULL if this substatus does - * not have a message. - */ -const char *purple_savedstatus_substatus_get_message(const PurpleSavedStatusSub *substatus); - -/** - * Sets the statuses for all your accounts to those specified - * by the given saved_status. This function calls - * purple_savedstatus_activate_for_account() for all your accounts. - * - * @param saved_status The status you want to set your accounts to. - */ -void purple_savedstatus_activate(PurpleSavedStatus *saved_status); - -/** - * Sets the statuses for a given account to those specified - * by the given saved_status. - * - * @param saved_status The status you want to set your accounts to. - * @param account The account whose statuses you want to change. - */ -void purple_savedstatus_activate_for_account(const PurpleSavedStatus *saved_status, PurpleAccount *account); - -/** - * Get the handle for the status subsystem. - * - * @return the handle to the status subsystem - */ -void *purple_savedstatuses_get_handle(void); - -/** - * Initializes the status subsystem. - */ -void purple_savedstatuses_init(void); - -/** - * Uninitializes the status subsystem. - */ -void purple_savedstatuses_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SAVEDSTATUSES_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sbconn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sbconn.h deleted file mode 100644 index 3b59172..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sbconn.h +++ /dev/null @@ -1,41 +0,0 @@ -/** - * @file sbconn.h MSN Switchboard Connection - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef MSN_SBCONN_H -#define MSN_SBCONN_H - -#include "msg.h" -#include "slplink.h" - -#define MSN_SBCONN_MAX_SIZE 1202 - -void msn_sbconn_send_part(MsnSlpLink *slplink, MsnSlpMessagePart *part); - -void msn_switchboard_send_msg(MsnSwitchBoard *swboard, MsnMessage *msg, - gboolean queue); - -void -msn_sbconn_process_queue(MsnSwitchBoard *swboard); - -#endif /* MSN_SBCONN_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/search.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/search.h deleted file mode 100644 index c1f5a93..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/search.h +++ /dev/null @@ -1,152 +0,0 @@ -/** - * @file search.h - * - * purple - * - * Copyright (C) 2005 Bartosz Oler - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - - -#ifndef _PURPLE_GG_SEARCH_H -#define _PURPLE_GG_SEARCH_H - -#include "connection.h" - -#include -#include "gg.h" - - -typedef enum { - GGP_SEARCH_TYPE_INFO, - GGP_SEARCH_TYPE_FULL - -} GGPSearchType; - -typedef struct { - - char *uin; - char *lastname; - char *firstname; - char *nickname; - char *city; - char *birthyear; - char *gender; - char *active; - - GGPSearchType search_type; - guint32 seq; - guint16 page_number; - guint16 page_size; /* how many contacts fits into one page of results */ - - void *user_data; - void *window; -} GGPSearchForm; - -typedef GHashTable GGPSearches; - - -/** - * Create a new GGPSearchForm structure, and set the fields - * to the sane defaults. - * - * @return Newly allocated GGPSearchForm. - */ -GGPSearchForm * -ggp_search_form_new(GGPSearchType st); - -/** - * Destroy a Search Form. - * - * @param form Search Form to destroy. - */ -void -ggp_search_form_destroy(GGPSearchForm *form); - -/** - * Add a search to the list of searches. - * - * @param searches The list of searches. - * @param seq Search (form) ID number. - * @param form The search form to add. - */ -void -ggp_search_add(GGPSearches *searches, guint32 seq, GGPSearchForm *form); - -/** - * Remove a search from the list. - * - * If you want to destory the search completely also call: - * ggp_search_form_destroy(). - * - * @param searches The list of searches. - * @param seq ID number of the search. - */ -void -ggp_search_remove(GGPSearches *searches, guint32 seq); - -/** - * Return the search with the specified ID. - * - * @param searches The list of searches. - * @param seq ID number of the search. - */ -GGPSearchForm * -ggp_search_get(GGPSearches *searches, guint32 seq); - -/** - * Create a new GGPSearches structure. - * - * @return GGPSearches instance. - */ -GGPSearches * -ggp_search_new(void); - -/** - * Destroy GGPSearches instance. - * - * @param searches GGPSearches instance. - */ -void -ggp_search_destroy(GGPSearches *searches); - -/** - * Initiate a search in the public directory. - * - * @param gc PurpleConnection. - * @param form Filled in GGPSearchForm. - * - * @return Sequence number of a search or 0 if an error occurred. - */ -guint32 -ggp_search_start(PurpleConnection *gc, GGPSearchForm *form); - -/* - * Return converted to the UTF-8 value of the specified field. - * - * @param res Public directory look-up result. - * @param num Id of the record. - * @param fileld Name of the field. - * - * @return UTF-8 encoded value of the field. - */ -char * -ggp_search_get_result(gg_pubdir50_t res, int num, const char *field); - - -#endif /* _PURPLE_GG_SEARCH_H */ - -/* vim: set ts=8 sts=0 sw=8 noet: */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/servconn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/servconn.h deleted file mode 100644 index b075fd0..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/servconn.h +++ /dev/null @@ -1,193 +0,0 @@ -/** - * @file servconn.h Server connection functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SERVCONN_H -#define MSN_SERVCONN_H - -typedef struct _MsnServConn MsnServConn; - -/** - * Connection error types. - */ -typedef enum -{ - MSN_SERVCONN_ERROR_NONE, - MSN_SERVCONN_ERROR_CONNECT, - MSN_SERVCONN_ERROR_WRITE, - MSN_SERVCONN_ERROR_READ -} MsnServConnError; - -/** - * Connection types. - */ -typedef enum -{ - MSN_SERVCONN_NS, - MSN_SERVCONN_SB -} MsnServConnType; - -#include "internal.h" -#include "proxy.h" - -#include "cmdproc.h" -#include "httpconn.h" -#include "session.h" - -/** - * A Connection. - */ -struct _MsnServConn -{ - MsnServConnType type; /**< The type of this connection. */ - MsnSession *session; /**< The MSN session of this connection. */ - MsnCmdProc *cmdproc; /**< The command processor of this connection. */ - - PurpleProxyConnectData *connect_data; - - gboolean connected; /**< A flag that states if it's connected. */ - gboolean processing; /**< A flag that states if something is working - with this connection. */ - gboolean wasted; /**< A flag that states if it should be destroyed. */ - - char *host; /**< The host this connection is connected or should be - connected to. */ - int num; /**< A number id of this connection. */ - - MsnHttpConn *httpconn; /**< The HTTP connection this connection should use. */ - - int fd; /**< The connection's file descriptor. */ - int inpa; /**< The connection's input handler. */ - - char *rx_buf; /**< The receive buffer. */ - int rx_len; /**< The receive buffer lenght. */ - - size_t payload_len; /**< The length of the payload. - It's only set when we've received a command that - has a payload. */ - - PurpleCircBuffer *tx_buf; - guint tx_handler; - guint timeout_sec; - guint timeout_handle; - - void (*connect_cb)(MsnServConn *); /**< The callback to call when connecting. */ - void (*disconnect_cb)(MsnServConn *); /**< The callback to call when disconnecting. */ - void (*destroy_cb)(MsnServConn *); /**< The callback to call when destroying. */ -}; - -/** - * Creates a new connection object. - * - * @param session The session. - * @param type The type of the connection. - */ -MsnServConn *msn_servconn_new(MsnSession *session, MsnServConnType type); - -/** - * Destroys a connection object. - * - * @param servconn The connection. - */ -void msn_servconn_destroy(MsnServConn *servconn); - -/** - * Connects to a host. - * - * @param servconn The connection. - * @param host The host. - * @param port The port. - * @param force Force this servconn to connect to a new server. - */ -gboolean msn_servconn_connect(MsnServConn *servconn, const char *host, int port, - gboolean force); - -/** - * Disconnects. - * - * @param servconn The connection. - */ -void msn_servconn_disconnect(MsnServConn *servconn); - -/** - * Sets the connect callback. - * - * @param servconn The servconn. - * @param connect_cb The connect callback. - */ -void msn_servconn_set_connect_cb(MsnServConn *servconn, - void (*connect_cb)(MsnServConn *)); -/** - * Sets the disconnect callback. - * - * @param servconn The servconn. - * @param disconnect_cb The disconnect callback. - */ -void msn_servconn_set_disconnect_cb(MsnServConn *servconn, - void (*disconnect_cb)(MsnServConn *)); -/** - * Sets the destroy callback. - * - * @param servconn The servconn that's being destroyed. - * @param destroy_cb The destroy callback. - */ -void msn_servconn_set_destroy_cb(MsnServConn *servconn, - void (*destroy_cb)(MsnServConn *)); - -/** - * Writes a chunck of data to the servconn. - * - * @param servconn The servconn. - * @param buf The data to write. - * @param size The size of the data. - */ -gssize msn_servconn_write(MsnServConn *servconn, const char *buf, - size_t size); - -/** - * Function to call whenever an error related to a switchboard occurs. - * - * @param servconn The servconn. - * @param error The error that happened. - */ -void msn_servconn_got_error(MsnServConn *servconn, MsnServConnError error, - const char *reason); - -/** - * Process the data in servconn->rx_buf. This is called after reading - * data from the socket. - * - * @param servconn The servconn. - * - * @return @c NULL if servconn was destroyed, 'servconn' otherwise. - */ -MsnServConn *msn_servconn_process_data(MsnServConn *servconn); - -/** - * Set a idle timeout fot this servconn - * - * @param servconn The servconn - * @param seconds The idle timeout in seconds - */ -void msn_servconn_set_idle_timeout(MsnServConn *servconn, guint seconds); - -#endif /* MSN_SERVCONN_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/server.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/server.h deleted file mode 100644 index 5040115..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/server.h +++ /dev/null @@ -1,218 +0,0 @@ -/** - * @file server.h Server API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_SERVER_H_ -#define _PURPLE_SERVER_H_ - -#include "account.h" -#include "conversation.h" -#include "prpl.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Send a typing message to a given user over a given connection. - * - * TODO: Could probably move this into the conversation API. - * - * @param gc The connection over which to send the typing notification. - * @param name The user to send the typing notification to. - * @param state One of PURPLE_TYPING, PURPLE_TYPED, or PURPLE_NOT_TYPING. - * @return A quiet-period, specified in seconds, where Purple will not - * send any additional typing notification messages. Most - * protocols should return 0, which means that no additional - * PURPLE_TYPING messages need to be sent. If this is 5, for - * example, then Purple will wait five seconds, and if the Purple - * user is still typing then Purple will send another PURPLE_TYPING - * message. - */ -unsigned int serv_send_typing(PurpleConnection *gc, const char *name, PurpleTypingState state); - -void serv_move_buddy(PurpleBuddy *, PurpleGroup *, PurpleGroup *); -int serv_send_im(PurpleConnection *, const char *, const char *, PurpleMessageFlags flags); - -/** Get information about an account's attention commands, from the prpl. - * - * @return The attention command numbered 'code' from the prpl's attention_types, or NULL. - */ -PurpleAttentionType *purple_get_attention_type_from_code(PurpleAccount *account, guint type_code); - -/** Send an attention request message. - * - * @deprecated Use purple_prpl_send_attention() instead. - * - * @param gc The connection to send the message on. - * @param who Whose attention to request. - * @param type_code An index into the prpl's attention_types list determining the type - * of the attention request command to send. 0 if prpl only defines one - * (for example, Yahoo and MSN), but some protocols define more (MySpaceIM). - * - * Note that you can't send arbitrary PurpleAttentionType's, because there is - * only a fixed set of attention commands. - */ -void serv_send_attention(PurpleConnection *gc, const char *who, guint type_code); - -/** Process an incoming attention message. - * - * @deprecated Use purple_prpl_got_attention() instead. - * - * @param gc The connection that received the attention message. - * @param who Who requested your attention. - * @param type_code An index into the prpl's attention_types list determining the type - * of the attention request command to send. - */ -void serv_got_attention(PurpleConnection *gc, const char *who, guint type_code); - -void serv_get_info(PurpleConnection *, const char *); -void serv_set_info(PurpleConnection *, const char *); - -void serv_add_permit(PurpleConnection *, const char *); -void serv_add_deny(PurpleConnection *, const char *); -void serv_rem_permit(PurpleConnection *, const char *); -void serv_rem_deny(PurpleConnection *, const char *); -void serv_set_permit_deny(PurpleConnection *); -void serv_chat_invite(PurpleConnection *, int, const char *, const char *); -void serv_chat_leave(PurpleConnection *, int); -void serv_chat_whisper(PurpleConnection *, int, const char *, const char *); -int serv_chat_send(PurpleConnection *, int, const char *, PurpleMessageFlags flags); -void serv_alias_buddy(PurpleBuddy *); -void serv_got_alias(PurpleConnection *gc, const char *who, const char *alias); - -/** - * A protocol plugin should call this when it retrieves a private alias from - * the server. Private aliases are the aliases the user sets, while public - * aliases are the aliases or display names that buddies set for themselves. - * - * @param gc The connection on which the alias was received. - * @param who The name of the buddy whose alias was received. - * @param alias The alias that was received. - */ -void purple_serv_got_private_alias(PurpleConnection *gc, const char *who, const char *alias); - - -/** - * Receive a typing message from a remote user. Either PURPLE_TYPING - * or PURPLE_TYPED. If the user has stopped typing then use - * serv_got_typing_stopped instead. - * - * TODO: Could probably move this into the conversation API. - * - * @param gc The connection on which the typing message was received. - * @param name The name of the remote user. - * @param timeout If this is a number greater than 0, then - * Purple will wait this number of seconds and then - * set this buddy to the PURPLE_NOT_TYPING state. This - * is used by protocols that send repeated typing messages - * while the user is composing the message. - * @param state The typing state received - */ -void serv_got_typing(PurpleConnection *gc, const char *name, int timeout, - PurpleTypingState state); - -/** - * TODO: Could probably move this into the conversation API. - */ -void serv_got_typing_stopped(PurpleConnection *gc, const char *name); - -void serv_got_im(PurpleConnection *gc, const char *who, const char *msg, - PurpleMessageFlags flags, time_t mtime); - -/** - * @param data The hash function should be g_str_hash() and the equal - * function should be g_str_equal(). - */ -void serv_join_chat(PurpleConnection *, GHashTable *data); - -/** - * @param data The hash function should be g_str_hash() and the equal - * function should be g_str_equal(). - */ -void serv_reject_chat(PurpleConnection *, GHashTable *data); - -/** - * Called by a prpl when an account is invited into a chat. - * - * @param gc The connection on which the invite arrived. - * @param name The name of the chat you're being invited to. - * @param who The username of the person inviting the account. - * @param message The optional invite message. - * @param data The components necessary if you want to call serv_join_chat(). - * The hash function should be g_str_hash() and the equal - * function should be g_str_equal(). - */ -void serv_got_chat_invite(PurpleConnection *gc, const char *name, - const char *who, const char *message, - GHashTable *data); - -/** - * Called by a prpl when an account has joined a chat. - * - * @param gc The connection on which the chat was joined. - * @param id The id of the chat, assigned by the prpl. - * @param name The name of the chat. - * @return The resulting conversation - */ -PurpleConversation *serv_got_joined_chat(PurpleConnection *gc, - int id, const char *name); -/** - * Called by a prpl when an attempt to join a chat via serv_join_chat() - * fails. - * - * @param gc The connection on which chat joining failed - * @param data The components passed to serv_join_chat() originally. - * The hash function should be g_str_hash() and the equal - * function should be g_str_equal(). - */ -void purple_serv_got_join_chat_failed(PurpleConnection *gc, GHashTable *data); - -/** - * Called by a prpl when an account has left a chat. - * - * @param g The connection on which the chat was left. - * @param id The id of the chat, as assigned by the prpl. - */ -void serv_got_chat_left(PurpleConnection *g, int id); - -/** - * Called by a prpl when a message has been received in a chat. - * - * @param g The connection on which the message was received. - * @param id The id of the chat, as assigned by the prpl. - * @param who The name of the user who sent the message. - * @param flags The flags of the message. - * @param message The message received in the chat. - * @param mtime The time when the message was received. - */ -void serv_got_chat_in(PurpleConnection *g, int id, const char *who, - PurpleMessageFlags flags, const char *message, time_t mtime); -void serv_send_file(PurpleConnection *gc, const char *who, const char *file); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SERVER_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/session.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/session.h deleted file mode 100644 index e94b3b7..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/session.h +++ /dev/null @@ -1,245 +0,0 @@ -/** - * @file session.h MSN session functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SESSION_H -#define MSN_SESSION_H - -typedef struct _MsnSession MsnSession; - -/** - * Types of errors. - */ -typedef enum -{ - MSN_ERROR_SERVCONN, - MSN_ERROR_UNSUPPORTED_PROTOCOL, - MSN_ERROR_HTTP_MALFORMED, - MSN_ERROR_AUTH, - MSN_ERROR_BAD_BLIST, - MSN_ERROR_SIGN_OTHER, - MSN_ERROR_SERV_DOWN, - MSN_ERROR_SERV_UNAVAILABLE -} MsnErrorType; - -/** - * Login steps. - */ -typedef enum -{ - MSN_LOGIN_STEP_START, - MSN_LOGIN_STEP_HANDSHAKE, - MSN_LOGIN_STEP_TRANSFER, - MSN_LOGIN_STEP_HANDSHAKE2, - MSN_LOGIN_STEP_AUTH_START, - MSN_LOGIN_STEP_GET_COOKIE, - MSN_LOGIN_STEP_AUTH_END, - MSN_LOGIN_STEP_SYN, - MSN_LOGIN_STEP_END -} MsnLoginStep; - -#define MSN_LOGIN_STEPS MSN_LOGIN_STEP_END - -#define MSN_LOGIN_FQY_TIMEOUT 30 - -#define MSN_LOGIN_FQY_TIMEOUT 30 - -#include "nexus.h" -#include "notification.h" -#include "oim.h" -#include "switchboard.h" -#include "user.h" -#include "userlist.h" - -struct _MsnSession -{ - PurpleAccount *account; - MsnUser *user; - - guint protocol_ver; - - MsnLoginStep login_step; /**< The current step in the login process. */ - - gboolean connected:1; - gboolean logged_in:1; /**< A temporal flag to ignore local buddy list adds. */ - gboolean destroying:1; /**< A flag that states if the session is being destroyed. */ - gboolean http_method:1; - gboolean enable_mpop:1; /**< Use Multiple Points of Presence? */ - int adl_fqy; /**< A count of ADL/FQY so status is only changed once. */ - guint login_timeout; /**< Timeout to force status change if ADL/FQY fail. */ - - MsnNotification *notification; - MsnNexus *nexus; - MsnOim *oim; - MsnUserList *userlist; - char *abch_cachekey; - - int servconns_count; /**< The count of server connections. */ - GList *switches; /**< The list of all the switchboards. */ - GList *slplinks; /**< The list of all the slplinks. */ - - /*psm info*/ - char *psm; - -#if 0 - char *blocked_text; -#endif - - struct - { - char *sid; - char *mspauth; - unsigned long sl; - char *client_ip; - int client_port; - char *mail_url; - gulong mail_timestamp; - gboolean email_enabled; - } passport_info; - - GHashTable *soap_table; - guint soap_cleanup_handle; - char *guid; - - GSList *url_datas; /**< PurpleUtilFetchUrlData to be cancelled on exit */ -}; - -/** - * Creates an MSN session. - * - * @param account The account. - * - * @return The new MSN session. - */ -MsnSession *msn_session_new(PurpleAccount *account); - -/** - * Destroys an MSN session. - * - * @param session The MSN session to destroy. - */ -void msn_session_destroy(MsnSession *session); - -/** - * Connects to and initiates an MSN session. - * - * @param session The MSN session. - * @param host The dispatch server host. - * @param port The dispatch server port. - * @param http_method Whether to use or not http_method. - * - * @return @c TRUE on success, @c FALSE on failure. - */ -gboolean msn_session_connect(MsnSession *session, - const char *host, int port, - gboolean http_method); - -/** - * Disconnects from an MSN session. - * - * @param session The MSN session. - */ -void msn_session_disconnect(MsnSession *session); - - /** - * Finds a switchboard with the given username. - * - * @param session The MSN session. - * @param username The username to search for. - * - * @return The switchboard, if found. - */ -MsnSwitchBoard *msn_session_find_swboard(MsnSession *session, - const char *username); - - /** - * Finds a switchboard with the given conversation. - * - * @param session The MSN session. - * @param conv The conversation to search for. - * - * @return The switchboard, if found. - */ -MsnSwitchBoard *msn_session_find_swboard_with_conv(MsnSession *session, - PurpleConversation *conv); -/** - * Finds a switchboard with the given chat ID. - * - * @param session The MSN session. - * @param chat_id The chat ID to search for. - * - * @return The switchboard, if found. - */ -MsnSwitchBoard *msn_session_find_swboard_with_id(const MsnSession *session, - int chat_id); - -/** - * Returns a switchboard to communicate with certain username. - * - * @param session The MSN session. - * @param username The username to search for. - * @param flag The flag of the switchboard - * - * @return The switchboard. - */ -MsnSwitchBoard *msn_session_get_swboard(MsnSession *session, - const char *username, MsnSBFlag flag); - -/** - * Sets an error for the MSN session. - * - * @param session The MSN session. - * @param error The error. - * @param info Extra information. - */ -void msn_session_set_error(MsnSession *session, MsnErrorType error, - const char *info); - -/** - * Starts a timeout to initiate finishing login. Sometimes the server ignores - * our FQY requests, so this forces ourselves online eventually. - * - * @param session The MSN session. - */ -void -msn_session_activate_login_timeout(MsnSession *session); - -/** - * Sets the current step in the login process. - * - * @param session The MSN session. - * @param step The current step. - */ -void msn_session_set_login_step(MsnSession *session, MsnLoginStep step); - -/** - * Finish the login proccess. - * - * @param session The MSN session. - */ -void msn_session_finish_login(MsnSession *session); - -/*post message to User*/ -void msn_session_report_user(MsnSession *session,const char *passport, - const char *msg,PurpleMessageFlags flags); - -#endif /* MSN_SESSION_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/si.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/si.h deleted file mode 100644 index 9579479..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/si.h +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @file si.h SI transfer functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef PURPLE_JABBER_SI_H_ -#define PURPLE_JABBER_SI_H_ - -#include "ft.h" - -#include "jabber.h" - -void jabber_bytestreams_parse(JabberStream *js, const char *from, - JabberIqType type, const char *id, xmlnode *query); -void jabber_si_parse(JabberStream *js, const char *from, JabberIqType type, - const char *id, xmlnode *si); -PurpleXfer *jabber_si_new_xfer(PurpleConnection *gc, const char *who); -void jabber_si_xfer_send(PurpleConnection *gc, const char *who, const char *file); -void jabber_si_init(void); -void jabber_si_uninit(void); - -#endif /* PURPLE_JABBER_SI_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/signals.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/signals.h deleted file mode 100644 index 8499ceb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/signals.h +++ /dev/null @@ -1,380 +0,0 @@ -/** - * @file signals.h Signal API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_SIGNALS_H_ -#define _PURPLE_SIGNALS_H_ - -#include -#include "value.h" - -#define PURPLE_CALLBACK(func) ((PurpleCallback)func) - -typedef void (*PurpleCallback)(void); -typedef void (*PurpleSignalMarshalFunc)(PurpleCallback cb, va_list args, - void *data, void **return_val); - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Signal API */ -/**************************************************************************/ -/*@{*/ - -/** The priority of a signal connected using purple_signal_connect(). - * - * @see purple_signal_connect_priority() - */ -#define PURPLE_SIGNAL_PRIORITY_DEFAULT 0 -/** The largest signal priority; signals with this priority will be called - * last. (This is highest as in numerical value, not as in order of - * importance.) - * - * @see purple_signal_connect_priority(). - */ -#define PURPLE_SIGNAL_PRIORITY_HIGHEST 9999 -/** The smallest signal priority; signals with this priority will be called - * first. (This is lowest as in numerical value, not as in order of - * importance.) - * - * @see purple_signal_connect_priority(). - */ -#define PURPLE_SIGNAL_PRIORITY_LOWEST -9999 - -/** - * Registers a signal in an instance. - * - * @param instance The instance to register the signal for. - * @param signal The signal name. - * @param marshal The marshal function. - * @param ret_value The return value type, or NULL for no return value. - * @param num_values The number of values to be passed to the callbacks. - * @param ... The values to pass to the callbacks. - * - * @return The signal ID local to that instance, or 0 if the signal - * couldn't be registered. - * - * @see PurpleValue - */ -gulong purple_signal_register(void *instance, const char *signal, - PurpleSignalMarshalFunc marshal, - PurpleValue *ret_value, int num_values, ...); - -/** - * Unregisters a signal in an instance. - * - * @param instance The instance to unregister the signal for. - * @param signal The signal name. - */ -void purple_signal_unregister(void *instance, const char *signal); - -/** - * Unregisters all signals in an instance. - * - * @param instance The instance to unregister the signal for. - */ -void purple_signals_unregister_by_instance(void *instance); - -/** - * Returns a list of value types used for a signal. - * - * @param instance The instance the signal is registered to. - * @param signal The signal. - * @param ret_value The return value from the last signal handler. - * @param num_values The returned number of values. - * @param values The returned list of values. - */ -void purple_signal_get_values(void *instance, const char *signal, - PurpleValue **ret_value, - int *num_values, PurpleValue ***values); - -/** - * Connects a signal handler to a signal for a particular object. - * - * Take care not to register a handler function twice. Purple will - * not correct any mistakes for you in this area. - * - * @param instance The instance to connect to. - * @param signal The name of the signal to connect. - * @param handle The handle of the receiver. - * @param func The callback function. - * @param data The data to pass to the callback function. - * @param priority The priority with which the handler should be called. Signal - * handlers are called in ascending numerical order of @a - * priority from #PURPLE_SIGNAL_PRIORITY_LOWEST to - * #PURPLE_SIGNAL_PRIORITY_HIGHEST. - * - * @return The signal handler ID. - * - * @see purple_signal_disconnect() - */ -gulong purple_signal_connect_priority(void *instance, const char *signal, - void *handle, PurpleCallback func, void *data, int priority); - -/** - * Connects a signal handler to a signal for a particular object. - * (Its priority defaults to 0, aka #PURPLE_SIGNAL_PRIORITY_DEFAULT.) - * - * Take care not to register a handler function twice. Purple will - * not correct any mistakes for you in this area. - * - * @param instance The instance to connect to. - * @param signal The name of the signal to connect. - * @param handle The handle of the receiver. - * @param func The callback function. - * @param data The data to pass to the callback function. - * - * @return The signal handler ID. - * - * @see purple_signal_disconnect() - */ -gulong purple_signal_connect(void *instance, const char *signal, - void *handle, PurpleCallback func, void *data); - -/** - * Connects a signal handler to a signal for a particular object. - * - * The signal handler will take a va_args of arguments, instead of - * individual arguments. - * - * Take care not to register a handler function twice. Purple will - * not correct any mistakes for you in this area. - * - * @param instance The instance to connect to. - * @param signal The name of the signal to connect. - * @param handle The handle of the receiver. - * @param func The callback function. - * @param data The data to pass to the callback function. - * @param priority The priority with which the handler should be called. Signal - * handlers are called in ascending numerical order of @a - * priority from #PURPLE_SIGNAL_PRIORITY_LOWEST to - * #PURPLE_SIGNAL_PRIORITY_HIGHEST. - * - * @return The signal handler ID. - * - * @see purple_signal_disconnect() - */ -gulong purple_signal_connect_priority_vargs(void *instance, const char *signal, - void *handle, PurpleCallback func, void *data, int priority); - -/** - * Connects a signal handler to a signal for a particular object. - * (Its priority defaults to 0, aka #PURPLE_SIGNAL_PRIORITY_DEFAULT.) - * - * The signal handler will take a va_args of arguments, instead of - * individual arguments. - * - * Take care not to register a handler function twice. Purple will - * not correct any mistakes for you in this area. - * - * @param instance The instance to connect to. - * @param signal The name of the signal to connect. - * @param handle The handle of the receiver. - * @param func The callback function. - * @param data The data to pass to the callback function. - * - * @return The signal handler ID. - * - * @see purple_signal_disconnect() - */ -gulong purple_signal_connect_vargs(void *instance, const char *signal, - void *handle, PurpleCallback func, void *data); - -/** - * Disconnects a signal handler from a signal on an object. - * - * @param instance The instance to disconnect from. - * @param signal The name of the signal to disconnect. - * @param handle The handle of the receiver. - * @param func The registered function to disconnect. - * - * @see purple_signal_connect() - */ -void purple_signal_disconnect(void *instance, const char *signal, - void *handle, PurpleCallback func); - -/** - * Removes all callbacks associated with a receiver handle. - * - * @param handle The receiver handle. - */ -void purple_signals_disconnect_by_handle(void *handle); - -/** - * Emits a signal. - * - * @param instance The instance emitting the signal. - * @param signal The signal being emitted. - * - * @see purple_signal_connect() - * @see purple_signal_disconnect() - */ -void purple_signal_emit(void *instance, const char *signal, ...); - -/** - * Emits a signal, using a va_list of arguments. - * - * @param instance The instance emitting the signal. - * @param signal The signal being emitted. - * @param args The arguments list. - * - * @see purple_signal_connect() - * @see purple_signal_disconnect() - */ -void purple_signal_emit_vargs(void *instance, const char *signal, va_list args); - -/** - * Emits a signal and returns the first non-NULL return value. - * - * Further signal handlers are NOT called after a handler returns - * something other than NULL. - * - * @param instance The instance emitting the signal. - * @param signal The signal being emitted. - * - * @return The first non-NULL return value - */ -void *purple_signal_emit_return_1(void *instance, const char *signal, ...); - -/** - * Emits a signal and returns the first non-NULL return value. - * - * Further signal handlers are NOT called after a handler returns - * something other than NULL. - * - * @param instance The instance emitting the signal. - * @param signal The signal being emitted. - * @param args The arguments list. - * - * @return The first non-NULL return value - */ -void *purple_signal_emit_vargs_return_1(void *instance, const char *signal, - va_list args); - -/** - * Initializes the signals subsystem. - */ -void purple_signals_init(void); - -/** - * Uninitializes the signals subsystem. - */ -void purple_signals_uninit(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Marshal Functions */ -/**************************************************************************/ -/*@{*/ - -void purple_marshal_VOID( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__INT_INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_INT_INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_INT_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_UINT_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); - -void purple_marshal_INT__INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_INT__INT_INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_INT__POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_INT__POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); - -void purple_marshal_BOOLEAN__POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_BOOLEAN( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_UINT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); - -void purple_marshal_BOOLEAN__INT_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); - -void purple_marshal_POINTER__POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_POINTER__POINTER_INT( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_POINTER__POINTER_INT64( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_POINTER__POINTER_INT_BOOLEAN( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_POINTER__POINTER_INT64_BOOLEAN( - PurpleCallback cb, va_list args, void *data, void **return_val); -void purple_marshal_POINTER__POINTER_POINTER( - PurpleCallback cb, va_list args, void *data, void **return_val); -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SIGNALS_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slp.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slp.h deleted file mode 100644 index 0be19f0..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slp.h +++ /dev/null @@ -1,51 +0,0 @@ -/** - * @file slp.h MSNSLP support - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SLP_H -#define MSN_SLP_H - -#include "internal.h" -#include "ft.h" - -#include "session.h" -#include "slpcall.h" -#include "slplink.h" -#include "user.h" - -void -msn_slp_send_ok(MsnSlpCall *slpcall, const char *branch, - const char *type, const char *content); - -void -msn_slp_send_decline(MsnSlpCall *slpcall, const char *branch, - const char *type, const char *content); - - -void send_bye(MsnSlpCall *slpcall, const char *type); - - -void msn_request_user_display(MsnUser *user); - -void msn_request_ft(PurpleXfer *xfer); - -#endif /* MSN_SLP_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpcall.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpcall.h deleted file mode 100644 index 3cfacf0..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpcall.h +++ /dev/null @@ -1,98 +0,0 @@ -/** - * @file slpcall.h SLP Call functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SLPCALL_H -#define MSN_SLPCALL_H - -typedef struct _MsnSlpCall MsnSlpCall; - -typedef enum -{ - MSN_SLPCALL_ANY, - MSN_SLPCALL_DC -} MsnSlpCallType; - -#include "internal.h" - -#include "slplink.h" - -/* The official client seems to timeout slp calls after 5 minutes */ -#define MSN_SLPCALL_TIMEOUT 300 - -struct _MsnSlpCall -{ - /* Our parent slplink */ - MsnSlpLink *slplink; - - MsnSlpCallType type; - - /* Call-ID */ - char *id; - char *branch; - - long session_id; - long app_id; - - gboolean pending; /**< A flag that states if we should wait for this - slpcall to start and do not time out. */ - gboolean progress; /**< A flag that states if there has been progress since - the last time out. */ - gboolean wasted; /**< A flag that states if this slpcall is going to be - destroyed. */ - gboolean started; /**< A flag that states if this slpcall's session has - been initiated. */ - - gboolean wait_for_socket; - - void (*progress_cb)(MsnSlpCall *slpcall, - gsize total_length, gsize len); - void (*session_init_cb)(MsnSlpCall *slpcall); - - /* Can be checksum, or smile */ - char *data_info; - - PurpleXfer *xfer; - union { - GByteArray *incoming_data; - struct { - gsize len; - const guchar *data; - } outgoing; - } u; - MsnSlpMessage *xfer_msg; /* A dirty hack */ - - MsnSlpCb cb; - void (*end_cb)(MsnSlpCall *slpcall, MsnSession *session); - - guint timer; -}; - -MsnSlpCall *msn_slpcall_new(MsnSlpLink *slplink); -void msn_slpcall_init(MsnSlpCall *slpcall, MsnSlpCallType type); -void msn_slpcall_session_init(MsnSlpCall *slpcall); -void msn_slpcall_destroy(MsnSlpCall *slpcall); -void msn_slpcall_invite(MsnSlpCall *slpcall, const char *euf_guid, - MsnP2PAppId app_id, const char *context); -void msn_slpcall_close(MsnSlpCall *slpcall); - -#endif /* MSN_SLPCALL_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slplink.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slplink.h deleted file mode 100644 index 2ce34e1..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slplink.h +++ /dev/null @@ -1,98 +0,0 @@ -/** - * @file slplink.h MSNSLP Link support - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SLPLINK_H -#define MSN_SLPLINK_H - -typedef struct _MsnSlpLink MsnSlpLink; - -#include "directconn.h" -#include "session.h" -#include "slpcall.h" -#include "slpmsg.h" -#include "switchboard.h" - -typedef void (*MsnSlpCb)(MsnSlpCall *slpcall, - const guchar *data, gsize size); -typedef void (*MsnSlpEndCb)(MsnSlpCall *slpcall, MsnSession *session); - -struct _MsnSlpLink -{ - MsnSession *session; - MsnSwitchBoard *swboard; - MsnDirectConn *dc; - - guint refs; - - char *remote_user; - MsnP2PVersion p2p_version; - - int slp_seq_id; - - GList *slp_calls; - GList *slp_msgs; - - GQueue *slp_msg_queue; -}; - -MsnSlpLink *msn_slplink_ref(MsnSlpLink *slplink); -void msn_slplink_unref(MsnSlpLink *slplink); - -/** - * @return An MsnSlpLink for the given user, or NULL if there is no - * existing MsnSlpLink. - */ -MsnSlpLink *msn_session_find_slplink(MsnSession *session, - const char *who); - -/** - * @return An MsnSlpLink for the given user. One will be created if - * it does not already exist. - */ -MsnSlpLink *msn_session_get_slplink(MsnSession *session, const char *username); - -void msn_slplink_add_slpcall(MsnSlpLink *slplink, MsnSlpCall *slpcall); -void msn_slplink_remove_slpcall(MsnSlpLink *slplink, MsnSlpCall *slpcall); -MsnSlpCall *msn_slplink_find_slp_call(MsnSlpLink *slplink, - const char *id); -MsnSlpCall *msn_slplink_find_slp_call_with_session_id(MsnSlpLink *slplink, long id); -MsnP2PVersion msn_slplink_get_p2p_version(MsnSlpLink *slplink); - -void msn_slplink_queue_slpmsg(MsnSlpLink *slplink, MsnSlpMessage *slpmsg); -void msn_slplink_send_slpmsg(MsnSlpLink *slplink, - MsnSlpMessage *slpmsg); -void msn_slplink_send_queued_slpmsgs(MsnSlpLink *slplink); -void msn_slplink_process_msg(MsnSlpLink *slplink, MsnSlpMessagePart *part); - -/* Only exported for msn_xfer_write */ -void msn_slplink_send_msgpart(MsnSlpLink *slplink, MsnSlpMessage *slpmsg); - -void msn_slplink_request_object(MsnSlpLink *slplink, - const char *info, - MsnSlpCb cb, - MsnSlpEndCb end_cb, - const MsnObject *obj); - -MsnSlpCall *msn_slp_process_msg(MsnSlpLink *slplink, MsnSlpMessage *slpmsg); - -#endif /* MSN_SLPLINK_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg.h deleted file mode 100644 index 11e9901..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg.h +++ /dev/null @@ -1,150 +0,0 @@ -/** - * @file slpmsg.h SLP Message functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _MSN_SLPMSG_H_ -#define _MSN_SLPMSG_H_ - -typedef struct _MsnSlpMessage MsnSlpMessage; - -#include "imgstore.h" - -#include "slpcall.h" -#include "slplink.h" -#include "session.h" -#include "p2p.h" - -#include "slp.h" - -/** - * A SLP Message This contains everything that we will need to send a SLP - * Message even if has to be sent in several parts. - */ -struct _MsnSlpMessage -{ - MsnSlpCall *slpcall; /**< The slpcall to which this slp message belongs (if applicable). */ - MsnSlpLink *slplink; /**< The slplink through which this slp message is being sent. */ - MsnSession *session; - - MsnP2PInfo *p2p_info; - - long id; - - gboolean ft; - PurpleStoredImage *img; - guchar *buffer; - - /** - * This is the size of buffer, unless this is an outgoing file transfer, - * in which case this is the size of the file. - */ - long long size; - - GList *parts; /**< A list with the SlpMsgParts */ - - const char *info; - gboolean text_body; -}; - -/** - * Creates a new slp message - * - * @param slplink The slplink through which this slp message will be sent. - * If it's set to NULL, it is a temporary SlpMessage. - * @return The created slp message. - */ -MsnSlpMessage *msn_slpmsg_new(MsnSlpLink *slplink, MsnSlpCall *slpcall); - -/** - * Destroys a slp message - * - * @param slpmsg The slp message to destory. - */ -void msn_slpmsg_destroy(MsnSlpMessage *slpmsg); - -/** - * Relate this SlpMessage with an existing SlpLink - * - * @param slplink The SlpLink that will send this message. - */ -void msn_slpmsg_set_slplink(MsnSlpMessage *slpmsg, MsnSlpLink *slplink); - -void msn_slpmsg_set_body(MsnSlpMessage *slpmsg, const char *body, - long long size); -void msn_slpmsg_set_image(MsnSlpMessage *slpmsg, PurpleStoredImage *img); -MsnSlpMessage * msn_slpmsg_sip_new(MsnSlpCall *slpcall, int cseq, - const char *header, - const char *branch, - const char *content_type, - const char *content); - -/** - * Create a new SLP Ack message - * - * @param header the value of the header in this slpmsg. - * - * @return A new SlpMessage with ACK headers - */ -MsnSlpMessage *msn_slpmsg_ack_new(MsnSlpLink *slplink, MsnP2PInfo *info); - -/** - * Create a new SLP message for MsnObject data. - * - * @param slpcall The slpcall that manages this message. - * @param img The image to be sent in this message. - * - * @return A new SlpMessage with MsnObject info. - */ -MsnSlpMessage *msn_slpmsg_obj_new(MsnSlpCall *slpcall, PurpleStoredImage *img); - -/** - * Create a new SLP message for data preparation. - * - * @param slpcall The slpcall that manages this message. - * - * @return A new SlpMessage with data preparation info. - */ -MsnSlpMessage *msn_slpmsg_dataprep_new(MsnSlpCall *slpcall); - -/** - * Create a new SLP message for File transfer. - * - * @param slpcall The slpcall that manages this message. - * @param size The size of the file being transsmited. - * - * @return A new SlpMessage with the file transfer info. - */ -MsnSlpMessage *msn_slpmsg_file_new(MsnSlpCall *slpcall, size_t size); - -/** - * Serialize the MsnSlpMessage in a way it can be used to be transmited - * - * @param slpmsg The MsnSlpMessage. - * @param ret_size The size of the buffer cointaining the message. - * - * @return a buffer with the serialized data. - */ -char *msn_slpmsg_serialize(MsnSlpMessage *slpmsg, size_t *ret_size); - -void msn_slpmsg_show_readable(MsnSlpMessage *slpmsg); - -#endif /* _MSN_SLPMSG_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg_part.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg_part.h deleted file mode 100644 index 460eaa6..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/slpmsg_part.h +++ /dev/null @@ -1,66 +0,0 @@ -/** - * @file slpmsg_part.h MSNSLP Parts - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef MSN_SLPMSG_PART_H -#define MSN_SLPMSG_PART_H - -#include "p2p.h" - -typedef struct _MsnSlpMessagePart MsnSlpMessagePart; -typedef void (*MsnSlpPartCb)(MsnSlpMessagePart *part, void *data); - -struct _MsnSlpMessagePart -{ - guint ref_count; - - MsnP2PInfo *info; - - MsnSlpPartCb ack_cb; - MsnSlpPartCb nak_cb; - void *ack_data; - - guchar *buffer; - size_t size; -}; - -MsnSlpMessagePart *msn_slpmsgpart_new(MsnP2PInfo *info); - -MsnSlpMessagePart *msn_slpmsgpart_new_from_data(MsnP2PVersion p2p, const char *data, size_t data_len); - -MsnSlpMessagePart *msn_slpmsgpart_ref(MsnSlpMessagePart *part); - -void msn_slpmsgpart_unref(MsnSlpMessagePart *part); - -void msn_slpmsgpart_set_bin_data(MsnSlpMessagePart *part, const void *data, size_t len); - -char *msn_slpmsgpart_serialize(MsnSlpMessagePart *part, size_t *ret_size); - -void msn_slpmsgpart_ack(MsnSlpMessagePart *part, void *data); - -void msn_slpmsgpart_nak(MsnSlpMessagePart *part, void *data); - -void msn_slpmsgpart_to_string(MsnSlpMessagePart *part, GString *str); - -#endif /* MSN_SLPMSG_PART_H */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/smiley.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/smiley.h deleted file mode 100644 index 73202bd..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/smiley.h +++ /dev/null @@ -1,262 +0,0 @@ -/** - * @file smiley.h Smiley API - * @ingroup core - * @since 2.5.0 - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - -#ifndef _PURPLE_SMILEY_H_ -#define _PURPLE_SMILEY_H_ - -#include - -#include "imgstore.h" -#include "util.h" - -/** - * A custom smiley. - * This contains everything Purple will ever need to know about a custom smiley. - * Everything. - * - * PurpleSmiley is a GObject. - */ -typedef struct _PurpleSmiley PurpleSmiley; -typedef struct _PurpleSmileyClass PurpleSmileyClass; - -#define PURPLE_TYPE_SMILEY (purple_smiley_get_type ()) -#define PURPLE_SMILEY(smiley) (G_TYPE_CHECK_INSTANCE_CAST ((smiley), PURPLE_TYPE_SMILEY, PurpleSmiley)) -#define PURPLE_SMILEY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PURPLE_TYPE_SMILEY, PurpleSmileyClass)) -#define PURPLE_IS_SMILEY(smiley) (G_TYPE_CHECK_INSTANCE_TYPE ((smiley), PURPLE_TYPE_SMILEY)) -#define PURPLE_IS_SMILEY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PURPLE_TYPE_SMILEY)) -#define PURPLE_SMILEY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PURPLE_TYPE_SMILEY, PurpleSmileyClass)) - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Custom Smiley API */ -/**************************************************************************/ -/*@{*/ - -/** - * GObject-fu. - * @internal. - */ -GType purple_smiley_get_type(void); - -/** - * Creates a new custom smiley from a PurpleStoredImage. - * - * If a custom smiley with the given shortcut already exists, it - * will be automaticaly returned. - * - * @param img The image associated with the smiley. - * @param shortcut The associated shortcut (e.g. "(homer)"). - * - * @return The custom smiley. - */ -PurpleSmiley * -purple_smiley_new(PurpleStoredImage *img, const char *shortcut); - -/** - * Creates a new custom smiley, reading the image data from a file. - * - * If a custom smiley with the given shortcut already exists, it - * will be automaticaly returned. - * - * @param shortcut The associated shortcut (e.g. "(homer)"). - * @param filepath The image file. - * - * @return The custom smiley. - */ -PurpleSmiley * -purple_smiley_new_from_file(const char *shortcut, const char *filepath); - -/** - * Destroys the custom smiley and releases the associated resources. - * - * @param smiley The custom smiley. - */ -void -purple_smiley_delete(PurpleSmiley *smiley); - -/** - * Changes the custom smiley's shortcut. - * - * @param smiley The custom smiley. - * @param shortcut The new shortcut. A custom smiley with this shortcut - * cannot already be in use. - * - * @return TRUE if the shortcut was changed. FALSE otherwise. - */ -gboolean -purple_smiley_set_shortcut(PurpleSmiley *smiley, const char *shortcut); - -/** - * Changes the custom smiley's image data. - * - * @param smiley The custom smiley. - * @param smiley_data The custom smiley data, which the smiley code - * takes ownership of and will free. - * @param smiley_data_len The length of the data in @a smiley_data. - */ -void -purple_smiley_set_data(PurpleSmiley *smiley, guchar *smiley_data, - size_t smiley_data_len); - -/** - * Returns the custom smiley's associated shortcut (e.g. "(homer)"). - * - * @param smiley The custom smiley. - * - * @return The shortcut. - */ -const char *purple_smiley_get_shortcut(const PurpleSmiley *smiley); - -/** - * Returns the custom smiley data's checksum. - * - * @param smiley The custom smiley. - * - * @return The checksum. - */ -const char *purple_smiley_get_checksum(const PurpleSmiley *smiley); - -/** - * Returns the PurpleStoredImage with the reference counter incremented. - * - * The returned PurpleStoredImage reference counter must be decremented - * when the caller is done using it. - * - * @param smiley The custom smiley. - * - * @return A PurpleStoredImage. - */ -PurpleStoredImage *purple_smiley_get_stored_image(const PurpleSmiley *smiley); - -/** - * Returns the custom smiley's data. - * - * @param smiley The custom smiley. - * @param len If not @c NULL, the length of the image data returned - * will be set in the location pointed to by this. - * - * @return A pointer to the custom smiley data. - */ -gconstpointer purple_smiley_get_data(const PurpleSmiley *smiley, size_t *len); - -/** - * Returns an extension corresponding to the custom smiley's file type. - * - * @param smiley The custom smiley. - * - * @return The custom smiley's extension, "icon" if unknown, or @c NULL if - * the image data has disappeared. - */ -const char *purple_smiley_get_extension(const PurpleSmiley *smiley); - -/** - * Returns a full path to an custom smiley. - * - * If the custom smiley has data and the file exists in the cache, this - * will return a full path to the cached file. - * - * In general, it is not appropriate to be poking in the file cache - * directly. If you find yourself wanting to use this function, think - * very long and hard about it, and then don't. - * - * Think some more. - * - * @param smiley The custom smiley. - * - * @return A full path to the file, or @c NULL under various conditions. - * The caller should use g_free to free the returned string. - */ -char *purple_smiley_get_full_path(PurpleSmiley *smiley); - -/*@}*/ - - -/**************************************************************************/ -/** @name Custom Smiley Subsystem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns a list of all custom smileys. The caller is responsible for freeing - * the list. - * - * @return A list of all custom smileys. - */ -GList * -purple_smileys_get_all(void); - -/** - * Returns a custom smiley given its shortcut. - * - * @param shortcut The custom smiley's shortcut. - * - * @return The custom smiley if found, or @c NULL if not found. - */ -PurpleSmiley * -purple_smileys_find_by_shortcut(const char *shortcut); - -/** - * Returns a custom smiley given its checksum. - * - * @param checksum The custom smiley's checksum. - * - * @return The custom smiley if found, or @c NULL if not found. - */ -PurpleSmiley * -purple_smileys_find_by_checksum(const char *checksum); - -/** - * Returns the directory used to store custom smiley cached files. - * - * The default directory is PURPLEDIR/custom_smiley. - * - * @return The directory in which to store custom smileys cached files. - */ -const char *purple_smileys_get_storing_dir(void); - -/** - * Initializes the custom smiley subsystem. - */ -void purple_smileys_init(void); - -/** - * Uninitializes the custom smiley subsystem. - */ -void purple_smileys_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SMILEY_H_ */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/snactypes.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/snactypes.h deleted file mode 100644 index 1ce256b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/snactypes.h +++ /dev/null @@ -1,287 +0,0 @@ -/* - * Purple's oscar protocol plugin - * This file is the legal property of its developers. - * Please see the AUTHORS file distributed alongside this file. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA -*/ - -/* - * AIM Callback Types - * - */ -#ifndef _SNACTYPES_H_ -#define _SNACTYPES_H_ - -/* - * SNAC Families. - */ -#define SNAC_FAMILY_OSERVICE 0x0001 -#define SNAC_FAMILY_LOCATE 0x0002 -#define SNAC_FAMILY_BUDDY 0x0003 -#define SNAC_FAMILY_ICBM 0x0004 -#define SNAC_FAMILY_ADVERT 0x0005 -#define SNAC_FAMILY_INVITE 0x0006 -#define SNAC_FAMILY_ADMIN 0x0007 -#define SNAC_FAMILY_POPUP 0x0008 -#define SNAC_FAMILY_BOS 0x0009 -#define SNAC_FAMILY_USERLOOKUP 0x000a -#define SNAC_FAMILY_STATS 0x000b -#define SNAC_FAMILY_TRANSLATE 0x000c -#define SNAC_FAMILY_CHATNAV 0x000d -#define SNAC_FAMILY_CHAT 0x000e -#define SNAC_FAMILY_ODIR 0x000f -#define SNAC_FAMILY_BART 0x0010 -#define SNAC_FAMILY_FEEDBAG 0x0013 -#define SNAC_FAMILY_ICQ 0x0015 -#define SNAC_FAMILY_AUTH 0x0017 -#define SNAC_FAMILY_ALERT 0x0018 - -#define AIM_CB_FAM_SPECIAL 0xffff /* Internal libfaim use */ - -/* - * SNAC Family: Ack. - * - * Not really a family, but treating it as one really - * helps it fit into the libfaim callback structure better. - * - */ -#define AIM_CB_ACK_ACK 0x0001 - -/* - * SNAC Family: General. - */ -#define SNAC_SUBTYPE_OSERVICE_ERROR 0x0001 -#define SNAC_SUBTYPE_OSERVICE_CLIENTREADY 0x0002 -#define SNAC_SUBTYPE_OSERVICE_SERVERREADY 0x0003 -#define SNAC_SUBTYPE_OSERVICE_SERVICEREQ 0x0004 -#define SNAC_SUBTYPE_OSERVICE_REDIRECT 0x0005 -#define SNAC_SUBTYPE_OSERVICE_RATEINFOREQ 0x0006 -#define SNAC_SUBTYPE_OSERVICE_RATEINFO 0x0007 -#define SNAC_SUBTYPE_OSERVICE_RATEINFOACK 0x0008 -#define SNAC_SUBTYPE_OSERVICE_RATECHANGE 0x000a -#define SNAC_SUBTYPE_OSERVICE_SERVERPAUSE 0x000b -#define SNAC_SUBTYPE_OSERVICE_SERVERRESUME 0x000d -#define SNAC_SUBTYPE_OSERVICE_REQSELFINFO 0x000e -#define SNAC_SUBTYPE_OSERVICE_SELFINFO 0x000f -#define SNAC_SUBTYPE_OSERVICE_EVIL 0x0010 -#define SNAC_SUBTYPE_OSERVICE_SETIDLE 0x0011 -#define SNAC_SUBTYPE_OSERVICE_MIGRATIONREQ 0x0012 -#define SNAC_SUBTYPE_OSERVICE_MOTD 0x0013 -#define SNAC_SUBTYPE_OSERVICE_SETPRIVFLAGS 0x0014 -#define SNAC_SUBTYPE_OSERVICE_WELLKNOWNURL 0x0015 -#define SNAC_SUBTYPE_OSERVICE_NOP 0x0016 -#define SNAC_SUBTYPE_OSERVICE_DEFAULT 0xffff - -/* - * SNAC Family: Location Services. - */ -#define SNAC_SUBTYPE_LOCATE_ERROR 0x0001 -#define SNAC_SUBTYPE_LOCATE_REQRIGHTS 0x0002 -#define SNAC_SUBTYPE_LOCATE_RIGHTSINFO 0x0003 -#define SNAC_SUBTYPE_LOCATE_SETUSERINFO 0x0004 -#define SNAC_SUBTYPE_LOCATE_REQUSERINFO 0x0005 -#define SNAC_SUBTYPE_LOCATE_USERINFO 0x0006 -#define SNAC_SUBTYPE_LOCATE_WATCHERSUBREQ 0x0007 -#define SNAC_SUBTYPE_LOCATE_WATCHERNOT 0x0008 -#define SNAC_SUBTYPE_LOCATE_DEFAULT 0xffff - -/* - * SNAC Family: Buddy List Management Services. - */ -#define SNAC_SUBTYPE_BUDDY_ERROR 0x0001 -#define SNAC_SUBTYPE_BUDDY_REQRIGHTS 0x0002 -#define SNAC_SUBTYPE_BUDDY_RIGHTSINFO 0x0003 -#define SNAC_SUBTYPE_BUDDY_ADDBUDDY 0x0004 -#define SNAC_SUBTYPE_BUDDY_REMBUDDY 0x0005 -#define SNAC_SUBTYPE_BUDDY_REJECT 0x000a -#define SNAC_SUBTYPE_BUDDY_ONCOMING 0x000b -#define SNAC_SUBTYPE_BUDDY_OFFGOING 0x000c -#define SNAC_SUBTYPE_BUDDY_DEFAULT 0xffff - -/* - * SNAC Family: Messaging Services. - */ -#define SNAC_SUBTYPE_ICBM_ERROR 0x0001 -#define SNAC_SUBTYPE_ICBM_PARAMINFO 0x0005 -#define SNAC_SUBTYPE_ICBM_INCOMING 0x0007 -#define SNAC_SUBTYPE_ICBM_EVIL 0x0009 -#define SNAC_SUBTYPE_ICBM_MISSEDCALL 0x000a -#define SNAC_SUBTYPE_ICBM_CLIENTAUTORESP 0x000b -#define SNAC_SUBTYPE_ICBM_ACK 0x000c -#define SNAC_SUBTYPE_ICBM_MTN 0x0014 -#define SNAC_SUBTYPE_ICBM_DEFAULT 0xffff - -/* - * SNAC Family: Advertisement Services - */ -#define SNAC_SUBTYPE_ADVERT_ERROR 0x0001 -#define SNAC_SUBTYPE_ADVERT_DEFAULT 0xffff - -/* - * SNAC Family: Invitation Services. - */ -#define SNAC_SUBTYPE_INVITE_ERROR 0x0001 -#define SNAC_SUBTYPE_INVITE_DEFAULT 0xffff - -/* - * SNAC Family: Administrative Services. - */ -#define SNAC_SUBTYPE_ADMIN_ERROR 0x0001 -#define SNAC_SUBTYPE_ADMIN_INFOCHANGE_REPLY 0x0005 -#define SNAC_SUBTYPE_ADMIN_DEFAULT 0xffff - -/* - * SNAC Family: Popup Messages - */ -#define SNAC_SUBTYPE_POPUP_ERROR 0x0001 -#define SNAC_SUBTYPE_POPUP_DEFAULT 0xffff - -/* - * SNAC Family: Misc BOS Services. - */ -#define SNAC_SUBTYPE_BOS_ERROR 0x0001 -#define SNAC_SUBTYPE_BOS_RIGHTSQUERY 0x0002 -#define SNAC_SUBTYPE_BOS_RIGHTS 0x0003 -#define SNAC_SUBTYPE_BOS_DEFAULT 0xffff - -/* - * SNAC Family: User Lookup Services - */ -#define SNAC_SUBTYPE_USERLOOKUP_ERROR 0x0001 -#define SNAC_SUBTYPE_USERLOOKUP_DEFAULT 0xffff - -/* - * SNAC Family: User Status Services - */ -#define SNAC_SUBTYPE_STATS_ERROR 0x0001 -#define SNAC_SUBTYPE_STATS_SETREPORTINTERVAL 0x0002 -#define SNAC_SUBTYPE_STATS_REPORTACK 0x0004 -#define SNAC_SUBTYPE_STATS_DEFAULT 0xffff - -/* - * SNAC Family: Translation Services - */ -#define SNAC_SUBTYPE_TRANSLATE_ERROR 0x0001 -#define SNAC_SUBTYPE_TRANSLATE_DEFAULT 0xffff - -/* - * SNAC Family: Chat Navigation Services - */ -#define SNAC_SUBTYPE_CHATNAV_ERROR 0x0001 -#define SNAC_SUBTYPE_CHATNAV_CREATE 0x0008 -#define SNAC_SUBTYPE_CHATNAV_INFO 0x0009 -#define SNAC_SUBTYPE_CHATNAV_DEFAULT 0xffff - -/* - * SNAC Family: Chat Services - */ -#define SNAC_SUBTYPE_CHAT_ERROR 0x0001 -#define SNAC_SUBTYPE_CHAT_ROOMINFOUPDATE 0x0002 -#define SNAC_SUBTYPE_CHAT_USERJOIN 0x0003 -#define SNAC_SUBTYPE_CHAT_USERLEAVE 0x0004 -#define SNAC_SUBTYPE_CHAT_OUTGOINGMSG 0x0005 -#define SNAC_SUBTYPE_CHAT_INCOMINGMSG 0x0006 -#define SNAC_SUBTYPE_CHAT_DEFAULT 0xffff - -/* - * SNAC Family: "New" Search - */ -#define SNAC_SUBTYPE_ODIR_ERROR 0x0001 -#define SNAC_SUBTYPE_ODIR_SEARCH 0x0002 -#define SNAC_SUBTYPE_ODIR_RESULTS 0x0003 - -/* - * SNAC Family: Buddy icons - */ -#define SNAC_SUBTYPE_BART_ERROR 0x0001 -#define SNAC_SUBTYPE_BART_REQUEST 0x0004 -#define SNAC_SUBTYPE_BART_RESPONSE 0x0005 - -/* - * SNAC Family: Server-Stored Buddy Lists - */ -#define SNAC_SUBTYPE_FEEDBAG_ERROR 0x0001 -#define SNAC_SUBTYPE_FEEDBAG_REQRIGHTS 0x0002 -#define SNAC_SUBTYPE_FEEDBAG_RIGHTSINFO 0x0003 -#define SNAC_SUBTYPE_FEEDBAG_REQDATA 0x0004 -#define SNAC_SUBTYPE_FEEDBAG_REQIFCHANGED 0x0005 -#define SNAC_SUBTYPE_FEEDBAG_LIST 0x0006 -#define SNAC_SUBTYPE_FEEDBAG_ACTIVATE 0x0007 -#define SNAC_SUBTYPE_FEEDBAG_ADD 0x0008 -#define SNAC_SUBTYPE_FEEDBAG_MOD 0x0009 -#define SNAC_SUBTYPE_FEEDBAG_DEL 0x000A -#define SNAC_SUBTYPE_FEEDBAG_SRVACK 0x000E -#define SNAC_SUBTYPE_FEEDBAG_NOLIST 0x000F -#define SNAC_SUBTYPE_FEEDBAG_EDITSTART 0x0011 -#define SNAC_SUBTYPE_FEEDBAG_EDITSTOP 0x0012 -#define SNAC_SUBTYPE_FEEDBAG_SENDAUTH 0x0014 -#define SNAC_SUBTYPE_FEEDBAG_RECVAUTH 0x0015 -#define SNAC_SUBTYPE_FEEDBAG_SENDAUTHREQ 0x0018 -#define SNAC_SUBTYPE_FEEDBAG_RECVAUTHREQ 0x0019 -#define SNAC_SUBTYPE_FEEDBAG_SENDAUTHREP 0x001a -#define SNAC_SUBTYPE_FEEDBAG_RECVAUTHREP 0x001b -#define SNAC_SUBTYPE_FEEDBAG_ADDED 0x001c - -/* - * SNAC Family: ICQ - * - * Most of these are actually special. - */ -#define SNAC_SUBTYPE_ICQ_ERROR 0x0001 -#define SNAC_SUBTYPE_ICQ_OFFLINEMSG 0x00f0 -#define SNAC_SUBTYPE_ICQ_OFFLINEMSGCOMPLETE 0x00f1 -#define SNAC_SUBTYPE_ICQ_INFO 0x00f2 -#define SNAC_SUBTYPE_ICQ_ALIAS 0x00f3 -#define SNAC_SUBTYPE_ICQ_DEFAULT 0xffff - -/* - * SNAC Family: Authorizer - * - * Used only in protocol versions three and above. - */ -#define SNAC_SUBTYPE_AUTH_ERROR 0x0001 -#define SNAC_SUBTYPE_AUTH_LOGINREQEST 0x0002 -#define SNAC_SUBTYPE_AUTH_LOGINRESPONSE 0x0003 -#define SNAC_SUBTYPE_AUTH_AUTHREQ 0x0006 -#define SNAC_SUBTYPE_AUTH_AUTHRESPONSE 0x0007 -#define SNAC_SUBTYPE_AUTH_SECURID_REQUEST 0x000a -#define SNAC_SUBTYPE_AUTH_SECURID_RESPONSE 0x000b - -/* - * SNAC Family: Email - * - * Used for getting information on the email address - * associated with your username. - */ -#define SNAC_SUBTYPE_ALERT_ERROR 0x0001 -#define SNAC_SUBTYPE_ALERT_SENDCOOKIES 0x0006 -#define SNAC_SUBTYPE_ALERT_MAILSTATUS 0x0007 -#define SNAC_SUBTYPE_ALERT_INIT 0x0016 - -/* - * SNAC Family: Internal Messages - * - * This isn't truly a SNAC family either, but using - * these, we can integrated non-SNAC services into - * the SNAC-centered libfaim callback structure. - */ -#define AIM_CB_SPECIAL_CONNERR 0x0003 -#define AIM_CB_SPECIAL_CONNINITDONE 0x0006 - -/* SNAC flags */ -#define AIM_SNACFLAGS_DESTRUCTOR 0x0001 - -#endif /* _SNACTYPES_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/soap.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/soap.h deleted file mode 100644 index de4d50e..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/soap.h +++ /dev/null @@ -1,52 +0,0 @@ -/** - * @file soap.h - * header file for SOAP connection related process - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - */ -#ifndef MSN_SOAP_H -#define MSN_SOAP_H - -typedef struct _MsnSoapMessage MsnSoapMessage; - -#include - -#include "xmlnode.h" - -#include "session.h" -#include "sslconn.h" - -typedef void (*MsnSoapCallback)(MsnSoapMessage *request, - MsnSoapMessage *response, gpointer cb_data); - -struct _MsnSoapMessage { - char *action; - xmlnode *xml; - GSList *headers; -}; - -MsnSoapMessage *msn_soap_message_new(const char *action, xmlnode *xml); - -void msn_soap_message_send(MsnSession *session, MsnSoapMessage *message, - const char *host, const char *path, gboolean secure, - MsnSoapCallback cb, gpointer cb_data); - -#endif /* MSN_SOAP_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme-loader.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme-loader.h deleted file mode 100644 index 9eb927b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme-loader.h +++ /dev/null @@ -1,71 +0,0 @@ -/** - * @file sound-theme-loader.h Purple Sound Theme Loader Class API - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef PURPLE_SOUND_THEME_LOADER_H -#define PURPLE_SOUND_THEME_LOADER_H - -#include -#include -#include "theme-loader.h" - -/** - * A purple sound theme loader. extends PurpleThemeLoader (theme-loader.h) - * This is a class designed to build sound themes - * - * PurpleSoundThemeLoader is a GObject. - */ -typedef struct _PurpleSoundThemeLoader PurpleSoundThemeLoader; -typedef struct _PurpleSoundThemeLoaderClass PurpleSoundThemeLoaderClass; - -#define PURPLE_TYPE_SOUND_THEME_LOADER (purple_sound_theme_loader_get_type()) -#define PURPLE_SOUND_THEME_LOADER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_SOUND_THEME_LOADER, PurpleSoundThemeLoader)) -#define PURPLE_SOUND_THEME_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_SOUND_THEME_LOADER, PurpleSoundThemeLoaderClass)) -#define PURPLE_IS_SOUND_THEME_LOADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_SOUND_THEME_LOADER)) -#define PURPLE_IS_SOUND_THEME_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_SOUND_THEME_LOADER)) -#define PURPLE_SOUND_THEME_LOADER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_SOUND_THEME_LOADER, PurpleSoundThemeLoaderClass)) - -struct _PurpleSoundThemeLoader -{ - PurpleThemeLoader parent; -}; - -struct _PurpleSoundThemeLoaderClass -{ - PurpleThemeLoaderClass parent_class; -}; - -/**************************************************************************/ -/** @name Purple Theme-Loader API */ -/**************************************************************************/ -G_BEGIN_DECLS - -/** - * GObject foo. - * @internal. - */ -GType purple_sound_theme_loader_get_type(void); - -G_END_DECLS -#endif /* PURPLE_SOUND_THEME_LOADER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme.h deleted file mode 100644 index 3814e45..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound-theme.h +++ /dev/null @@ -1,108 +0,0 @@ -/** - * @file sound-theme.h Purple Sound Theme Abstact Class API - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef PURPLE_SOUND_THEME_H -#define PURPLE_SOUND_THEME_H - -#include -#include -#include "theme.h" -#include "sound.h" - -/** - * extends PurpleTheme (theme.h) - * A purple sound theme. - * This is an object for Purple to represent a sound theme. - * - * PurpleSoundTheme is a PurpleTheme Object. - */ -typedef struct _PurpleSoundTheme PurpleSoundTheme; -typedef struct _PurpleSoundThemeClass PurpleSoundThemeClass; - -#define PURPLE_TYPE_SOUND_THEME (purple_sound_theme_get_type()) -#define PURPLE_SOUND_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_SOUND_THEME, PurpleSoundTheme)) -#define PURPLE_SOUND_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_SOUND_THEME, PurpleSoundThemeClass)) -#define PURPLE_IS_SOUND_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_SOUND_THEME)) -#define PURPLE_IS_SOUND_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_SOUND_THEME)) -#define PURPLE_SOUND_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_SOUND_THEME, PurpleSoundThemeClass)) - -struct _PurpleSoundTheme -{ - PurpleTheme parent; - gpointer priv; -}; - -struct _PurpleSoundThemeClass -{ - PurpleThemeClass parent_class; -}; - -/**************************************************************************/ -/** @name Purple Sound Theme API */ -/**************************************************************************/ -G_BEGIN_DECLS - -/** - * GObject foo. - * @internal. - */ -GType purple_sound_theme_get_type(void); - -/** - * Returns a copy of the filename for the sound event. - * - * @param theme The theme. - * @param event The purple sound event to look up. - * - * @returns The filename of the sound event. - */ -const gchar *purple_sound_theme_get_file(PurpleSoundTheme *theme, - const gchar *event); - -/** - * Returns a copy of the directory and filename for the sound event - * - * @param theme The theme. - * @param event The purple sound event to look up - * - * @returns The directory + '/' + filename of the sound event. This is - * a newly allocated string that should be freed with g_free. - */ -gchar *purple_sound_theme_get_file_full(PurpleSoundTheme *theme, - const gchar *event); - -/** - * Sets the filename for a given sound event - * - * @param theme The theme. - * @param event the purple sound event to look up - * @param filename the name of the file to be used for the event - */ -void purple_sound_theme_set_file(PurpleSoundTheme *theme, - const gchar *event, - const gchar *filename); - -G_END_DECLS -#endif /* PURPLE_SOUND_THEME_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound.h deleted file mode 100644 index 1879725..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sound.h +++ /dev/null @@ -1,143 +0,0 @@ -/** - * @file sound.h Sound API - * @ingroup core - * @see @ref sound-signals - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_SOUND_H_ -#define _PURPLE_SOUND_H_ - -#include "account.h" - -/**************************************************************************/ -/** Data Structures */ -/**************************************************************************/ - - -/** - * A type of sound. - */ - -typedef enum _PurpleSoundEventID -{ - PURPLE_SOUND_BUDDY_ARRIVE = 0, /**< Buddy signs on. */ - PURPLE_SOUND_BUDDY_LEAVE, /**< Buddy signs off. */ - PURPLE_SOUND_RECEIVE, /**< Receive an IM. */ - PURPLE_SOUND_FIRST_RECEIVE, /**< Receive an IM that starts a conv. */ - PURPLE_SOUND_SEND, /**< Send an IM. */ - PURPLE_SOUND_CHAT_JOIN, /**< Someone joins a chat. */ - PURPLE_SOUND_CHAT_LEAVE, /**< Someone leaves a chat. */ - PURPLE_SOUND_CHAT_YOU_SAY, /**< You say something in a chat. */ - PURPLE_SOUND_CHAT_SAY, /**< Someone else says somthing in a chat. */ - PURPLE_SOUND_POUNCE_DEFAULT, /**< Default sound for a buddy pounce. */ - PURPLE_SOUND_CHAT_NICK, /**< Someone says your name in a chat. */ - PURPLE_SOUND_GOT_ATTENTION, /**< Got an attention */ - PURPLE_NUM_SOUNDS /**< Total number of sounds. */ - -} PurpleSoundEventID; - -/** Operations used by the core to request that particular sound files, or the - * sound associated with a particular event, should be played. - */ -typedef struct _PurpleSoundUiOps -{ - void (*init)(void); - void (*uninit)(void); - void (*play_file)(const char *filename); - void (*play_event)(PurpleSoundEventID event); - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleSoundUiOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name Sound API */ -/**************************************************************************/ -/*@{*/ - -/** - * Plays the specified sound file. - * - * @param filename The file to play. - * @param account The account that this sound is associated with, or - * NULL if the sound is not associated with any specific - * account. This is needed for the "sounds while away?" - * preference to work correctly. - */ -void purple_sound_play_file(const char *filename, const PurpleAccount *account); - -/** - * Plays the sound associated with the specified event. - * - * @param event The event. - * @param account The account that this sound is associated with, or - * NULL if the sound is not associated with any specific - * account. This is needed for the "sounds while away?" - * preference to work correctly. - */ -void purple_sound_play_event(PurpleSoundEventID event, const PurpleAccount *account); - -/** - * Sets the UI sound operations - * - * @param ops The UI sound operations structure. - */ -void purple_sound_set_ui_ops(PurpleSoundUiOps *ops); - -/** - * Gets the UI sound operations - * - * @return The UI sound operations structure. - */ -PurpleSoundUiOps *purple_sound_get_ui_ops(void); - -/** - * Initializes the sound subsystem - */ -void purple_sound_init(void); - -/** - * Shuts down the sound subsystem - */ -void purple_sound_uninit(void); - -/** - * Returns the sound subsystem handle. - * - * @return The sound subsystem handle. - */ -void *purple_sounds_get_handle(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SOUND_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sslconn.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sslconn.h deleted file mode 100644 index a81b09b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/sslconn.h +++ /dev/null @@ -1,346 +0,0 @@ -/** - * @file sslconn.h SSL API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_SSLCONN_H_ -#define _PURPLE_SSLCONN_H_ - -/** Possible SSL errors. */ -typedef enum -{ - PURPLE_SSL_HANDSHAKE_FAILED = 1, - PURPLE_SSL_CONNECT_FAILED = 2, - PURPLE_SSL_CERTIFICATE_INVALID = 3 -} PurpleSslErrorType; - -#include "certificate.h" -#include "proxy.h" - -#define PURPLE_SSL_DEFAULT_PORT 443 - -/** @copydoc _PurpleSslConnection */ -typedef struct _PurpleSslConnection PurpleSslConnection; - -typedef void (*PurpleSslInputFunction)(gpointer, PurpleSslConnection *, - PurpleInputCondition); -typedef void (*PurpleSslErrorFunction)(PurpleSslConnection *, PurpleSslErrorType, - gpointer); - -struct _PurpleSslConnection -{ - /** Hostname to which the SSL connection will be made */ - char *host; - /** Port to connect to */ - int port; - /** Data to pass to PurpleSslConnection::connect_cb() */ - void *connect_cb_data; - /** Callback triggered once the SSL handshake is complete */ - PurpleSslInputFunction connect_cb; - /** Callback triggered if there is an error during connection */ - PurpleSslErrorFunction error_cb; - /** Data passed to PurpleSslConnection::recv_cb() */ - void *recv_cb_data; - /** User-defined callback executed when the SSL connection receives data */ - PurpleSslInputFunction recv_cb; - - /** File descriptor used to refer to the socket */ - int fd; - /** Glib event source ID; used to refer to the received data callback - * in the glib eventloop */ - guint inpa; - /** Data related to the underlying TCP connection */ - PurpleProxyConnectData *connect_data; - - /** Internal connection data managed by the SSL backend (GnuTLS/LibNSS/whatever) */ - void *private_data; - - /** Verifier to use in authenticating the peer */ - PurpleCertificateVerifier *verifier; - - /** Handle to the account for which this connection is being made. Can be NULL. */ - PurpleAccount *account; -}; - -/** - * SSL implementation operations structure. - * - * Every SSL implementation must provide all of these and register it via purple_ssl_set_ops() - * These should not be called directly! Instead, use the purple_ssl_* functions. - */ -typedef struct -{ - /** Initializes the SSL system provided. - * @return @a TRUE if initialization succeeded - * @see purple_ssl_init - */ - gboolean (*init)(void); - /** Unloads the SSL system. Inverse of PurpleSslOps::init. - * @see purple_ssl_uninit - */ - void (*uninit)(void); - /** Sets up the SSL connection for a #PurpleSslConnection once - * the TCP connection has been established - * @see purple_ssl_connect - */ - void (*connectfunc)(PurpleSslConnection *gsc); - /** Destroys the internal data of the SSL connection provided. - * Freeing gsc itself is left to purple_ssl_close() - * @see purple_ssl_close - */ - void (*close)(PurpleSslConnection *gsc); - /** Reads data from a connection (like POSIX read()) - * @param gsc Connection context - * @param data Pointer to buffer to drop data into - * @param len Maximum number of bytes to read - * @return Number of bytes actually written into @a data (which may be - * less than @a len), or <0 on error - * @see purple_ssl_read - */ - size_t (*read)(PurpleSslConnection *gsc, void *data, size_t len); - /** Writes data to a connection (like POSIX send()) - * @param gsc Connection context - * @param data Data buffer to send data from - * @param len Number of bytes to send from buffer - * @return The number of bytes written to @a data (may be less than - * @a len) or <0 on error - * @see purple_ssl_write - */ - size_t (*write)(PurpleSslConnection *gsc, const void *data, size_t len); - /** Obtains the certificate chain provided by the peer - * - * @param gsc Connection context - * @return A newly allocated list containing the certificates - * the peer provided. - * @see PurpleCertificate - * @todo Decide whether the ordering of certificates in this - * list can be guaranteed. - */ - GList * (* get_peer_certificates)(PurpleSslConnection * gsc); - - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleSslOps; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name SSL API */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns whether or not SSL is currently supported. - * - * @return @a TRUE if SSL is supported, or @a FALSE otherwise. - */ -gboolean purple_ssl_is_supported(void); - -/** - * Returns a human-readable string for an SSL error. - * - * @param error Error code - * @return Human-readable error explanation - */ -const gchar * purple_ssl_strerror(PurpleSslErrorType error); - -/** - * Makes a SSL connection to the specified host and port. The caller - * should keep track of the returned value and use it to cancel the - * connection, if needed. - * - * @param account The account making the connection. - * @param host The destination host. - * @param port The destination port. - * @param func The SSL input handler function. - * @param error_func The SSL error handler function. This function - * should NOT call purple_ssl_close(). In - * the event of an error the #PurpleSslConnection will be - * destroyed for you. - * @param data User-defined data. - * - * @return The SSL connection handle. - */ -PurpleSslConnection *purple_ssl_connect(PurpleAccount *account, const char *host, - int port, PurpleSslInputFunction func, - PurpleSslErrorFunction error_func, - void *data); - -/** - * Makes a SSL connection to the specified host and port, using the separate - * name to verify with the certificate. The caller should keep track of the - * returned value and use it to cancel the connection, if needed. - * - * @param account The account making the connection. - * @param host The destination host. - * @param port The destination port. - * @param func The SSL input handler function. - * @param error_func The SSL error handler function. This function - * should NOT call purple_ssl_close(). In - * the event of an error the #PurpleSslConnection will be - * destroyed for you. - * @param ssl_host The hostname of the other peer (to verify the CN) - * @param data User-defined data. - * - * @return The SSL connection handle. - * @since 2.6.0 - */ -PurpleSslConnection *purple_ssl_connect_with_ssl_cn(PurpleAccount *account, const char *host, - int port, PurpleSslInputFunction func, - PurpleSslErrorFunction error_func, - const char *ssl_host, - void *data); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_SSLCONN_C_) -/** - * Makes a SSL connection using an already open file descriptor. - * - * @deprecated Use purple_ssl_connect_with_host_fd() instead. - * - * @param account The account making the connection. - * @param fd The file descriptor. - * @param func The SSL input handler function. - * @param error_func The SSL error handler function. - * @param data User-defined data. - * - * @return The SSL connection handle. - */ -PurpleSslConnection *purple_ssl_connect_fd(PurpleAccount *account, int fd, - PurpleSslInputFunction func, - PurpleSslErrorFunction error_func, - void *data); -#endif - -/** - * Makes a SSL connection using an already open file descriptor. - * - * @param account The account making the connection. - * @param fd The file descriptor. - * @param func The SSL input handler function. - * @param error_func The SSL error handler function. - * @param host The hostname of the other peer (to verify the CN) - * @param data User-defined data. - * - * @return The SSL connection handle. - * - * @since 2.2.0 - */ -PurpleSslConnection *purple_ssl_connect_with_host_fd(PurpleAccount *account, int fd, - PurpleSslInputFunction func, - PurpleSslErrorFunction error_func, - const char *host, - void *data); - -/** - * Adds an input watcher for the specified SSL connection. - * Once the SSL handshake is complete, use this to watch for actual data across it. - * - * @param gsc The SSL connection handle. - * @param func The callback function. - * @param data User-defined data. - */ -void purple_ssl_input_add(PurpleSslConnection *gsc, PurpleSslInputFunction func, - void *data); - -/** - * Closes a SSL connection. - * - * @param gsc The SSL connection to close. - */ -void purple_ssl_close(PurpleSslConnection *gsc); - -/** - * Reads data from an SSL connection. - * - * @param gsc The SSL connection handle. - * @param buffer The destination buffer. - * @param len The maximum number of bytes to read. - * - * @return The number of bytes read. - */ -size_t purple_ssl_read(PurpleSslConnection *gsc, void *buffer, size_t len); - -/** - * Writes data to an SSL connection. - * - * @param gsc The SSL connection handle. - * @param buffer The buffer to write. - * @param len The length of the data to write. - * - * @return The number of bytes written. - */ -size_t purple_ssl_write(PurpleSslConnection *gsc, const void *buffer, size_t len); - -/** - * Obtains the peer's presented certificates - * - * @param gsc The SSL connection handle - * - * @return The peer certificate chain, in the order of certificate, issuer, - * issuer's issuer, etc. @a NULL if no certificates have been provided, - * - * @since 2.2.0 - */ -GList * purple_ssl_get_peer_certificates(PurpleSslConnection *gsc); - -/*@}*/ - -/**************************************************************************/ -/** @name Subsystem API */ -/**************************************************************************/ -/*@{*/ - -/** - * Sets the current SSL operations structure. - * - * @param ops The SSL operations structure to assign. - */ -void purple_ssl_set_ops(PurpleSslOps *ops); - -/** - * Returns the current SSL operations structure. - * - * @return The SSL operations structure. - */ -PurpleSslOps *purple_ssl_get_ops(void); - -/** - * Initializes the SSL subsystem. - */ -void purple_ssl_init(void); - -/** - * Uninitializes the SSL subsystem. - */ -void purple_ssl_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_SSLCONN_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/state.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/state.h deleted file mode 100644 index eca8777..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/state.h +++ /dev/null @@ -1,69 +0,0 @@ -/** - * @file state.h State functions and definitions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_STATE_H -#define MSN_STATE_H - -/** - * Away types. - */ -typedef enum -{ - MSN_ONLINE = 1, - MSN_BUSY = 2, - MSN_IDLE = 3, - MSN_BRB = 4, - MSN_AWAY = 5, - MSN_PHONE = 6, - MSN_LUNCH = 7, - MSN_OFFLINE = 8, - MSN_HIDDEN = 9 -} MsnAwayType; - -/** - * Changes the status of the user. - * - * @param session The MSN session. - */ -void msn_change_status(MsnSession *session); - -/** - * Returns the string representation of an away type. - * - * @param type The away type. - * - * @return The string representation of the away type. - */ -const char *msn_away_get_text(MsnAwayType type); - -const char *msn_state_get_text(MsnAwayType state); - -/* Get the CurrentMedia info from the XML node */ -char *msn_get_currentmedia(xmlnode *payloadNode); - -/* Get the PSM info from the XML node */ -char *msn_get_psm(xmlnode *payloadNode); - -MsnAwayType msn_state_from_account(PurpleAccount *account); - -#endif /* MSN_STATE_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/status.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/status.h deleted file mode 100644 index f47ce90..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/status.h +++ /dev/null @@ -1,1103 +0,0 @@ -/* - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_STATUS_H_ -#define _PURPLE_STATUS_H_ - -/** - * @file status.h Status API - * @ingroup core - * - * A brief explanation of the status API: - * - * PurpleStatusType's are created by each PRPL. They outline the - * available statuses of the protocol. AIM, for example, supports - * an available state with an optional available message, an away - * state with a mandatory message, and an invisible state (which is - * technically "independent" of the other two, but we'll get into - * that later). PurpleStatusTypes are very permanent. They are - * hardcoded in each PRPL and will not change often. And because - * they are hardcoded, they do not need to be saved to any XML file. - * - * A PurpleStatus can be thought of as an "instance" of a PurpleStatusType. - * If you're familiar with object-oriented programming languages - * then this should be immediately clear. Say, for example, that - * one of your AIM buddies has set himself as "away." You have a - * PurpleBuddy node for this person in your buddy list. Purple wants - * to mark this buddy as "away," so it creates a new PurpleStatus. - * The PurpleStatus has its PurpleStatusType set to the "away" state - * for the oscar PRPL. The PurpleStatus also contains the buddy's - * away message. PurpleStatuses are sometimes saved, depending on - * the context. The current PurpleStatuses associated with each of - * your accounts are saved so that the next time you start Purple, - * your accounts will be set to their last known statuses. There - * is also a list of saved statuses that are written to the - * status.xml file. Also, each PurpleStatus has a "saveable" boolean. - * If "saveable" is set to FALSE then the status is NEVER saved. - * All PurpleStatuses should be inside a PurplePresence. - * - * - * A PurpleStatus is either "independent" or "exclusive." - * Independent statuses can be active or inactive and they don't - * affect anything else. However, you can only have one exclusive - * status per PurplePresence. If you activate one exclusive status, - * then the previous exclusive status is automatically deactivated. - * - * A PurplePresence is like a collection of PurpleStatuses (plus some - * other random info). For any buddy, or for any one of your accounts, - * or for any person with which you're chatting, you may know various - * amounts of information. This information is all contained in - * one PurplePresence. If one of your buddies is away and idle, - * then the presence contains the PurpleStatus for their awayness, - * and it contains their current idle time. PurplePresences are - * never saved to disk. The information they contain is only relevant - * for the current PurpleSession. - */ - -/** - * PurpleStatusType's are created by each PRPL. They outline the - * available statuses of the protocol. AIM, for example, supports - * an available state with an optional available message, an away - * state with a mandatory message, and an invisible state (which is - * technically "independent" of the other two, but we'll get into - * that later). PurpleStatusTypes are very permanent. They are - * hardcoded in each PRPL and will not change often. And because - * they are hardcoded, they do not need to be saved to any XML file. - */ -typedef struct _PurpleStatusType PurpleStatusType; -typedef struct _PurpleStatusAttr PurpleStatusAttr; -typedef struct _PurplePresence PurplePresence; -typedef struct _PurpleStatus PurpleStatus; - -typedef struct _PurpleMood { - const char *mood; - const char *description; - gpointer *padding; -} PurpleMood; - -/** - * A context for a presence. - * - * The context indicates to what the presence applies. - */ -typedef enum -{ - PURPLE_PRESENCE_CONTEXT_UNSET = 0, - PURPLE_PRESENCE_CONTEXT_ACCOUNT, - PURPLE_PRESENCE_CONTEXT_CONV, - PURPLE_PRESENCE_CONTEXT_BUDDY - -} PurplePresenceContext; - -/** - * A primitive defining the basic structure of a status type. - */ -/* - * If you add a value to this enum, make sure you update - * the status_primitive_map and primitive_scores arrays in status.c. - */ -typedef enum -{ - PURPLE_STATUS_UNSET = 0, - PURPLE_STATUS_OFFLINE, - PURPLE_STATUS_AVAILABLE, - PURPLE_STATUS_UNAVAILABLE, - PURPLE_STATUS_INVISIBLE, - PURPLE_STATUS_AWAY, - PURPLE_STATUS_EXTENDED_AWAY, - PURPLE_STATUS_MOBILE, - PURPLE_STATUS_TUNE, - PURPLE_STATUS_MOOD, - PURPLE_STATUS_NUM_PRIMITIVES -} PurpleStatusPrimitive; - -#include "account.h" -#include "blist.h" -#include "conversation.h" -#include "value.h" - -#define PURPLE_TUNE_ARTIST "tune_artist" -#define PURPLE_TUNE_TITLE "tune_title" -#define PURPLE_TUNE_ALBUM "tune_album" -#define PURPLE_TUNE_GENRE "tune_genre" -#define PURPLE_TUNE_COMMENT "tune_comment" -#define PURPLE_TUNE_TRACK "tune_track" -#define PURPLE_TUNE_TIME "tune_time" -#define PURPLE_TUNE_YEAR "tune_year" -#define PURPLE_TUNE_URL "tune_url" -#define PURPLE_TUNE_FULL "tune_full" - -#define PURPLE_MOOD_NAME "mood" -#define PURPLE_MOOD_COMMENT "moodtext" - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name PurpleStatusPrimitive API */ -/**************************************************************************/ -/*@{*/ - -/** - * Lookup the id of a primitive status type based on the type. This - * ID is a unique plain-text name of the status, without spaces. - * - * @param type A primitive status type. - * - * @return The unique ID for this type. - */ -const char *purple_primitive_get_id_from_type(PurpleStatusPrimitive type); - -/** - * Lookup the name of a primitive status type based on the type. This - * name is the plain-English name of the status type. It is usually one - * or two words. - * - * @param type A primitive status type. - * - * @return The name of this type, suitable for users to see. - */ -const char *purple_primitive_get_name_from_type(PurpleStatusPrimitive type); - -/** - * Lookup the value of a primitive status type based on the id. The - * ID is a unique plain-text name of the status, without spaces. - * - * @param id The unique ID of a primitive status type. - * - * @return The PurpleStatusPrimitive value. - */ -PurpleStatusPrimitive purple_primitive_get_type_from_id(const char *id); - -/*@}*/ - -/**************************************************************************/ -/** @name PurpleStatusType API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new status type. - * - * @param primitive The primitive status type. - * @param id The ID of the status type, or @c NULL to use the id of - * the primitive status type. - * @param name The name presented to the user, or @c NULL to use the - * name of the primitive status type. - * @param saveable TRUE if the information set for this status by the - * user can be saved for future sessions. - * @param user_settable TRUE if this is a status the user can manually set. - * @param independent TRUE if this is an independent (non-exclusive) - * status type. - * - * @return A new status type. - */ -PurpleStatusType *purple_status_type_new_full(PurpleStatusPrimitive primitive, - const char *id, const char *name, - gboolean saveable, - gboolean user_settable, - gboolean independent); - -/** - * Creates a new status type with some default values ( - * saveable and not independent). - * - * @param primitive The primitive status type. - * @param id The ID of the status type, or @c NULL to use the id of - * the primitive status type. - * @param name The name presented to the user, or @c NULL to use the - * name of the primitive status type. - * @param user_settable TRUE if this is a status the user can manually set. - * - * @return A new status type. - */ -PurpleStatusType *purple_status_type_new(PurpleStatusPrimitive primitive, - const char *id, const char *name, - gboolean user_settable); - -/** - * Creates a new status type with attributes. - * - * @param primitive The primitive status type. - * @param id The ID of the status type, or @c NULL to use the id of - * the primitive status type. - * @param name The name presented to the user, or @c NULL to use the - * name of the primitive status type. - * @param saveable TRUE if the information set for this status by the - * user can be saved for future sessions. - * @param user_settable TRUE if this is a status the user can manually set. - * @param independent TRUE if this is an independent (non-exclusive) - * status type. - * @param attr_id The ID of the first attribute. - * @param attr_name The name of the first attribute. - * @param attr_value The value type of the first attribute attribute. - * @param ... Additional attribute information. - * - * @return A new status type. - */ -PurpleStatusType *purple_status_type_new_with_attrs(PurpleStatusPrimitive primitive, - const char *id, - const char *name, - gboolean saveable, - gboolean user_settable, - gboolean independent, - const char *attr_id, - const char *attr_name, - PurpleValue *attr_value, ...) G_GNUC_NULL_TERMINATED; - -/** - * Destroys a status type. - * - * @param status_type The status type to destroy. - */ -void purple_status_type_destroy(PurpleStatusType *status_type); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Sets a status type's primary attribute. - * - * The value for the primary attribute is used as the description for - * the particular status type. An example is an away message. The message - * would be the primary attribute. - * - * @param status_type The status type. - * @param attr_id The ID of the primary attribute. - * - * @deprecated This function isn't used and should be removed in 3.0.0. - */ -void purple_status_type_set_primary_attr(PurpleStatusType *status_type, - const char *attr_id); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Adds an attribute to a status type. - * - * @param status_type The status type to add the attribute to. - * @param id The ID of the attribute. - * @param name The name presented to the user. - * @param value The value type of this attribute. - * - * @deprecated This function isn't needed and should be removed in 3.0.0. - * Status type attributes should be set when the status type - * is created, in the call to purple_status_type_new_with_attrs. - */ -void purple_status_type_add_attr(PurpleStatusType *status_type, const char *id, - const char *name, PurpleValue *value); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Adds multiple attributes to a status type. - * - * @param status_type The status type to add the attribute to. - * @param id The ID of the first attribute. - * @param name The description of the first attribute. - * @param value The value type of the first attribute attribute. - * @param ... Additional attribute information. - * - * @deprecated This function isn't needed and should be removed in 3.0.0. - * Status type attributes should be set when the status type - * is created, in the call to purple_status_type_new_with_attrs. - */ -void purple_status_type_add_attrs(PurpleStatusType *status_type, const char *id, - const char *name, PurpleValue *value, ...) G_GNUC_NULL_TERMINATED; -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Adds multiple attributes to a status type using a va_list. - * - * @param status_type The status type to add the attribute to. - * @param args The va_list of attributes. - * - * @deprecated This function isn't needed and should be removed in 3.0.0. - * Status type attributes should be set when the status type - * is created, in the call to purple_status_type_new_with_attrs. - */ -void purple_status_type_add_attrs_vargs(PurpleStatusType *status_type, - va_list args); -#endif - -/** - * Returns the primitive type of a status type. - * - * @param status_type The status type. - * - * @return The primitive type of the status type. - */ -PurpleStatusPrimitive purple_status_type_get_primitive( - const PurpleStatusType *status_type); - -/** - * Returns the ID of a status type. - * - * @param status_type The status type. - * - * @return The ID of the status type. - */ -const char *purple_status_type_get_id(const PurpleStatusType *status_type); - -/** - * Returns the name of a status type. - * - * @param status_type The status type. - * - * @return The name of the status type. - */ -const char *purple_status_type_get_name(const PurpleStatusType *status_type); - -/** - * Returns whether or not the status type is saveable. - * - * @param status_type The status type. - * - * @return TRUE if user-defined statuses based off this type are saveable. - * FALSE otherwise. - */ -gboolean purple_status_type_is_saveable(const PurpleStatusType *status_type); - -/** - * Returns whether or not the status type can be set or modified by the - * user. - * - * @param status_type The status type. - * - * @return TRUE if the status type can be set or modified by the user. - * FALSE if it's a protocol-set setting. - */ -gboolean purple_status_type_is_user_settable(const PurpleStatusType *status_type); - -/** - * Returns whether or not the status type is independent. - * - * Independent status types are non-exclusive. If other status types on - * the same hierarchy level are set, this one will not be affected. - * - * @param status_type The status type. - * - * @return TRUE if the status type is independent, or FALSE otherwise. - */ -gboolean purple_status_type_is_independent(const PurpleStatusType *status_type); - -/** - * Returns whether the status type is exclusive. - * - * @param status_type The status type. - * - * @return TRUE if the status type is exclusive, FALSE otherwise. - */ -gboolean purple_status_type_is_exclusive(const PurpleStatusType *status_type); - -/** - * Returns whether or not a status type is available. - * - * Available status types are online and possibly invisible, but not away. - * - * @param status_type The status type. - * - * @return TRUE if the status is available, or FALSE otherwise. - */ -gboolean purple_status_type_is_available(const PurpleStatusType *status_type); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Returns a status type's primary attribute ID. - * - * @param type The status type. - * - * @return The primary attribute's ID. - * - * @deprecated This function isn't used and should be removed in 3.0.0. - */ -const char *purple_status_type_get_primary_attr(const PurpleStatusType *type); -#endif - -/** - * Returns the attribute with the specified ID. - * - * @param status_type The status type containing the attribute. - * @param id The ID of the desired attribute. - * - * @return The attribute, if found. NULL otherwise. - */ -PurpleStatusAttr *purple_status_type_get_attr(const PurpleStatusType *status_type, - const char *id); - -/** - * Returns a list of all attributes in a status type. - * - * @param status_type The status type. - * - * @constreturn The list of attributes. - */ -GList *purple_status_type_get_attrs(const PurpleStatusType *status_type); - -/** - * Find the PurpleStatusType with the given id. - * - * @param status_types A list of status types. Often account->status_types. - * @param id The unique ID of the status type you wish to find. - * - * @return The status type with the given ID, or NULL if one could - * not be found. - */ -const PurpleStatusType *purple_status_type_find_with_id(GList *status_types, - const char *id); - -/*@}*/ - -/**************************************************************************/ -/** @name PurpleStatusAttr API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new status attribute. - * - * @param id The ID of the attribute. - * @param name The name presented to the user. - * @param value_type The type of data contained in the attribute. - * - * @return A new status attribute. - */ -PurpleStatusAttr *purple_status_attr_new(const char *id, const char *name, - PurpleValue *value_type); - -/** - * Destroys a status attribute. - * - * @param attr The status attribute to destroy. - */ -void purple_status_attr_destroy(PurpleStatusAttr *attr); - -/** - * Returns the ID of a status attribute. - * - * @param attr The status attribute. - * - * @return The status attribute's ID. - */ -const char *purple_status_attr_get_id(const PurpleStatusAttr *attr); - -/** - * Returns the name of a status attribute. - * - * @param attr The status attribute. - * - * @return The status attribute's name. - */ -const char *purple_status_attr_get_name(const PurpleStatusAttr *attr); - -/** - * Returns the value of a status attribute. - * - * @param attr The status attribute. - * - * @return The status attribute's value. - */ -PurpleValue *purple_status_attr_get_value(const PurpleStatusAttr *attr); - -/*@}*/ - -/**************************************************************************/ -/** @name PurpleStatus API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new status. - * - * @param status_type The type of status. - * @param presence The parent presence. - * - * @return The new status. - */ -PurpleStatus *purple_status_new(PurpleStatusType *status_type, - PurplePresence *presence); - -/** - * Destroys a status. - * - * @param status The status to destroy. - */ -void purple_status_destroy(PurpleStatus *status); - -/** - * Sets whether or not a status is active. - * - * This should only be called by the account, conversation, and buddy APIs. - * - * @param status The status. - * @param active The active state. - */ -void purple_status_set_active(PurpleStatus *status, gboolean active); - -/** - * Sets whether or not a status is active. - * - * This should only be called by the account, conversation, and buddy APIs. - * - * @param status The status. - * @param active The active state. - * @param args A list of attributes to set on the status. This list is - * composed of key/value pairs, where each key is a valid - * attribute name for this PurpleStatusType. The list should - * be NULL terminated. - */ -void purple_status_set_active_with_attrs(PurpleStatus *status, gboolean active, - va_list args); - -/** - * Sets whether or not a status is active. - * - * This should only be called by the account, conversation, and buddy APIs. - * - * @param status The status. - * @param active The active state. - * @param attrs A list of attributes to set on the status. This list is - * composed of key/value pairs, where each key is a valid - * attribute name for this PurpleStatusType. The list is - * not modified or freed by this function. - */ -void purple_status_set_active_with_attrs_list(PurpleStatus *status, gboolean active, - GList *attrs); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Sets the boolean value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * @param value The boolean value. - * - * @deprecated This function is only used by status.c and should be made - * static in 3.0.0. - */ -void purple_status_set_attr_boolean(PurpleStatus *status, const char *id, - gboolean value); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Sets the integer value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * @param value The integer value. - * - * @deprecated This function is only used by status.c and should be made - * static in 3.0.0. - */ -void purple_status_set_attr_int(PurpleStatus *status, const char *id, - int value); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Sets the string value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * @param value The string value. - * - * @deprecated This function is only used by status.c and should be made - * static in 3.0.0. - */ -void purple_status_set_attr_string(PurpleStatus *status, const char *id, - const char *value); -#endif - -/** - * Returns the status's type. - * - * @param status The status. - * - * @return The status's type. - */ -PurpleStatusType *purple_status_get_type(const PurpleStatus *status); - -/** - * Returns the status's presence. - * - * @param status The status. - * - * @return The status's presence. - */ -PurplePresence *purple_status_get_presence(const PurpleStatus *status); - -/** - * Returns the status's type ID. - * - * This is a convenience method for - * purple_status_type_get_id(purple_status_get_type(status)). - * - * @param status The status. - * - * @return The status's ID. - */ -const char *purple_status_get_id(const PurpleStatus *status); - -/** - * Returns the status's name. - * - * This is a convenience method for - * purple_status_type_get_name(purple_status_get_type(status)). - * - * @param status The status. - * - * @return The status's name. - */ -const char *purple_status_get_name(const PurpleStatus *status); - -/** - * Returns whether or not a status is independent. - * - * This is a convenience method for - * purple_status_type_is_independent(purple_status_get_type(status)). - * - * @param status The status. - * - * @return TRUE if the status is independent, or FALSE otherwise. - */ -gboolean purple_status_is_independent(const PurpleStatus *status); - -/** - * Returns whether or not a status is exclusive. - * - * This is a convenience method for - * purple_status_type_is_exclusive(purple_status_get_type(status)). - * - * @param status The status. - * - * @return TRUE if the status is exclusive, FALSE otherwise. - */ -gboolean purple_status_is_exclusive(const PurpleStatus *status); - -/** - * Returns whether or not a status is available. - * - * Available statuses are online and possibly invisible, but not away or idle. - * - * This is a convenience method for - * purple_status_type_is_available(purple_status_get_type(status)). - * - * @param status The status. - * - * @return TRUE if the status is available, or FALSE otherwise. - */ -gboolean purple_status_is_available(const PurpleStatus *status); - -/** - * Returns the active state of a status. - * - * @param status The status. - * - * @return The active state of the status. - */ -gboolean purple_status_is_active(const PurpleStatus *status); - -/** - * Returns whether or not a status is considered 'online' - * - * @param status The status. - * - * @return TRUE if the status is considered online, FALSE otherwise - */ -gboolean purple_status_is_online(const PurpleStatus *status); - -/** - * Returns the value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * - * @return The value of the attribute. - */ -PurpleValue *purple_status_get_attr_value(const PurpleStatus *status, - const char *id); - -/** - * Returns the boolean value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * - * @return The boolean value of the attribute. - */ -gboolean purple_status_get_attr_boolean(const PurpleStatus *status, - const char *id); - -/** - * Returns the integer value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * - * @return The integer value of the attribute. - */ -int purple_status_get_attr_int(const PurpleStatus *status, const char *id); - -/** - * Returns the string value of an attribute in a status with the specified ID. - * - * @param status The status. - * @param id The attribute ID. - * - * @return The string value of the attribute. - */ -const char *purple_status_get_attr_string(const PurpleStatus *status, - const char *id); - -/** - * Compares two statuses for availability. - * - * @param status1 The first status. - * @param status2 The second status. - * - * @return -1 if @a status1 is more available than @a status2. - * 0 if @a status1 is equal to @a status2. - * 1 if @a status2 is more available than @a status1. - */ -gint purple_status_compare(const PurpleStatus *status1, const PurpleStatus *status2); - -/*@}*/ - -/**************************************************************************/ -/** @name PurplePresence API */ -/**************************************************************************/ -/*@{*/ - -/** - * Creates a new presence. - * - * @param context The presence context. - * - * @return A new presence. - */ -PurplePresence *purple_presence_new(PurplePresenceContext context); - -/** - * Creates a presence for an account. - * - * @param account The account. - * - * @return The new presence. - */ -PurplePresence *purple_presence_new_for_account(PurpleAccount *account); - -/** - * Creates a presence for a conversation. - * - * @param conv The conversation. - * - * @return The new presence. - */ -PurplePresence *purple_presence_new_for_conv(PurpleConversation *conv); - -/** - * Creates a presence for a buddy. - * - * @param buddy The buddy. - * - * @return The new presence. - */ -PurplePresence *purple_presence_new_for_buddy(PurpleBuddy *buddy); - -/** - * Destroys a presence. - * - * All statuses added to this list will be destroyed along with - * the presence. - * - * @param presence The presence to destroy. - */ -void purple_presence_destroy(PurplePresence *presence); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Adds a status to a presence. - * - * @param presence The presence. - * @param status The status to add. - * - * @deprecated This function is only used by purple_presence_add_list, - * and both should be removed in 3.0.0. - */ -void purple_presence_add_status(PurplePresence *presence, PurpleStatus *status); -#endif - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_STATUS_C_) -/** - * Adds a list of statuses to the presence. - * - * @param presence The presence. - * @param source_list The source list of statuses to add, which is not - * modified or freed by this function. - * - * @deprecated This function isn't used and should be removed in 3.0.0. - */ -void purple_presence_add_list(PurplePresence *presence, GList *source_list); -#endif - -/** - * Sets the active state of a status in a presence. - * - * Only independent statuses can be set unactive. Normal statuses can only - * be set active, so if you wish to disable a status, set another - * non-independent status to active, or use purple_presence_switch_status(). - * - * @param presence The presence. - * @param status_id The ID of the status. - * @param active The active state. - */ -void purple_presence_set_status_active(PurplePresence *presence, - const char *status_id, gboolean active); - -/** - * Switches the active status in a presence. - * - * This is similar to purple_presence_set_status_active(), except it won't - * activate independent statuses. - * - * @param presence The presence. - * @param status_id The status ID to switch to. - */ -void purple_presence_switch_status(PurplePresence *presence, - const char *status_id); - -/** - * Sets the idle state and time on a presence. - * - * @param presence The presence. - * @param idle The idle state. - * @param idle_time The idle time, if @a idle is TRUE. This - * is the time at which the user became idle, - * in seconds since the epoch. If this value is - * unknown then 0 should be used. - */ -void purple_presence_set_idle(PurplePresence *presence, gboolean idle, - time_t idle_time); - -/** - * Sets the login time on a presence. - * - * @param presence The presence. - * @param login_time The login time. - */ -void purple_presence_set_login_time(PurplePresence *presence, time_t login_time); - - -/** - * Returns the presence's context. - * - * @param presence The presence. - * - * @return The presence's context. - */ -PurplePresenceContext purple_presence_get_context(const PurplePresence *presence); - -/** - * Returns a presence's account. - * - * @param presence The presence. - * - * @return The presence's account. - */ -PurpleAccount *purple_presence_get_account(const PurplePresence *presence); - -/** - * Returns a presence's conversation. - * - * @param presence The presence. - * - * @return The presence's conversation. - */ -PurpleConversation *purple_presence_get_conversation(const PurplePresence *presence); - -/** - * Returns a presence's chat user. - * - * @param presence The presence. - * - * @return The chat's user. - */ -const char *purple_presence_get_chat_user(const PurplePresence *presence); - -/** - * Returns the presence's buddy. - * - * @param presence The presence. - * - * @return The presence's buddy. - */ -PurpleBuddy *purple_presence_get_buddy(const PurplePresence *presence); - -/** - * Returns all the statuses in a presence. - * - * @param presence The presence. - * - * @constreturn The statuses. - */ -GList *purple_presence_get_statuses(const PurplePresence *presence); - -/** - * Returns the status with the specified ID from a presence. - * - * @param presence The presence. - * @param status_id The ID of the status. - * - * @return The status if found, or NULL. - */ -PurpleStatus *purple_presence_get_status(const PurplePresence *presence, - const char *status_id); - -/** - * Returns the active exclusive status from a presence. - * - * @param presence The presence. - * - * @return The active exclusive status. - */ -PurpleStatus *purple_presence_get_active_status(const PurplePresence *presence); - -/** - * Returns whether or not a presence is available. - * - * Available presences are online and possibly invisible, but not away or idle. - * - * @param presence The presence. - * - * @return TRUE if the presence is available, or FALSE otherwise. - */ -gboolean purple_presence_is_available(const PurplePresence *presence); - -/** - * Returns whether or not a presence is online. - * - * @param presence The presence. - * - * @return TRUE if the presence is online, or FALSE otherwise. - */ -gboolean purple_presence_is_online(const PurplePresence *presence); - -/** - * Returns whether or not a status in a presence is active. - * - * A status is active if itself or any of its sub-statuses are active. - * - * @param presence The presence. - * @param status_id The ID of the status. - * - * @return TRUE if the status is active, or FALSE. - */ -gboolean purple_presence_is_status_active(const PurplePresence *presence, - const char *status_id); - -/** - * Returns whether or not a status with the specified primitive type - * in a presence is active. - * - * A status is active if itself or any of its sub-statuses are active. - * - * @param presence The presence. - * @param primitive The status primitive. - * - * @return TRUE if the status is active, or FALSE. - */ -gboolean purple_presence_is_status_primitive_active( - const PurplePresence *presence, PurpleStatusPrimitive primitive); - -/** - * Returns whether or not a presence is idle. - * - * @param presence The presence. - * - * @return TRUE if the presence is idle, or FALSE otherwise. - * If the presence is offline (purple_presence_is_online() - * returns FALSE) then FALSE is returned. - */ -gboolean purple_presence_is_idle(const PurplePresence *presence); - -/** - * Returns the presence's idle time. - * - * @param presence The presence. - * - * @return The presence's idle time. - */ -time_t purple_presence_get_idle_time(const PurplePresence *presence); - -/** - * Returns the presence's login time. - * - * @param presence The presence. - * - * @return The presence's login time. - */ -time_t purple_presence_get_login_time(const PurplePresence *presence); - -/** - * Compares two presences for availability. - * - * @param presence1 The first presence. - * @param presence2 The second presence. - * - * @return -1 if @a presence1 is more available than @a presence2. - * 0 if @a presence1 is equal to @a presence2. - * 1 if @a presence1 is less available than @a presence2. - */ -gint purple_presence_compare(const PurplePresence *presence1, - const PurplePresence *presence2); - -/*@}*/ - -/**************************************************************************/ -/** @name Status subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Get the handle for the status subsystem. - * - * @return the handle to the status subsystem - */ -void *purple_status_get_handle(void); - -/** - * Initializes the status subsystem. - */ -void purple_status_init(void); - -/** - * Uninitializes the status subsystem. - */ -void purple_status_uninit(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_STATUS_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stringref.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stringref.h deleted file mode 100644 index cbb9eec..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stringref.h +++ /dev/null @@ -1,138 +0,0 @@ -/* TODO: Can we just replace this whole thing with a GCache */ - -/** - * @file stringref.h Reference-counted immutable strings - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ -#ifndef _PURPLE_STRINGREF_H_ -#define _PURPLE_STRINGREF_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct _PurpleStringref PurpleStringref; - -/** - * Creates an immutable reference-counted string object. The newly - * created object will have a reference count of 1. - * - * @param value This will be the value of the string; it will be - * duplicated. - * - * @return A newly allocated string reference object with a refcount - * of 1. - */ -PurpleStringref *purple_stringref_new(const char *value); - -/** - * Creates an immutable reference-counted string object. The newly - * created object will have a reference count of zero, and if it is - * not referenced before the next iteration of the mainloop it will - * be freed at that time. - * - * @param value This will be the value of the string; it will be - * duplicated. - * - * @return A newly allocated string reference object with a refcount - * of zero. - */ -PurpleStringref *purple_stringref_new_noref(const char *value); - -/** - * Creates an immutable reference-counted string object from a printf - * format specification and arguments. The created object will have a - * reference count of 1. - * - * @param format A printf-style format specification. - * - * @return A newly allocated string reference object with a refcount - * of 1. - */ -PurpleStringref *purple_stringref_printf(const char *format, ...); - -/** - * Increase the reference count of the given stringref. - * - * @param stringref String to be referenced. - * - * @return A pointer to the referenced string. - */ -PurpleStringref *purple_stringref_ref(PurpleStringref *stringref); - -/** - * Decrease the reference count of the given stringref. If this - * reference count reaches zero, the stringref will be freed; thus - * you MUST NOT use this string after dereferencing it. - * - * @param stringref String to be dereferenced. - */ -void purple_stringref_unref(PurpleStringref *stringref); - -/** - * Retrieve the value of a stringref. - * - * @note This value should not be cached or stored in a local variable. - * While there is nothing inherently incorrect about doing so, it - * is easy to forget that the cached value is in fact a - * reference-counted object and accidentally use it after - * dereferencing. This is more problematic for a reference- - * counted object than a heap-allocated object, as it may seem to - * be valid or invalid nondeterministically based on how many - * other references to it exist. - * - * @param stringref String reference from which to retrieve the value. - * - * @return The contents of the string reference. - */ -const char *purple_stringref_value(const PurpleStringref *stringref); - -/** - * Compare two stringrefs for string equality. This returns the same - * value as strcmp would, where <0 indicates that s1 is "less than" s2 - * in the ASCII lexicography, 0 indicates equality, etc. - * - * @param s1 The reference string. - * - * @param s2 The string to compare against the reference. - * - * @return An ordering indication on s1 and s2. - */ -int purple_stringref_cmp(const PurpleStringref *s1, const PurpleStringref *s2); - -/** - * Find the length of the string inside a stringref. - * - * @param stringref The string in whose length we are interested. - * - * @return The length of the string in stringref - */ -size_t purple_stringref_len(const PurpleStringref *stringref); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_STRINGREF_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stun.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stun.h deleted file mode 100644 index b51a61c..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/stun.h +++ /dev/null @@ -1,88 +0,0 @@ -/** - * @file stun.h STUN API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_STUN_H_ -#define _PURPLE_STUN_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name STUN API */ -/**************************************************************************/ -/*@{*/ - -typedef struct _PurpleStunNatDiscovery PurpleStunNatDiscovery; - -typedef enum { - PURPLE_STUN_STATUS_UNDISCOVERED = -1, - PURPLE_STUN_STATUS_UNKNOWN, /* no STUN server reachable */ - PURPLE_STUN_STATUS_DISCOVERING, - PURPLE_STUN_STATUS_DISCOVERED -} PurpleStunStatus; - -typedef enum { - PURPLE_STUN_NAT_TYPE_PUBLIC_IP, - PURPLE_STUN_NAT_TYPE_UNKNOWN_NAT, - PURPLE_STUN_NAT_TYPE_FULL_CONE, - PURPLE_STUN_NAT_TYPE_RESTRICTED_CONE, - PURPLE_STUN_NAT_TYPE_PORT_RESTRICTED_CONE, - PURPLE_STUN_NAT_TYPE_SYMMETRIC -} PurpleStunNatType; - -struct _PurpleStunNatDiscovery { - PurpleStunStatus status; - PurpleStunNatType type; - char publicip[16]; - char *servername; - time_t lookup_time; -}; - -typedef void (*StunCallback) (PurpleStunNatDiscovery *); - -/** - * Starts a NAT discovery. It returns a PurpleStunNatDiscovery if the discovery - * is already done. Otherwise the callback is called when the discovery is over - * and NULL is returned. - * - * @param cb The callback to call when the STUN discovery is finished if the - * discovery would block. If the discovery is done, this is NOT - * called. - * - * @return a PurpleStunNatDiscovery which includes the public IP and the type - * of NAT or NULL is discovery would block - */ -PurpleStunNatDiscovery *purple_stun_discover(StunCallback cb); - -void purple_stun_init(void); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_STUN_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/switchboard.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/switchboard.h deleted file mode 100644 index 5a12538..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/switchboard.h +++ /dev/null @@ -1,266 +0,0 @@ -/** - * @file switchboard.h MSN switchboard functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_SWITCHBOARD_H -#define MSN_SWITCHBOARD_H - -typedef struct _MsnSwitchBoard MsnSwitchBoard; - -/** - * A switchboard error. - */ -typedef enum -{ - MSN_SB_ERROR_NONE, /**< No error. */ - MSN_SB_ERROR_CAL, /**< The user could not join (answer the call). */ - MSN_SB_ERROR_OFFLINE, /**< The account is offline. */ - MSN_SB_ERROR_USER_OFFLINE, /**< The user to call is offline. */ - MSN_SB_ERROR_CONNECTION, /**< There was a connection error. */ - MSN_SB_ERROR_TOO_FAST, /**< We are sending too fast */ - MSN_SB_ERROR_AUTHFAILED, /**< Authentication failed joining the switchboard session */ - MSN_SB_ERROR_UNKNOWN /**< An unknown error occurred. */ -} MsnSBErrorType; - -/** - * A switchboard flag. - */ -typedef enum -{ - MSN_SB_FLAG_IM = 0x01, /**< This switchboard is being used for a conversation. */ - MSN_SB_FLAG_FT = 0x02 /**< This switchboard is being used for file transfer. */ -} MsnSBFlag; - -#include "cmdproc.h" -#include "msg.h" -#include "servconn.h" -#include "session.h" - -/** - * A switchboard. - * - * A place where a bunch of users send messages to the rest of the users. - */ -struct _MsnSwitchBoard -{ - MsnSession *session; /**< Our parent session. */ - MsnServConn *servconn; /**< The physical connection for this switchboard. */ - MsnCmdProc *cmdproc; /**< Convenience variable for servconn->cmdproc. */ - char *im_user; - - MsnSBFlag flag; - char *auth_key; - char *session_id; - - PurpleConversation *conv; /**< The conversation that displays the - messages of this switchboard, or @c NULL if - this is a helper switchboard. */ - - gboolean empty; /**< A flag that states if the swithcboard has no - users in it. */ - gboolean invited; /**< A flag that states if we were invited to the - switchboard. */ - gboolean ready; /**< A flag that states if this switchboard is - ready to be used. */ - gboolean closed; /**< A flag that states if the switchboard has - been closed by the user. */ - gboolean destroying; /**< A flag that states if the switchboard is - alredy on the process of destruction. */ - - int current_users; - int total_users; - GList *users; - - int chat_id; - - GQueue *msg_queue; /**< Queue of messages to send. */ - GList *ack_list; /**< List of messages waiting for an ack. */ - - MsnSBErrorType error; /**< The error that occurred in this switchboard - (if applicable). */ - GList *slplinks; /**< The list of slplinks that are using this switchboard. */ - guint reconn_timeout_h; -}; - -/** - * Initialize the variables for switchboard creation. - */ -void msn_switchboard_init(void); - -/** - * Destroy the variables for switchboard creation. - */ -void msn_switchboard_end(void); - -/** - * Creates a new switchboard. - * - * @param session The MSN session. - * - * @return The new switchboard. - */ -MsnSwitchBoard *msn_switchboard_new(MsnSession *session); - -/** - * Destroys a switchboard. - * - * @param swboard The switchboard to destroy. - */ -void msn_switchboard_destroy(MsnSwitchBoard *swboard); - -/** - * Sets the auth key the switchboard must use when connecting. - * - * @param swboard The switchboard. - * @param key The auth key. - */ -void msn_switchboard_set_auth_key(MsnSwitchBoard *swboard, const char *key); - -/** - * Returns the auth key the switchboard must use when connecting. - * - * @param swboard The switchboard. - * - * @return The auth key. - */ -const char *msn_switchboard_get_auth_key(MsnSwitchBoard *swboard); - -/** - * Sets the session ID the switchboard must use when connecting. - * - * @param swboard The switchboard. - * @param id The session ID. - */ -void msn_switchboard_set_session_id(MsnSwitchBoard *swboard, const char *id); - -/** - * Returns the session ID the switchboard must use when connecting. - * - * @param swboard The switchboard. - * - * @return The session ID. - */ -const char *msn_switchboard_get_session_id(MsnSwitchBoard *swboard); - -/** - * Returns the next chat ID for use by a switchboard. - * - * @return The chat ID. - */ -int msn_switchboard_get_chat_id(void); - -/** - * Sets whether or not we were invited to this switchboard. - * - * @param swboard The switchboard. - * @param invite @c TRUE if invited, @c FALSE otherwise. - */ -void msn_switchboard_set_invited(MsnSwitchBoard *swboard, gboolean invited); - -/** - * Returns whether or not we were invited to this switchboard. - * - * @param swboard The switchboard. - * - * @return @c TRUE if invited, @c FALSE otherwise. - */ -gboolean msn_switchboard_is_invited(MsnSwitchBoard *swboard); - -/** - * Connects to a switchboard. - * - * @param swboard The switchboard. - * @param host The switchboard server host. - * @param port The switcbharod server port. - * - * @return @c TRUE if able to connect, or @c FALSE otherwise. - */ -gboolean msn_switchboard_connect(MsnSwitchBoard *swboard, - const char *host, int port); - -/** - * Disconnects from a switchboard. - * - * @param swboard The switchboard to disconnect from. - */ -void msn_switchboard_disconnect(MsnSwitchBoard *swboard); - -/** - * Closes the switchboard. - * - * Called when a conversation is closed. - * - * @param swboard The switchboard to close. - */ -void msn_switchboard_close(MsnSwitchBoard *swboard); - -/** - * Release a switchboard from a certain function. - * - * @param swboard The switchboard to release. - * @param flag The flag that states the function. - */ -void msn_switchboard_release(MsnSwitchBoard *swboard, MsnSBFlag flag); - -/** - * Returns whether or not we currently can send a message through this - * switchboard. - * - * @param swboard The switchboard. - * - * @return @c TRUE if a message can be sent, @c FALSE otherwise. - */ -gboolean msn_switchboard_can_send(MsnSwitchBoard *swboard); - -/** - * Sends a message through this switchboard. - * - * @param swboard The switchboard. - * @param msg The message. - * @param queue A flag that states if we want this message to be queued (in - * the case it cannot currently be sent). - * - * @return @c TRUE if a message can be sent, @c FALSE otherwise. - */ -void msn_switchboard_send_msg(MsnSwitchBoard *swboard, MsnMessage *msg, - gboolean queue); - -void -msg_error_helper(MsnCmdProc *cmdproc, MsnMessage *msg, MsnMsgErrorType error); - -gboolean msn_switchboard_chat_leave(MsnSwitchBoard *swboard); -gboolean msn_switchboard_chat_invite(MsnSwitchBoard *swboard, const char *who); - -gboolean msn_switchboard_request(MsnSwitchBoard *swboard); -void msn_switchboard_request_add_user(MsnSwitchBoard *swboard, const char *user); - -/** - * Shows an ink message from this switchboard. - * - * @param swboard The switchboard. - * @param passport The user that sent the ink. - * @param data The ink data. - */ -void msn_switchboard_show_ink(MsnSwitchBoard *swboard, const char *passport, - const char *data); - -#endif /* MSN_SWITCHBOARD_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/table.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/table.h deleted file mode 100644 index 83d9954..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/table.h +++ /dev/null @@ -1,93 +0,0 @@ -/** - * @file table.h MSN helper structure - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_TABLE_H -#define MSN_TABLE_H - -typedef struct _MsnTable MsnTable; - -#include "cmdproc.h" -#include "transaction.h" -#include "msg.h" - -typedef void (*MsnMsgTypeCb)(MsnCmdProc *cmdproc, MsnMessage *msg); - -struct _MsnTable -{ - GHashTable *cmds; /**< Callbacks that manage command response. */ - GHashTable *msgs; /**< Callbacks that manage incoming messages. */ - GHashTable *errors; /**< Callbacks that manage command errors. */ - - GHashTable *async; /**< Callbacks that manage incoming asyncronous messages. */ - /* TODO: Does this one is really needed? */ - GHashTable *fallback; /**< Fallback callback. */ -}; - -/** - * Create a new instance of a MsnTable which map commands, errors and messages - * with callbacks that will handle it. - * - * @return A new MsnTable. - */ -MsnTable *msn_table_new(void); - -/** - * Destroy a MsnTable. - * - * @param table The MsnTable to be destroyed. - */ -void msn_table_destroy(MsnTable *table); - -/** - * Relate an incomming command from server with a callback able to handle - * the event. - * - * @param table The MsnTable. - * @param command If NULL this add an incoming asyncronous command set in answer. - * Else, the command sent. - * @param answer The server answer to 'command'. If 'command' is NULL, - * the asyncronous command sent by the server. - * @param cb Callback to handle this event. - */ -void msn_table_add_cmd(MsnTable *table, char *command, char *answer, - MsnTransCb cb); - -/** - * Set a callback to handle incoming command errors. - * - * @param table The MsnTable. - * @param answer Incoming command with error. - * @param cb Callback to handle this error. - */ -void msn_table_add_error(MsnTable *table, char *answer, MsnErrorCb cb); - -/** - * Relate a message Content-type with a callback able to handle it. - * - * @param table The MsnTable. - * @param type The Message Content-Type. - * @param cb Callback to handle this Content-type. - */ -void msn_table_add_msg_type(MsnTable *table, char *type, MsnMsgTypeCb cb); - -#endif /* MSN_TABLE_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-loader.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-loader.h deleted file mode 100644 index bf76b38..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-loader.h +++ /dev/null @@ -1,93 +0,0 @@ -/** - * @file theme-loader.h Purple Theme Loader Abstact Class API - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef PURPLE_THEME_LOADER_H -#define PURPLE_THEME_LOADER_H - -#include -#include -#include "theme.h" - -/** - * A purple theme loader. - * This is an abstract class for Purple to use with the Purple theme manager. - * The loader is responsible for building each type of theme - * - * PurpleThemeLoader is a GObject. - */ -typedef struct _PurpleThemeLoader PurpleThemeLoader; -typedef struct _PurpleThemeLoaderClass PurpleThemeLoaderClass; - -#define PURPLE_TYPE_THEME_LOADER (purple_theme_loader_get_type()) -#define PURPLE_THEME_LOADER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_THEME_LOADER, PurpleThemeLoader)) -#define PURPLE_THEME_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_THEME_LOADER, PurpleThemeLoaderClass)) -#define PURPLE_IS_THEME_LOADER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_THEME_LOADER)) -#define PURPLE_IS_THEME_LOADER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_THEME_LOADER)) -#define PURPLE_THEME_LOADER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_THEME_LOADER, PurpleThemeLoaderClass)) - -struct _PurpleThemeLoader -{ - GObject parent; - gpointer priv; -}; - -struct _PurpleThemeLoaderClass -{ - GObjectClass parent_class; - PurpleTheme *((*purple_theme_loader_build)(const gchar*)); -}; - -/**************************************************************************/ -/** @name Purple Theme-Loader API */ -/**************************************************************************/ -G_BEGIN_DECLS - -/** - * GObject foo. - * @internal. - */ -GType purple_theme_loader_get_type(void); - -/** - * Returns the string representing the type of the theme loader - * - * @param self The theme loader - * - * @returns The string representing this type - */ -const gchar *purple_theme_loader_get_type_string(PurpleThemeLoader *self); - -/** - * Creates a new PurpleTheme - * - * @param loader The theme loader - * @param dir The directory containing the theme - * - * @returns A PurpleTheme containing the information from the directory - */ -PurpleTheme *purple_theme_loader_build(PurpleThemeLoader *loader, const gchar *dir); - -G_END_DECLS -#endif /* PURPLE_THEME_LOADER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-manager.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-manager.h deleted file mode 100644 index f727339..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme-manager.h +++ /dev/null @@ -1,139 +0,0 @@ -/** - * @file theme-manager.h Theme Manager API - */ - -/* - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef PURPLE_THEME_MANAGER_H -#define PURPLE_THEME_MANAGER_H - -#include -#include -#include "theme.h" -#include "theme-loader.h" - -typedef void (*PTFunc) (PurpleTheme *); - -typedef struct _PurpleThemeManager PurpleThemeManager; -typedef struct _PurpleThemeManagerClass PurpleThemeManagerClass; - -#define PURPLE_TYPE_THEME_MANAGER (purple_theme_manager_get_type()) -#define PURPLE_THEME_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_THEME_MANAGER, PurpleThemeManager)) -#define PURPLE_THEME_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_THEME_MANAGER, PurpleThemeManagerClass)) -#define PURPLE_IS_THEME_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_THEME_MANAGER)) -#define PURPLE_IS_THEME_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_THEME_MANAGER)) -#define PURPLE_GET_THEME_MANAGER_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_THEME_MANAGER, PurpleThemeManagerClass)) - -struct _PurpleThemeManager { - GObject parent; -}; - -struct _PurpleThemeManagerClass { - GObjectClass parent_class; -}; - -/**************************************************************************/ -/** @name Purple Theme Manager API */ -/**************************************************************************/ -G_BEGIN_DECLS - -/** - * GObject foo. - * - * @internal. - */ -GType purple_theme_manager_get_type(void); - -/** - * Initalizes the theme manager. - */ -void purple_theme_manager_init(void); - -/** - * Uninitalizes the manager then frees all the themes and loaders it is - * responsible for. - */ -void purple_theme_manager_uninit(void); - -/** - * Rebuilds all the themes in the theme manager. - * (Removes all current themes but keeps the added loaders.) - */ -void purple_theme_manager_refresh(void); - -/** - * Finds the PurpleTheme object stored by the theme manager. - * - * @param name The name of the PurpleTheme. - * @param type The type of the PurpleTheme. - * - * @returns The PurpleTheme, or NULL if it wasn't found. - */ -PurpleTheme *purple_theme_manager_find_theme(const gchar *name, const gchar *type); - -/** - * Adds a PurpleTheme to the theme manager. If the theme already exists - * then this function does nothing. - * - * @param theme The PurpleTheme to add to the manager. - */ -void purple_theme_manager_add_theme(PurpleTheme *theme); - -/** - * Removes a PurpleTheme from the theme manager and frees the theme. - * - * @param theme The PurpleTheme to remove from the manager. - */ -void purple_theme_manager_remove_theme(PurpleTheme *theme); - -/** - * Adds a loader to the theme manager so it knows how to build themes. - * - * @param loader The PurpleThemeLoader to add. - */ -void purple_theme_manager_register_type(PurpleThemeLoader *loader); - -/** - * Removes the loader and all themes of the same type from the loader. - * - * @param loader The PurpleThemeLoader to be removed. - */ -void purple_theme_manager_unregister_type(PurpleThemeLoader *loader); - -/** - * Calls the given function on each purple theme. - * - * @param func The PTFunc to be applied to each theme. - */ -void purple_theme_manager_for_each_theme(PTFunc func); - -/** - * Loads a theme of the given type without adding it to the manager - * - * @param theme_dir the directory of the theme to load - * @param type the type of theme to load - */ -PurpleTheme *purple_theme_manager_load_theme(const gchar *theme_dir, const gchar *type); - -G_END_DECLS -#endif /* PURPLE_THEME_MANAGER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme.h deleted file mode 100644 index e6ffa13..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/theme.h +++ /dev/null @@ -1,175 +0,0 @@ -/** - * @file theme.h Purple Theme Abstact Class API - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef PURPLE_THEME_H -#define PURPLE_THEME_H - -#include -#include -#include "imgstore.h" - -/** - * A purple theme. - * This is an abstract class for Purple to use with the Purple theme manager. - * - * PurpleTheme is a GObject. - */ -typedef struct _PurpleTheme PurpleTheme; -typedef struct _PurpleThemeClass PurpleThemeClass; - -#define PURPLE_TYPE_THEME (purple_theme_get_type ()) -#define PURPLE_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PURPLE_TYPE_THEME, PurpleTheme)) -#define PURPLE_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PURPLE_TYPE_THEME, PurpleThemeClass)) -#define PURPLE_IS_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PURPLE_TYPE_THEME)) -#define PURPLE_IS_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PURPLE_TYPE_THEME)) -#define PURPLE_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PURPLE_TYPE_THEME, PurpleThemeClass)) - -struct _PurpleTheme -{ - GObject parent; - gpointer priv; -}; - -struct _PurpleThemeClass -{ - GObjectClass parent_class; -}; - -/**************************************************************************/ -/** @name Purple Theme API */ -/**************************************************************************/ -G_BEGIN_DECLS - -/** - * GObject foo. - * @internal. - */ -GType purple_theme_get_type(void); - -/** - * Returns the name of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The string representing the name of the theme. - */ -const gchar *purple_theme_get_name(PurpleTheme *theme); - -/** - * Sets the name of the PurpleTheme object. - * - * @param theme The purple theme. - * @param name The name of the PurpleTheme object. - */ -void purple_theme_set_name(PurpleTheme *theme, const gchar *name); - -/** - * Returns the description of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return A short description of the theme. - */ -const gchar *purple_theme_get_description(PurpleTheme *theme); - -/** - * Sets the description of the PurpleTheme object. - * - * @param theme The purple theme. - * @param description The description of the PurpleTheme object. - */ -void purple_theme_set_description(PurpleTheme *theme, const gchar *description); - -/** - * Returns the author of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The author of the theme. - */ -const gchar *purple_theme_get_author(PurpleTheme *theme); - -/** - * Sets the author of the PurpleTheme object. - * - * @param theme The purple theme. - * @param author The author of the PurpleTheme object. - */ -void purple_theme_set_author(PurpleTheme *theme, const gchar *author); - -/** - * Returns the type (string) of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The string representing the type. - */ -const gchar *purple_theme_get_type_string(PurpleTheme *theme); - -/** - * Returns the directory of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The string representing the theme directory. - */ -const gchar *purple_theme_get_dir(PurpleTheme *theme); - -/** - * Sets the directory of the PurpleTheme object. - * - * @param theme The purple theme. - * @param dir The directory of the PurpleTheme object. - */ -void purple_theme_set_dir(PurpleTheme *theme, const gchar *dir); - -/** - * Returns the image preview of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The image preview of the PurpleTheme object. - */ -const gchar *purple_theme_get_image(PurpleTheme *theme); - -/** - * Returns the image preview and directory of the PurpleTheme object. - * - * @param theme The purple theme. - * - * @return The image preview of the PurpleTheme object. - */ -gchar *purple_theme_get_image_full(PurpleTheme *theme); - -/** - * Sets the directory of the PurpleTheme object. - * - * @param theme The purple theme. - * @param img The image preview of the PurpleTheme object. - */ -void purple_theme_set_image(PurpleTheme *theme, const gchar *img); - -G_END_DECLS -#endif /* PURPLE_THEME_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/tlv.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/tlv.h deleted file mode 100644 index c2032f7..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/tlv.h +++ /dev/null @@ -1,77 +0,0 @@ -/** - * @file tlv.h MSN TLV functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef MSN_TLV_H -#define MSN_TLV_H - -#include "msn.h" - -/* TLV structure */ -typedef struct msn_tlv_s -{ - guint8 type; - guint8 length; - guint8 *value; -} msn_tlv_t; - -/* TLV handling functions */ -char *msn_tlv_getvalue_as_string(msn_tlv_t *tlv); - -msn_tlv_t *msn_tlv_gettlv(GSList *list, const guint8 type, const int nth); -int msn_tlv_getlength(GSList *list, const guint8 type, const int nth); -char *msn_tlv_getstr(GSList *list, const guint8 type, const int nth); -guint8 msn_tlv_get8(GSList *list, const guint8 type, const int nth); -guint16 msn_tlv_get16(GSList *list, const guint8 type, const int nth); -guint32 msn_tlv_get32(GSList *list, const guint8 type, const int nth); - -/* TLV list handling functions */ -GSList *msn_tlvlist_read(const char *bs, size_t bs_len); -GSList *msn_tlvlist_copy(GSList *orig); - -int msn_tlvlist_count(GSList *list); -size_t msn_tlvlist_size(GSList *list); -gboolean msn_tlvlist_equal(GSList *one, GSList *two); -char *msn_tlvlist_write(GSList *list, size_t *out_len); -void msn_tlvlist_free(GSList *list); - -int msn_tlvlist_add_raw(GSList **list, const guint8 type, const guint8 length, const char *value); -int msn_tlvlist_add_empty(GSList **list, const guint8 type); -int msn_tlvlist_add_8(GSList **list, const guint8 type, const guint8 value); -int msn_tlvlist_add_16(GSList **list, const guint8 type, const guint16 value); -int msn_tlvlist_add_32(GSList **list, const guint8 type, const guint32 value); -int msn_tlvlist_add_str(GSList **list, const guint8 type, const char *value); -int msn_tlvlist_add_tlv(GSList **list, const msn_tlv_t *tlv); - -int msn_tlvlist_replace_raw(GSList **list, const guint8 type, const guint8 lenth, const char *value); -int msn_tlvlist_replace_str(GSList **list, const guint8 type, const char *str); -int msn_tlvlist_replace_empty(GSList **list, const guint8 type); -int msn_tlvlist_replace_8(GSList **list, const guint8 type, const guint8 value); -int msn_tlvlist_replace_16(GSList **list, const guint8 type, const guint16 value); -int msn_tlvlist_replace_32(GSList **list, const guint8 type, const guint32 value); -int msn_tlvlist_replace_tlv(GSList **list, const msn_tlv_t *tlv); - -void msn_tlvlist_remove(GSList **list, const guint8 type); - -#endif /* MSN_TLV_H */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/transaction.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/transaction.h deleted file mode 100644 index 7d47641..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/transaction.h +++ /dev/null @@ -1,87 +0,0 @@ -/** - * @file transaction.h MSN transaction functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_TRANSACTION_H -#define MSN_TRANSACTION_H - -#include "internal.h" - -typedef struct _MsnTransaction MsnTransaction; - -#include "cmdproc.h" -#include "command.h" - -typedef void (*MsnTransCb)(MsnCmdProc *cmdproc, MsnCommand *cmd); -typedef void (*MsnTimeoutCb)(MsnCmdProc *cmdproc, MsnTransaction *trans); -typedef void (*MsnErrorCb)(MsnCmdProc *cmdproc, MsnTransaction *trans, - int error); - -/** - * A transaction. A sending command that will initiate the transaction. - */ -struct _MsnTransaction -{ - MsnCmdProc *cmdproc; - - gboolean saveable; /**< Whether to save this transaction in the history */ - unsigned int trId; /**< The ID of this transaction, if it's being saved */ - - char *command; - char *params; - - guint timer; - - void *data; /**< The data to be used on the different callbacks. */ - GDestroyNotify data_free; /**< The function to free 'data', or @c NULL */ - - GHashTable *callbacks; - gboolean has_custom_callbacks; - MsnErrorCb error_cb; - MsnTimeoutCb timeout_cb; - - char *payload; - size_t payload_len; - - GQueue *queue; - MsnCommand *pendent_cmd; /**< The command that is waiting for the result of - this transaction. */ -}; - -MsnTransaction *msn_transaction_new(MsnCmdProc *cmdproc, const char *command, - const char *format, ...) G_GNUC_PRINTF(3, 4); -void msn_transaction_destroy(MsnTransaction *trans); - -char *msn_transaction_to_string(MsnTransaction *trans); -void msn_transaction_queue_cmd(MsnTransaction *trans, MsnCommand *cmd); -void msn_transaction_unqueue_cmd(MsnTransaction *trans, MsnCmdProc *cmdproc); -void msn_transaction_set_payload(MsnTransaction *trans, - const char *payload, int payload_len); -void msn_transaction_set_data(MsnTransaction *trans, void *data); -void msn_transaction_set_data_free(MsnTransaction *trans, GDestroyNotify fn); -void msn_transaction_set_saveable(MsnTransaction *trans, gboolean saveable); -void msn_transaction_add_cb(MsnTransaction *trans, char *answer, - MsnTransCb cb); -void msn_transaction_set_error_cb(MsnTransaction *trans, MsnErrorCb cb); -void msn_transaction_set_timeout_cb(MsnTransaction *trans, MsnTimeoutCb cb); - -#endif /* MSN_TRANSACTION_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/upnp.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/upnp.h deleted file mode 100644 index b0e4ab4..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/upnp.h +++ /dev/null @@ -1,132 +0,0 @@ -/** - * @file upnp.h Universal Plug N Play API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_UPNP_H_ -#define _PURPLE_UPNP_H_ - -typedef struct _UPnPMappingAddRemove UPnPMappingAddRemove; - -#ifdef __cplusplus -extern "C" { -#endif - -/**************************************************************************/ -/** @name UPnP API */ -/**************************************************************************/ -/*@{*/ - -/* typedef struct _PurpleUPnPRequestData PurpleUPnPRequestData; */ - -typedef void (*PurpleUPnPCallback) (gboolean success, gpointer data); - - -/** - * Initialize UPnP - */ -void purple_upnp_init(void); - - -/** - * Sends a discovery request to search for a UPnP enabled IGD that - * contains the WANIPConnection service that will allow us to recieve the - * public IP address of the IGD, and control it for forwarding ports. - * The result will be cached for further use. - * - * @param cb an optional callback function to be notified when the UPnP - * discovery is complete - * @param cb_data Extra data to be passed to the callback - */ -void purple_upnp_discover(PurpleUPnPCallback cb, gpointer cb_data); - -#if 0 -/** - * Retrieve the current UPnP control info, if there is any available. - * This will only be filled in if purple_upnp_discover() had been called, - * and finished discovering. - * - * @return The control URL for the IGD we'll use to use the IGD services - */ -const PurpleUPnPControlInfo* purple_upnp_get_control_info(void); -#endif - -/** - * Gets the IP address from a UPnP enabled IGD that sits on the local - * network, so when getting the network IP, instead of returning the - * local network IP, the public IP is retrieved. This is a cached value from - * the time of the UPnP discovery. - * - * @return The IP address of the network, or NULL if something went wrong - */ -const gchar* purple_upnp_get_public_ip(void); - -/** - * Cancel a pending port mapping request initiated with either - * purple_upnp_set_port_mapping() or purple_upnp_remove_port_mapping(). - * - * @param mapping_data The data returned when you initiated the UPnP mapping request. - */ -void purple_upnp_cancel_port_mapping(UPnPMappingAddRemove *mapping_data); - -/** - * Maps Ports in a UPnP enabled IGD that sits on the local network to - * this purple client. Essentially, this function takes care of the port - * forwarding so things like file transfers can work behind NAT firewalls - * - * @param portmap The port to map to this client - * @param protocol The protocol to map, either "TCP" or "UDP" - * @param cb an optional callback function to be notified when the mapping - * addition is complete - * @param cb_data Extra data to be passed to the callback - * - * @return Data which can be passed to purple_upnp_port_mapping_cancel() to cancel - */ -UPnPMappingAddRemove *purple_upnp_set_port_mapping(unsigned short portmap, const gchar* protocol, - PurpleUPnPCallback cb, gpointer cb_data); - -/** - * Deletes a port mapping in a UPnP enabled IGD that sits on the local network - * to this purple client. Essentially, this function takes care of deleting the - * port forwarding after they have completed a connection so another client on - * the local network can take advantage of the port forwarding - * - * @param portmap The port to delete the mapping for - * @param protocol The protocol to map to. Either "TCP" or "UDP" - * @param cb an optional callback function to be notified when the mapping - * removal is complete - * @param cb_data Extra data to be passed to the callback - * - * @return Data which can be passed to purple_upnp_port_mapping_cancel() to cancel - */ -UPnPMappingAddRemove *purple_upnp_remove_port_mapping(unsigned short portmap, - const gchar* protocol, PurpleUPnPCallback cb, gpointer cb_data); - -/*@}*/ - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_UPNP_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/user.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/user.h deleted file mode 100644 index 727c717..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/user.h +++ /dev/null @@ -1,533 +0,0 @@ -/** - * @file user.h User functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_USER_H -#define MSN_USER_H - -typedef struct _MsnUser MsnUser; - -typedef enum -{ - MSN_NETWORK_UNKNOWN = 0, - MSN_NETWORK_PASSPORT = 1, - MSN_NETWORK_COMMUNICATOR = 2, - MSN_NETWORK_MOBILE = 4, - MSN_NETWORK_MNI = 8, - MSN_NETWORK_CIRCLE = 9, - MSN_NETWORK_TEMP_GROUP = 10, - MSN_NETWORK_CID = 11, - MSN_NETWORK_CONNECT = 13, - MSN_NETWORK_REMOTE = 14, - MSN_NETWORK_SMTP = 16, - MSN_NETWORK_YAHOO = 32 -} MsnNetwork; - -/** - * Current media. - */ -typedef enum -{ - CURRENT_MEDIA_UNKNOWN, - CURRENT_MEDIA_MUSIC, - CURRENT_MEDIA_GAMES, - CURRENT_MEDIA_OFFICE -} CurrentMediaType; - -#include "object.h" -#include "session.h" -#include "userlist.h" - -/** - * Contains optional info about a user that is fairly uncommon. We - * put this info in in a separate struct to save memory because we - * allocate an MsnUser struct for each buddy, but we generally only - * need this information for a small percentage of our buddies - * (usually less than 1%). Putting it in a separate struct makes - * MsnUser smaller by the size of a few pointers. - */ -typedef struct _MsnUserExtendedInfo -{ - CurrentMediaType media_type; /**< Type of the user's current media. */ - char *media_title; /**< Title of the user's current media. */ - char *media_artist; /**< Artist of the user's current media. */ - char *media_album; /**< Album of the user's current media. */ - - char *phone_home; /**< E.T. uses this. */ - char *phone_work; /**< Work phone number. */ - char *phone_mobile; /**< Mobile phone number. */ -} MsnUserExtendedInfo; - -/** - * A user. - */ -struct _MsnUser -{ - MsnUserList *userlist; - - guint8 refcount; /**< The reference count of this object */ - - char *passport; /**< The passport account. */ - char *friendly_name; /**< The friendly name. */ - - char *uid; /*< User ID */ - GSList *endpoints; /*< Endpoint-specific data */ - - const char *status; /**< The state of the user. */ - char *statusline; /**< The state of the user. */ - - gboolean idle; /**< The idle state of the user. */ - - MsnUserExtendedInfo *extinfo; /**< Extended info for the user. */ - - gboolean authorized; /**< Authorized to add this user. */ - gboolean mobile; /**< Signed up with MSN Mobile. */ - - GList *group_ids; /**< The group IDs. */ - char *pending_group; /**< A pending group to add. */ - - MsnObject *msnobj; /**< The user's MSN Object. */ - - GHashTable *clientcaps; /**< The client's capabilities. */ - - guint clientid; /**< The client's ID */ - guint extcaps; /**< The client's extended capabilities */ - - MsnNetwork networkid; /**< The user's network */ - - MsnListOp list_op; /**< Which lists the user is in */ - - /** - * The membershipId for this buddy on our pending list. Sent by - * the contact's server - */ - guint member_id_on_pending_list; - - char *invite_message; /**< Invite message of user request */ -}; - -/** - * A specific user endpoint. - */ -typedef struct MsnUserEndpoint { - char *id; /**< The client's endpoint ID */ - char *name; /**< The client's endpoint's name */ - int type; /**< The client's endpoint type */ - guint clientid; /**< The client's ID */ - guint extcaps; /**< The client's extended capabilites */ - -} MsnUserEndpoint; - -/************************************************************************** - ** @name User API * - **************************************************************************/ -/*@{*/ - -/** - * Creates a new user structure. - * - * @param session The MSN session. - * @param passport The initial passport. - * @param stored_name The initial stored name. - * - * @return A new user structure. It will have a reference count of 1. - */ -MsnUser *msn_user_new(MsnUserList *userlist, const char *passport, - const char *friendly_name); - -/** - * Increment the reference count. - * - * @param user The user. - * - * @return user. - */ -MsnUser *msn_user_ref(MsnUser *user); - -/** - * Decrement the reference count. When the count reaches 0 the object is - * automatically freed. - * - * @param user The user - */ -void msn_user_unref(MsnUser *user); - -/** - * Updates the user. - * - * Communicates with the core to update the ui, etc. - * - * @param user The user to update. - */ -void msn_user_update(MsnUser *user); - - /** - * Sets the new statusline of user. - * - * @param user The user. - * @param state The statusline string. - */ -void msn_user_set_statusline(MsnUser *user, const char *statusline); - -/** - * Sets the new state of user. - * - * @param user The user. - * @param state The state string. - */ -void msn_user_set_state(MsnUser *user, const char *state); - -/** - * Sets the passport account for a user. - * - * @param user The user. - * @param passport The passport account. - */ -void msn_user_set_passport(MsnUser *user, const char *passport); - -/** - * Sets the friendly name for a user. - * - * @param user The user. - * @param name The friendly name. - * - * @returns TRUE is name actually changed, FALSE otherwise. - */ -gboolean msn_user_set_friendly_name(MsnUser *user, const char *name); - -/** - * Sets the buddy icon for a local user. - * - * @param user The user. - * @param img The buddy icon image - */ -void msn_user_set_buddy_icon(MsnUser *user, PurpleStoredImage *img); - -/** - * Sets the group ID list for a user. - * - * @param user The user. - * @param ids The group ID list. - */ -void msn_user_set_group_ids(MsnUser *user, GList *ids); - -/** - * Adds the group ID for a user. - * - * @param user The user. - * @param id The group ID. - */ -void msn_user_add_group_id(MsnUser *user, const char * id); - -/** - * Removes the group ID from a user. - * - * @param user The user. - * @param id The group ID. - */ -void msn_user_remove_group_id(MsnUser *user, const char * id); - -/** - * Sets the pending group for a user. - * - * @param user The user. - * @param group The group name. - */ -void msn_user_set_pending_group(MsnUser *user, const char *group); - -/** - * Removes the pending group from a user. - * - * @param user The user. - * - * @return Returns the pending group name. - */ -char *msn_user_remove_pending_group(MsnUser *user); - -/** - * Sets the home phone number for a user. - * - * @param user The user. - * @param number The home phone number. - */ -void msn_user_set_home_phone(MsnUser *user, const char *number); - -/** - * Sets the work phone number for a user. - * - * @param user The user. - * @param number The work phone number. - */ -void msn_user_set_work_phone(MsnUser *user, const char *number); - -void msn_user_set_uid(MsnUser *user, const char *uid); - -/** - * Sets endpoint data for a user. - * - * @param user The user. - * @param endpoint The endpoint. - * @param data The endpoint data. - */ -void -msn_user_set_endpoint_data(MsnUser *user, const char *endpoint, MsnUserEndpoint *data); - -/** - * Clears all endpoint data for a user. - * - * @param user The user. - */ -void -msn_user_clear_endpoints(MsnUser *user); - -/** - * Sets the client id for a user. - * - * @param user The user. - * @param clientid The client id. - */ -void msn_user_set_clientid(MsnUser *user, guint clientid); - -/** - * Sets the client id for a user. - * - * @param user The user. - * @param extcaps The client's extended capabilities. - */ -void msn_user_set_extcaps(MsnUser *user, guint extcaps); - -/** - * Sets the network id for a user. - * - * @param user The user. - * @param network The network id. - */ -void msn_user_set_network(MsnUser *user, MsnNetwork network); - -/** - * Sets the mobile phone number for a user. - * - * @param user The user. - * @param number The mobile phone number. - */ -void msn_user_set_mobile_phone(MsnUser *user, const char *number); - -/** - * Sets the MSNObject for a user. - * - * @param user The user. - * @param obj The MSNObject. - */ -void msn_user_set_object(MsnUser *user, MsnObject *obj); - -/** - * Sets the client information for a user. - * - * @param user The user. - * @param info The client information. - */ -void msn_user_set_client_caps(MsnUser *user, GHashTable *info); - -/** - * Sets the invite message for a user. - * - * @param user The user. - * @param message The invite message for a user. - */ -void msn_user_set_invite_message(MsnUser *user, const char *message); - - -/** - * Returns the passport account for a user. - * - * @param user The user. - * - * @return The passport account. - */ -const char *msn_user_get_passport(const MsnUser *user); - -/** - * Returns the friendly name for a user. - * - * @param user The user. - * - * @return The friendly name. - */ -const char *msn_user_get_friendly_name(const MsnUser *user); - -/** - * Returns the home phone number for a user. - * - * @param user The user. - * - * @return The user's home phone number. - */ -const char *msn_user_get_home_phone(const MsnUser *user); - -/** - * Returns the work phone number for a user. - * - * @param user The user. - * - * @return The user's work phone number. - */ -const char *msn_user_get_work_phone(const MsnUser *user); - -/** - * Returns the mobile phone number for a user. - * - * @param user The user. - * - * @return The user's mobile phone number. - */ -const char *msn_user_get_mobile_phone(const MsnUser *user); - -/** - * Gets endpoint data for a user. - * - * @param user The user. - * @param endpoint The endpoint. - * - * @return The user's endpoint data. - */ -MsnUserEndpoint * -msn_user_get_endpoint_data(MsnUser *user, const char *endpoint); - -/** - * Returns the client id for a user. - * - * @param user The user. - * - * @return The user's client id. - */ -guint msn_user_get_clientid(const MsnUser *user); - -/** - * Returns the extended capabilities for a user. - * - * @param user The user. - * - * @return The user's extended capabilities. - */ -guint msn_user_get_extcaps(const MsnUser *user); - -/************************************************************************** - * Utility functions - **************************************************************************/ - - -/** - * Check if the user is part of the group. - * - * @param user The user we are asking group membership. - * @param group_id The group where the user may be in. - * - * @return TRUE if user is part of the group. Otherwise, FALSE. - */ -gboolean msn_user_is_in_group(MsnUser *user, const char * group_id); - -/** - * Check if user is on list. - * - * @param user The user we are asking list membership. - * @param list_id The list where the user may be in. - * - * @return TRUE if the user is on the list, else FALSE. - */ -gboolean msn_user_is_in_list(MsnUser *user, MsnListId list_id); -/** - * Returns the network id for a user. - * - * @param user The user. - * - * @return The user's network id. - */ -MsnNetwork msn_user_get_network(const MsnUser *user); - -/** - * Returns the MSNObject for a user. - * - * @param user The user. - * - * @return The MSNObject. - */ -MsnObject *msn_user_get_object(const MsnUser *user); - -/** - * Returns the client information for a user. - * - * @param user The user. - * - * @return The client information. - */ -GHashTable *msn_user_get_client_caps(const MsnUser *user); - -/** - * Returns the invite message for a user. - * - * @param user The user. - * - * @return The user's invite message. - */ -const char *msn_user_get_invite_message(const MsnUser *user); - -/** - * check to see if user is online - */ -gboolean msn_user_is_online(PurpleAccount *account, const char *name); - -/** - * check to see if user is Yahoo User - */ -gboolean msn_user_is_yahoo(PurpleAccount *account, const char *name); - -void msn_user_set_op(MsnUser *user, MsnListOp list_op); -void msn_user_unset_op(MsnUser *user, MsnListOp list_op); - -/** - * Compare the given passport with the one of the user - * - * @param user User to compare. - * @oaran passport Passport to compare. - * - * @return Zero if the passport match with the one of the user, otherwise - * a positive integer if the user passport is greather than the one given - * and a negative integer if it is less. - */ -int msn_user_passport_cmp(MsnUser *user, const char *passport); - -/** - * Checks whether a user is capable of some task. - * - * @param user The user. - * @param endpoint The endpoint. Can be @NULL to check overall capabilities. - * @param capability The capability (including client version). - * @param extcap The extended capability. - * - * @return Whether the user supports the capability. - */ -gboolean -msn_user_is_capable(MsnUser *user, char *endpoint, guint capability, guint extcap); - -/*@}*/ - -#endif /* MSN_USER_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/userlist.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/userlist.h deleted file mode 100644 index 4e9582a..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/userlist.h +++ /dev/null @@ -1,112 +0,0 @@ -/** - * @file userlist.h MSN user list support - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef MSN_USERLIST_H -#define MSN_USERLIST_H - -typedef struct _MsnUserList MsnUserList; - -typedef enum -{ - MSN_LIST_FL, /**< Forward list */ - MSN_LIST_AL, /**< Allow list */ - MSN_LIST_BL, /**< Block list */ - MSN_LIST_RL, /**< Reverse list */ - MSN_LIST_PL /**< Pending list */ -} MsnListId; - -typedef enum -{ - MSN_LIST_FL_OP = 0x01, - MSN_LIST_AL_OP = 0x02, - MSN_LIST_BL_OP = 0x04, - MSN_LIST_RL_OP = 0x08, - MSN_LIST_PL_OP = 0x10 -} MsnListOp; -#define MSN_LIST_OP_MASK 0x07 - -#include "group.h" -#include "msn.h" -#include "user.h" - -struct _MsnUserList -{ - MsnSession *session; - - GList *users; /* Contains MsnUsers */ - GList *groups; /* Contains MsnGroups */ - - GQueue *buddy_icon_requests; - int buddy_icon_window; - guint buddy_icon_request_timer; - -}; - -void msn_got_lst_user(MsnSession *session, MsnUser *user, - MsnListOp list_op, GSList *group_ids); - -MsnUserList *msn_userlist_new(MsnSession *session); -void msn_userlist_destroy(MsnUserList *userlist); - -void msn_userlist_add_user(MsnUserList *userlist, MsnUser *user); -void msn_userlist_remove_user(MsnUserList *userlist, MsnUser *user); - -MsnUser * msn_userlist_find_user(MsnUserList *userlist, const char *passport); -MsnUser * msn_userlist_find_add_user(MsnUserList *userlist, - const char *passport, const char *friendly_name); -MsnUser * msn_userlist_find_user_with_id(MsnUserList *userlist, const char *uid); -MsnUser * msn_userlist_find_user_with_mobile_phone(MsnUserList *userlist, const char *number); - -void msn_userlist_add_group(MsnUserList *userlist, MsnGroup *group); -void msn_userlist_remove_group(MsnUserList *userlist, MsnGroup *group); -MsnGroup *msn_userlist_find_group_with_id(MsnUserList *userlist, const char *id); -MsnGroup *msn_userlist_find_group_with_name(MsnUserList *userlist, const char *name); -const char * msn_userlist_find_group_id(MsnUserList *userlist, - const char *group_name); -const char *msn_userlist_find_group_name(MsnUserList *userlist, const char *group_id); -void msn_userlist_rename_group_id(MsnUserList *userlist, const char *group_id, - const char *new_name); -void msn_userlist_remove_group_id(MsnUserList *userlist, const char *group_id); - -void msn_userlist_rem_buddy(MsnUserList *userlist, const char *who); -void msn_userlist_add_buddy(MsnUserList *userlist, - const char *who, const char *group_name); -void msn_userlist_move_buddy(MsnUserList *userlist, const char *who, - const char *old_group_name, - const char *new_group_name); - -gboolean msn_userlist_add_buddy_to_group(MsnUserList *userlist, const char *who, - const char *group_name); -gboolean msn_userlist_rem_buddy_from_group(MsnUserList *userlist, - const char *who, - const char *group_name); - -void msn_userlist_add_buddy_to_list(MsnUserList *userlist, const char *who, - MsnListId list_id); -void msn_userlist_rem_buddy_from_list(MsnUserList *userlist, const char *who, - MsnListId list_id); -void msn_release_buddy_icon_request(MsnUserList *userlist); - -void msn_userlist_load(MsnSession *session); - -#endif /* MSN_USERLIST_H */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/util.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/util.h deleted file mode 100644 index 282c4bb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/util.h +++ /dev/null @@ -1,1489 +0,0 @@ -/** - * @file util.h Utility Functions - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - * @todo Rename the functions so that they live somewhere in the purple - * namespace. - */ -#ifndef _PURPLE_UTIL_H_ -#define _PURPLE_UTIL_H_ - -#include - -/** - * An opaque structure representing a URL request. Can be used to cancel - * the request. - */ -typedef struct _PurpleUtilFetchUrlData PurpleUtilFetchUrlData; -/** @copydoc _PurpleMenuAction */ -typedef struct _PurpleMenuAction PurpleMenuAction; -/** @copydoc _PurpleKeyValuePair */ -typedef struct _PurpleKeyValuePair PurpleKeyValuePair; - -#include "account.h" -#include "signals.h" -#include "xmlnode.h" -#include "notify.h" - - -#ifdef __cplusplus -extern "C" { -#endif - -struct _PurpleMenuAction -{ - char *label; - PurpleCallback callback; - gpointer data; - GList *children; -}; - -typedef char *(*PurpleInfoFieldFormatCallback)(const char *field, size_t len); - -/** - * A key-value pair. - * - * This is used by, among other things, purple_gtk_combo* functions to pass in a - * list of key-value pairs so it can display a user-friendly value. - */ -struct _PurpleKeyValuePair -{ - gchar *key; - void *value; - -}; - -/** - * Creates a new PurpleMenuAction. - * - * @param label The text label to display for this action. - * @param callback The function to be called when the action is used on - * the selected item. - * @param data Additional data to be passed to the callback. - * @param children A GList of PurpleMenuActions to be added as a submenu - * of the action. - * @return The PurpleMenuAction. - */ -PurpleMenuAction *purple_menu_action_new(const char *label, PurpleCallback callback, - gpointer data, GList *children); - -/** - * Frees a PurpleMenuAction - * - * @param act The PurpleMenuAction to free. - */ -void purple_menu_action_free(PurpleMenuAction *act); - -/** - * Set the appropriate presence values for the currently playing song. - * - * @param title The title of the song, @c NULL to unset the value. - * @param artist The artist of the song, can be @c NULL. - * @param album The album of the song, can be @c NULL. - * @since 2.4.0 - */ -void purple_util_set_current_song(const char *title, const char *artist, - const char *album); - -/** - * Format song information. - * - * @param title The title of the song, @c NULL to unset the value. - * @param artist The artist of the song, can be @c NULL. - * @param album The album of the song, can be @c NULL. - * @param unused Currently unused, must be @c NULL. - * - * @return The formatted string. The caller must g_free the returned string. - * @since 2.4.0 - */ -char * purple_util_format_song_info(const char *title, const char *artist, - const char *album, gpointer unused); - -/**************************************************************************/ -/** @name Utility Subsystem */ -/**************************************************************************/ -/*@{*/ - -/** - * Initializes the utility subsystem. - * - * @since 2.3.0 - */ -void purple_util_init(void); - -/** - * Uninitializes the util subsystem. - * - * @since 2.3.0 - */ -void purple_util_uninit(void); - -/*@}*/ - -/**************************************************************************/ -/** @name Base16 Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Converts a chunk of binary data to its base-16 equivalent. - * - * @param data The data to convert. - * @param len The length of the data. - * - * @return The base-16 string in the ASCII encoding. Must be - * g_free'd when no longer needed. - * - * @see purple_base16_decode() - */ -gchar *purple_base16_encode(const guchar *data, gsize len); - -/** - * Converts an ASCII string of base-16 encoded data to - * the binary equivalent. - * - * @param str The base-16 string to convert to raw data. - * @param ret_len The length of the returned data. You can - * pass in NULL if you're sure that you know - * the length of the decoded data, or if you - * know you'll be able to use strlen to - * determine the length, etc. - * - * @return The raw data. Must be g_free'd when no longer needed. - * - * @see purple_base16_encode() - */ -guchar *purple_base16_decode(const char *str, gsize *ret_len); - -/** - * Converts a chunk of binary data to a chunked base-16 representation - * (handy for key fingerprints) - * - * Example output: 01:23:45:67:89:AB:CD:EF - * - * @param data The data to convert. - * @param len The length of the data. - * - * @return The base-16 string in the ASCII chunked encoding. Must be - * g_free'd when no longer needed. - */ -gchar *purple_base16_encode_chunked(const guchar *data, gsize len); - - -/*@}*/ - -/**************************************************************************/ -/** @name Base64 Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Converts a chunk of binary data to its base-64 equivalent. - * - * @param data The data to convert. - * @param len The length of the data. - * - * @return The base-64 string in the ASCII encoding. Must be - * g_free'd when no longer needed. - * - * @see purple_base64_decode() - */ -gchar *purple_base64_encode(const guchar *data, gsize len); - -/** - * Converts an ASCII string of base-64 encoded data to - * the binary equivalent. - * - * @param str The base-64 string to convert to raw data. - * @param ret_len The length of the returned data. You can - * pass in NULL if you're sure that you know - * the length of the decoded data, or if you - * know you'll be able to use strlen to - * determine the length, etc. - * - * @return The raw data. Must be g_free'd when no longer needed. - * - * @see purple_base64_encode() - */ -guchar *purple_base64_decode(const char *str, gsize *ret_len); - -/*@}*/ - -/**************************************************************************/ -/** @name Quoted Printable Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Converts a quoted printable string back to its readable equivalent. - * What is a quoted printable string, you ask? It's an encoding used - * to transmit binary data as ASCII. It's intended purpose is to send - * emails containing non-ASCII characters. Wikipedia has a pretty good - * explanation. Also see RFC 2045. - * - * @param str The quoted printable ASCII string to convert to raw data. - * @param ret_len The length of the returned data. - * - * @return The readable string. Must be g_free'd when no longer needed. - */ -guchar *purple_quotedp_decode(const char *str, gsize *ret_len); - -/*@}*/ - -/**************************************************************************/ -/** @name MIME Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Converts a MIME header field string back to its readable equivalent - * according to RFC 2047. Basically, a header is plain ASCII and can - * contain any number of sections called "encoded-words." The format - * of an encoded word is =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?= - * =? designates the beginning of the encoded-word - * ?= designates the end of the encoded-word - * - * An encoded word is segmented into three pieces by the use of a - * question mark. The first piece is the character set, the second - * piece is the encoding, and the third piece is the encoded text. - * - * @param str The ASCII string, possibly containing any number of - * encoded-word sections. - * - * @return The string, with any encoded-word sections decoded and - * converted to UTF-8. Must be g_free'd when no longer - * needed. - */ -char *purple_mime_decode_field(const char *str); - -/*@}*/ - - -/**************************************************************************/ -/** @name Date/Time Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Formats a time into the specified format. - * - * This is essentially strftime(), but it has a static buffer - * and handles the UTF-8 conversion for the caller. - * - * This function also provides the GNU %z formatter if the underlying C - * library doesn't. However, the format string parser is very naive, which - * means that conversions specifiers to %z cannot be guaranteed. The GNU - * strftime(3) man page describes %z as: 'The time-zone as hour offset from - * GMT. Required to emit RFC822-conformant dates - * (using "%a, %d %b %Y %H:%M:%S %z"). (GNU)' - * - * On Windows, this function also converts the results for %Z from a timezone - * name (as returned by the system strftime() %Z format string) to a timezone - * abbreviation (as is the case on Unix). As with %z, conversion specifiers - * should not be used. - * - * @param format The format string, in UTF-8 - * @param tm The time to format, or @c NULL to use the current local time - * - * @return The formatted time, in UTF-8. - * - * @note @a format is required to be in UTF-8. This differs from strftime(), - * where the format is provided in the locale charset. - */ -const char *purple_utf8_strftime(const char *format, const struct tm *tm); - -/** - * Gets a string representation of the local timezone offset - * - * @param tm The time to get the timezone for - * @param iso TRUE to format the offset according to ISO-8601, FALSE to - * not substitute 'Z' for 0 offset, and to not separate - * hours and minutes with a colon. - */ -const char *purple_get_tzoff_str(const struct tm *tm, gboolean iso); - -/** - * Formats a time into the user's preferred short date format. - * - * The returned string is stored in a static buffer, so the result - * should be g_strdup()'d if it's going to be kept. - * - * @param tm The time to format, or @c NULL to use the current local time - * - * @return The date, formatted as per the user's settings. - */ -const char *purple_date_format_short(const struct tm *tm); - -/** - * Formats a time into the user's preferred short date plus time format. - * - * The returned string is stored in a static buffer, so the result - * should be g_strdup()'d if it's going to be kept. - * - * @param tm The time to format, or @c NULL to use the current local time - * - * @return The timestamp, formatted as per the user's settings. - */ -const char *purple_date_format_long(const struct tm *tm); - -/** - * Formats a time into the user's preferred full date and time format. - * - * The returned string is stored in a static buffer, so the result - * should be g_strdup()'d if it's going to be kept. - * - * @param tm The time to format, or @c NULL to use the current local time - * - * @return The date and time, formatted as per the user's settings. - */ -const char *purple_date_format_full(const struct tm *tm); - -/** - * Formats a time into the user's preferred time format. - * - * The returned string is stored in a static buffer, so the result - * should be g_strdup()'d if it's going to be kept. - * - * @param tm The time to format, or @c NULL to use the current local time - * - * @return The time, formatted as per the user's settings. - */ -const char *purple_time_format(const struct tm *tm); - -/** - * Builds a time_t from the supplied information. - * - * @param year The year. - * @param month The month. - * @param day The day. - * @param hour The hour. - * @param min The minute. - * @param sec The second. - * - * @return A time_t. - */ -time_t purple_time_build(int year, int month, int day, int hour, - int min, int sec); - -/** Used by purple_str_to_time to indicate no timezone offset was - * specified in the timestamp string. */ -#define PURPLE_NO_TZ_OFF -500000 - -/** - * Parses a timestamp in jabber, ISO8601, or MM/DD/YYYY format and returns - * a time_t. - * - * @param timestamp The timestamp - * @param utc Assume UTC if no timezone specified - * @param tm If not @c NULL, the caller can get a copy of the - * struct tm used to calculate the time_t return value. - * @param tz_off If not @c NULL, the caller can get a copy of the - * timezone offset (from UTC) used to calculate the time_t - * return value. Note: Zero is a valid offset. As such, - * the value of the macro @c PURPLE_NO_TZ_OFF indicates no - * offset was specified (which means that the local - * timezone was used in the calculation). - * @param rest If not @c NULL, the caller can get a pointer to the - * part of @a timestamp left over after parsing is - * completed, if it's not the end of @a timestamp. - * - * @return A time_t. - */ -time_t purple_str_to_time(const char *timestamp, gboolean utc, - struct tm *tm, long *tz_off, const char **rest); - -/*@}*/ - - -/**************************************************************************/ -/** @name Markup Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Escapes special characters in a plain-text string so they display - * correctly as HTML. For example, & is replaced with & and < is - * replaced with < - * - * This is exactly the same as g_markup_escape_text(), except that it - * does not change ' to ' because ' is not a valid HTML 4 entity, - * and is displayed literally in IE7. - * - * @since 2.6.0 - */ -gchar *purple_markup_escape_text(const gchar *text, gssize length); - -/** - * Finds an HTML tag matching the given name. - * - * This locates an HTML tag's start and end, and stores its attributes - * in a GData hash table. The names of the attributes are lower-cased - * in the hash table, and the name of the tag is case insensitive. - * - * @param needle The name of the tag - * @param haystack The null-delimited string to search in - * @param start A pointer to the start of the tag if found - * @param end A pointer to the end of the tag if found - * @param attributes The attributes, if the tag was found. This should - * be freed with g_datalist_clear(). - * @return TRUE if the tag was found - */ -gboolean purple_markup_find_tag(const char *needle, const char *haystack, - const char **start, const char **end, - GData **attributes); - -/** - * Extracts a field of data from HTML. - * - * This is a scary function. See protocols/msn/msn.c and - * protocols/yahoo/yahoo_profile.c for example usage. - * - * @param str The string to parse. - * @param len The size of str. - * @param user_info The destination PurpleNotifyUserInfo to which the new - * field info should be added. - * @param start_token The beginning token. - * @param skip The number of characters to skip after the - * start token. - * @param end_token The ending token. - * @param check_value The value that the last character must meet. - * @param no_value_token The token indicating no value is given. - * @param display_name The short descriptive name to display for this token. - * @param is_link TRUE if this should be a link, or FALSE otherwise. - * @param link_prefix The prefix for the link. - * @param format_cb A callback to format the value before adding it. - * - * @return TRUE if successful, or FALSE otherwise. - */ -gboolean purple_markup_extract_info_field(const char *str, int len, PurpleNotifyUserInfo *user_info, - const char *start_token, int skip, - const char *end_token, char check_value, - const char *no_value_token, - const char *display_name, gboolean is_link, - const char *link_prefix, - PurpleInfoFieldFormatCallback format_cb); - -/** - * Converts HTML markup to XHTML. - * - * @param html The HTML markup. - * @param dest_xhtml The destination XHTML output. - * @param dest_plain The destination plain-text output. - */ -void purple_markup_html_to_xhtml(const char *html, char **dest_xhtml, - char **dest_plain); - -/** - * Strips HTML tags from a string. - * - * @param str The string to strip HTML from. - * - * @return The new string without HTML. You must g_free this string - * when finished with it. - */ -char *purple_markup_strip_html(const char *str); - -/** - * Adds the necessary HTML code to turn URIs into HTML links in a string. - * - * @param str The string to linkify. - * - * @return The new string with all URIs surrounded in standard - * HTML tags. You must g_free this - * string when finished with it. - */ -char *purple_markup_linkify(const char *str); - -/** - * Unescapes HTML entities to their literal characters in the text. - * For example "&" is replaced by '&' and so on. Also converts - * numerical entities (e.g. "&" is also '&'). - * - * This function currently supports the following named entities: - * "&", "<", ">", "©", """, "®", "'" - * - * purple_unescape_html() is similar, but also converts "
" into "\n". - * - * @param text The string in which to unescape any HTML entities - * - * @return The text with HTML entities literalized. You must g_free - * this string when finished with it. - * - * @see purple_unescape_html() - * @since 2.7.0 - */ -char *purple_unescape_text(const char *text); - -/** - * Unescapes HTML entities to their literal characters and converts - * "
" to "\n". See purple_unescape_text() for more details. - * - * @param html The string in which to unescape any HTML entities - * - * @return The text with HTML entities literalized. You must g_free - * this string when finished with it. - * - * @see purple_unescape_text() - */ -char *purple_unescape_html(const char *html); - -/** - * Returns a newly allocated substring of the HTML UTF-8 string "str". - * The markup is preserved such that the substring will have the same - * formatting as original string, even though some tags may have been - * opened before "x", or may close after "y". All open tags are closed - * at the end of the returned string, in the proper order. - * - * Note that x and y are in character offsets, not byte offsets, and - * are offsets into an unformatted version of str. Because of this, - * this function may be sensitive to changes in GtkIMHtml and may break - * when used with other UI's. libpurple users are encouraged to report and - * work out any problems encountered. - * - * @param str The input NUL terminated, HTML, UTF-8 (or ASCII) string. - * @param x The character offset into an unformatted version of str to - * begin at. - * @param y The character offset (into an unformatted vesion of str) of - * one past the last character to include in the slice. - * - * @return The HTML slice of string, with all formatting retained. - */ -char *purple_markup_slice(const char *str, guint x, guint y); - -/** - * Returns a newly allocated string containing the name of the tag - * located at "tag". Tag is expected to point to a '<', and contain - * a '>' sometime after that. If there is no '>' and the string is - * not NUL terminated, this function can be expected to segfault. - * - * @param tag The string starting a HTML tag. - * @return A string containing the name of the tag. - */ -char *purple_markup_get_tag_name(const char *tag); - -/** - * Returns a constant string of the character representation of the HTML - * entity pointed to by @a text. For example, purple_markup_unescape_entity("&") - * will return "&". The @a text variable is expected to point to an '&', - * the first character of the entity. If given an unrecognized entity, the function - * returns @c NULL. - * - * Note that this function, unlike purple_unescape_html(), does not search - * the string for the entity, does not replace the entity, and does not - * return a newly allocated string. - * - * @param text A string containing an HTML entity. - * @param length If not @c NULL, the string length of the entity is stored in this location. - * - * @return A constant string containing the character representation of the given entity. - */ -const char * purple_markup_unescape_entity(const char *text, int *length); - -/** - * Returns a newly allocated string containing the value of the CSS property specified - * in opt. The @a style argument is expected to point to a HTML inline CSS. - * The function will seek for the CSS property and return its value. - * - * For example, purple_markup_get_css_property("direction:rtl;color:#dc4d1b;", - * "color") would return "#dc4d1b". - * - * On error or if the requested property was not found, the function returns - * @c NULL. - * - * @param style A string containing the inline CSS text. - * @param opt The requested CSS property. - * - * @return The value of the requested CSS property. - */ -char * purple_markup_get_css_property(const gchar *style, const gchar *opt); - -/** - * Check if the given HTML contains RTL text. - * - * @param html The HTML text. - * - * @return TRUE if the text contains RTL text, FALSE otherwise. - * - * @since 2.6.0 - */ -gboolean purple_markup_is_rtl(const char *html); - -/*@}*/ - - -/**************************************************************************/ -/** @name Path/Filename Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Returns the user's home directory. - * - * @return The user's home directory. - * - * @see purple_user_dir() - */ -const gchar *purple_home_dir(void); - -/** - * Returns the purple settings directory in the user's home directory. - * This is usually ~/.purple - * - * @return The purple settings directory. - * - * @see purple_home_dir() - */ -const char *purple_user_dir(void); - -/** - * Define a custom purple settings directory, overriding the default (user's home directory/.purple) - * @param dir The custom settings directory - */ -void purple_util_set_user_dir(const char *dir); - -/** - * Builds a complete path from the root, making any directories along - * the path which do not already exist. - * - * @param path The path you wish to create. Note that it must start - * from the root or this function will fail. - * @param mode Unix-style permissions for this directory. - * - * @return 0 for success, nonzero on any error. - */ -int purple_build_dir(const char *path, int mode); - -/** - * Write a string of data to a file of the given name in the Purple - * user directory ($HOME/.purple by default). The data is typically - * a serialized version of one of Purple's config files, such as - * prefs.xml, accounts.xml, etc. And the string is typically - * obtained using xmlnode_to_formatted_str. However, this function - * should work fine for saving binary files as well. - * - * @param filename The basename of the file to write in the purple_user_dir. - * @param data A null-terminated string of data to write. - * @param size The size of the data to save. If data is - * null-terminated you can pass in -1. - * - * @return TRUE if the file was written successfully. FALSE otherwise. - */ -gboolean purple_util_write_data_to_file(const char *filename, const char *data, - gssize size); - -/** - * Write data to a file using the absolute path. - * - * This exists for Glib backwards compatibility reasons. - * - * @param filename_full Filename to write to - * @param data A null-terminated string of data to write. - * @param size The size of the data to save. If data is - * null-terminated you can pass in -1. - * - * @return TRUE if the file was written successfully. FALSE otherwise. - * - * @todo Remove this function (use g_file_set_contents instead) when 3.0.0 - * rolls around. - * @see purple_util_write_data_to_file() - * - */ -gboolean -purple_util_write_data_to_file_absolute(const char *filename_full, const char *data, gssize size); - -/** - * Read the contents of a given file and parse the results into an - * xmlnode tree structure. This is intended to be used to read - * Purple's configuration xml files (prefs.xml, pounces.xml, etc.) - * - * @param filename The basename of the file to open in the purple_user_dir. - * @param description A very short description of the contents of this - * file. This is used in error messages shown to the - * user when the file can not be opened. For example, - * "preferences," or "buddy pounces." - * - * @return An xmlnode tree of the contents of the given file. Or NULL, if - * the file does not exist or there was an error reading the file. - */ -xmlnode *purple_util_read_xml_from_file(const char *filename, - const char *description); - -/** - * Creates a temporary file and returns a file pointer to it. - * - * This is like mkstemp(), but returns a file pointer and uses a - * pre-set template. It uses the semantics of tempnam() for the - * directory to use and allocates the space for the file path. - * - * The caller is responsible for closing the file and removing it when - * done, as well as freeing the space pointed to by @a path with - * g_free(). - * - * @param path The returned path to the temp file. - * @param binary Text or binary, for platforms where it matters. - * - * @return A file pointer to the temporary file, or @c NULL on failure. - */ -FILE *purple_mkstemp(char **path, gboolean binary); - -/** - * Returns an extension corresponding to the image data's file type. - * - * @param data A pointer to the image data - * @param len The length of the image data - * - * @return The appropriate extension, or "icon" if unknown. - */ -const char * -purple_util_get_image_extension(gconstpointer data, size_t len); - -/** - * Returns a SHA-1 hash string of the data passed in. - */ -char *purple_util_get_image_checksum(gconstpointer image_data, size_t image_len); - -/** - * @return A hex encoded version of the SHA-1 hash of the data passed - * in with the correct file extention appended. The file - * extension is determined by calling - * purple_util_get_image_extension(). This return value must - * be g_freed by the caller. - */ -char *purple_util_get_image_filename(gconstpointer image_data, size_t image_len); - -/*@}*/ - - -/**************************************************************************/ -/** @name Environment Detection Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Checks if the given program name is valid and executable. - * - * @param program The file name of the application. - * - * @return TRUE if the program is runable. - */ -gboolean purple_program_is_valid(const char *program); - -/** - * Check if running GNOME. - * - * @return TRUE if running GNOME, FALSE otherwise. - */ -gboolean purple_running_gnome(void); - -/** - * Check if running KDE. - * - * @return TRUE if running KDE, FALSE otherwise. - */ -gboolean purple_running_kde(void); - -/** - * Check if running OS X. - * - * @return TRUE if running OS X, FALSE otherwise. - */ -gboolean purple_running_osx(void); - -/** - * Returns the IP address from a socket file descriptor. - * - * @param fd The socket file descriptor. - * - * @return The IP address, or @c NULL on error. - */ -char *purple_fd_get_ip(int fd); - -/** - * Returns the address family of a socket. - * - * @param fd The socket file descriptor. - * - * @return The address family of the socket (AF_INET, AF_INET6, etc) or -1 - * on error. - * @since 2.7.0 - */ -int purple_socket_get_family(int fd); - -/** - * Returns TRUE if a socket is capable of speaking IPv4. - * - * This is the case for IPv4 sockets and, on some systems, IPv6 sockets - * (due to the IPv4-mapped address functionality). - * - * @param fd The socket file descriptor - * @return TRUE if a socket can speak IPv4. - * @since 2.7.0 - */ -gboolean purple_socket_speaks_ipv4(int fd); - -/*@}*/ - - -/**************************************************************************/ -/** @name String Functions */ -/**************************************************************************/ -/*@{*/ - -/** - * Tests two strings for equality. - * - * Unlike strcmp(), this function will not crash if one or both of the - * strings are @c NULL. - * - * @param left A string - * @param right A string to compare with left - * - * @return @c TRUE if the strings are the same, else @c FALSE. - * - * @since 2.6.0 - */ -gboolean purple_strequal(const gchar *left, const gchar *right); - -/** - * Normalizes a string, so that it is suitable for comparison. - * - * The returned string will point to a static buffer, so if the - * string is intended to be kept long-term, you must - * g_strdup() it. Also, calling normalize() twice in the same line - * will lead to problems. - * - * @param account The account the string belongs to, or NULL if you do - * not know the account. If you use NULL, the string - * will still be normalized, but if the PRPL uses a - * custom normalization function then the string may - * not be normalized correctly. - * @param str The string to normalize. - * - * @return A pointer to the normalized version stored in a static buffer. - */ -const char *purple_normalize(const PurpleAccount *account, const char *str); - -/** - * Normalizes a string, so that it is suitable for comparison. - * - * This is one possible implementation for the PRPL callback - * function "normalize." It returns a lowercase and UTF-8 - * normalized version of the string. - * - * @param account The account the string belongs to. - * @param str The string to normalize. - * - * @return A pointer to the normalized version stored in a static buffer. - */ -const char *purple_normalize_nocase(const PurpleAccount *account, const char *str); - -/** - * Compares two strings to see if the first contains the second as - * a proper prefix. - * - * @param s The string to check. - * @param p The prefix in question. - * - * @return TRUE if p is a prefix of s, otherwise FALSE. - */ -gboolean purple_str_has_prefix(const char *s, const char *p); - -/** - * Compares two strings to see if the second is a proper suffix - * of the first. - * - * @param s The string to check. - * @param x The suffix in question. - * - * @return TRUE if x is a a suffix of s, otherwise FALSE. - */ -gboolean purple_str_has_suffix(const char *s, const char *x); - -/** - * Duplicates a string and replaces all newline characters from the - * source string with HTML linebreaks. - * - * @param src The source string. - * - * @return The new string. Must be g_free'd by the caller. - */ -gchar *purple_strdup_withhtml(const gchar *src); - -/** - * Ensures that all linefeeds have a matching carriage return. - * - * @param str The source string. - * - * @return The string with carriage returns. - */ -char *purple_str_add_cr(const char *str); - -/** - * Strips all instances of the given character from the - * given string. The string is modified in place. This - * is useful for stripping new line characters, for example. - * - * Example usage: - * purple_str_strip_char(my_dumb_string, '\n'); - * - * @param str The string to strip characters from. - * @param thechar The character to strip from the given string. - */ -void purple_str_strip_char(char *str, char thechar); - -/** - * Given a string, this replaces all instances of one character - * with another. This happens inline (the original string IS - * modified). - * - * @param string The string from which to replace stuff. - * @param delimiter The character you want replaced. - * @param replacement The character you want inserted in place - * of the delimiting character. - */ -void purple_util_chrreplace(char *string, char delimiter, - char replacement); - -/** - * Given a string, this replaces one substring with another - * and returns a newly allocated string. - * - * @param string The string from which to replace stuff. - * @param delimiter The substring you want replaced. - * @param replacement The substring you want inserted in place - * of the delimiting substring. - * - * @return A new string, after performing the substitution. - * free this with g_free(). - */ -gchar *purple_strreplace(const char *string, const char *delimiter, - const char *replacement); - - -/** - * Given a string, this replaces any utf-8 substrings in that string with - * the corresponding numerical character reference, and returns a newly - * allocated string. - * - * @param in The string which might contain utf-8 substrings - * - * @return A new string, with utf-8 replaced with numerical character - * references, free this with g_free() -*/ -char *purple_utf8_ncr_encode(const char *in); - - -/** - * Given a string, this replaces any numerical character references - * in that string with the corresponding actual utf-8 substrings, - * and returns a newly allocated string. - * - * @param in The string which might contain numerical character references. - * - * @return A new string, with numerical character references - * replaced with actual utf-8, free this with g_free(). - */ -char *purple_utf8_ncr_decode(const char *in); - - -/** - * Given a string, this replaces one substring with another - * ignoring case and returns a newly allocated string. - * - * @param string The string from which to replace stuff. - * @param delimiter The substring you want replaced. - * @param replacement The substring you want inserted in place - * of the delimiting substring. - * - * @return A new string, after performing the substitution. - * free this with g_free(). - */ -gchar *purple_strcasereplace(const char *string, const char *delimiter, - const char *replacement); - -/** - * This is like strstr, except that it ignores ASCII case in - * searching for the substring. - * - * @param haystack The string to search in. - * @param needle The substring to find. - * - * @return the location of the substring if found, or NULL if not - */ -const char *purple_strcasestr(const char *haystack, const char *needle); - -/** - * Returns a string representing a filesize in the appropriate - * units (MB, KB, GB, etc.) - * - * @param size The size - * - * @return The string in units form. This must be freed. - */ -char *purple_str_size_to_units(size_t size); - -/** - * Converts seconds into a human-readable form. - * - * @param sec The seconds. - * - * @return A human-readable form, containing days, hours, minutes, and - * seconds. - */ -char *purple_str_seconds_to_string(guint sec); - -/** - * Converts a binary string into a NUL terminated ascii string, - * replacing nonascii characters and characters below SPACE (including - * NUL) into \\xyy, where yy are two hex digits. Also backslashes are - * changed into two backslashes (\\\\). The returned, newly allocated - * string can be outputted to the console, and must be g_free()d. - * - * @param binary A string of random data, possibly with embedded NULs - * and such. - * @param len The length in bytes of the input string. Must not be 0. - * - * @return A newly allocated ASCIIZ string. - */ -char *purple_str_binary_to_ascii(const unsigned char *binary, guint len); -/*@}*/ - - -/**************************************************************************/ -/** @name URI/URL Functions */ -/**************************************************************************/ -/*@{*/ - -void purple_got_protocol_handler_uri(const char *uri); - -/** - * Parses a URL, returning its host, port, file path, username and password. - * - * The returned data must be freed. - * - * @param url The URL to parse. - * @param ret_host The returned host. - * @param ret_port The returned port. - * @param ret_path The returned path. - * @param ret_user The returned username. - * @param ret_passwd The returned password. - */ -gboolean purple_url_parse(const char *url, char **ret_host, int *ret_port, - char **ret_path, char **ret_user, char **ret_passwd); - -/** - * This is the signature used for functions that act as the callback - * to purple_util_fetch_url() or purple_util_fetch_url_request(). - * - * @param url_data The same value that was returned when you called - * purple_fetch_url() or purple_fetch_url_request(). - * @param user_data The user data that your code passed into either - * purple_util_fetch_url() or purple_util_fetch_url_request(). - * @param url_text This will be NULL on error. Otherwise this - * will contain the contents of the URL. - * @param len 0 on error, otherwise this is the length of buf. - * @param error_message If something went wrong then this will contain - * a descriptive error message, and buf will be - * NULL and len will be 0. - */ -typedef void (*PurpleUtilFetchUrlCallback)(PurpleUtilFetchUrlData *url_data, gpointer user_data, const gchar *url_text, gsize len, const gchar *error_message); - -/** - * Fetches the data from a URL, and passes it to a callback function. - * - * @param url The URL. - * @param full TRUE if this is the full URL, or FALSE if it's a - * partial URL. - * @param user_agent The user agent field to use, or NULL. - * @param http11 TRUE if HTTP/1.1 should be used to download the file. - * @param cb The callback function. - * @param data The user data to pass to the callback function. - */ -#define purple_util_fetch_url(url, full, user_agent, http11, cb, data) \ - purple_util_fetch_url_request(url, full, user_agent, http11, NULL, \ - FALSE, cb, data); - -/** - * Fetches the data from a URL, and passes it to a callback function. - * - * @param url The URL. - * @param full TRUE if this is the full URL, or FALSE if it's a - * partial URL. - * @param user_agent The user agent field to use, or NULL. - * @param http11 TRUE if HTTP/1.1 should be used to download the file. - * @param max_len The maximum number of bytes to retrieve (-1 for unlimited) - * @param cb The callback function. - * @param data The user data to pass to the callback function. - * @deprecated In 3.0.0, we'll rename this to "purple_util_fetch_url" and get rid of the old one - */ -#define purple_util_fetch_url_len(url, full, user_agent, http11, max_len, cb, data) \ - purple_util_fetch_url_request_len(url, full, user_agent, http11, NULL, \ - FALSE, max_len, cb, data); - -/** - * Fetches the data from a URL, and passes it to a callback function. - * - * @param url The URL. - * @param full TRUE if this is the full URL, or FALSE if it's a - * partial URL. - * @param user_agent The user agent field to use, or NULL. - * @param http11 TRUE if HTTP/1.1 should be used to download the file. - * @param request A HTTP request to send to the server instead of the - * standard GET - * @param include_headers - * If TRUE, include the HTTP headers in the response. - * @param callback The callback function. - * @param data The user data to pass to the callback function. - */ -PurpleUtilFetchUrlData *purple_util_fetch_url_request(const gchar *url, - gboolean full, const gchar *user_agent, gboolean http11, - const gchar *request, gboolean include_headers, - PurpleUtilFetchUrlCallback callback, gpointer data); - -/** - * Fetches the data from a URL, and passes it to a callback function. - * - * @param url The URL. - * @param full TRUE if this is the full URL, or FALSE if it's a - * partial URL. - * @param user_agent The user agent field to use, or NULL. - * @param http11 TRUE if HTTP/1.1 should be used to download the file. - * @param request A HTTP request to send to the server instead of the - * standard GET - * @param include_headers - * If TRUE, include the HTTP headers in the response. - * @param max_len The maximum number of bytes to retrieve (-1 for unlimited) - * @param callback The callback function. - * @param data The user data to pass to the callback function. - * @deprecated In 3.0.0, this will go away. - */ -PurpleUtilFetchUrlData *purple_util_fetch_url_request_len(const gchar *url, - gboolean full, const gchar *user_agent, gboolean http11, - const gchar *request, gboolean include_headers, gssize max_len, - PurpleUtilFetchUrlCallback callback, gpointer data); - -/** - * Fetches the data from a URL, and passes it to a callback function. - * - * @param account The account for which the request is needed, or NULL. - * @param url The URL. - * @param full TRUE if this is the full URL, or FALSE if it's a - * partial URL. - * @param user_agent The user agent field to use, or NULL. - * @param http11 TRUE if HTTP/1.1 should be used to download the file. - * @param request A HTTP request to send to the server instead of the - * standard GET - * @param include_headers - * If TRUE, include the HTTP headers in the response. - * @param max_len The maximum number of bytes to retrieve (-1 for unlimited) - * @param callback The callback function. - * @param data The user data to pass to the callback function. - * @deprecated In 3.0.0, we'll rename this to "purple_util_fetch_url_request" and get rid of the old one - */ -PurpleUtilFetchUrlData *purple_util_fetch_url_request_len_with_account( - PurpleAccount *account, const gchar *url, - gboolean full, const gchar *user_agent, gboolean http11, - const gchar *request, gboolean include_headers, gssize max_len, - PurpleUtilFetchUrlCallback callback, gpointer data); - -/** - * Cancel a pending URL request started with either - * purple_util_fetch_url_request() or purple_util_fetch_url(). - * - * @param url_data The data returned when you initiated the URL fetch. - */ -void purple_util_fetch_url_cancel(PurpleUtilFetchUrlData *url_data); - -/** - * Decodes a URL into a plain string. - * - * This will change hex codes and such to their ascii equivalents. - * - * @param str The string to translate. - * - * @return The resulting string. - */ -const char *purple_url_decode(const char *str); - -/** - * Encodes a URL into an escaped string. - * - * This will change non-alphanumeric characters to hex codes. - * - * @param str The string to translate. - * - * @return The resulting string. - */ -const char *purple_url_encode(const char *str); - -/** - * Checks if the given email address is syntactically valid. - * - * @param address The email address to validate. - * - * @return True if the email address is syntactically correct. - */ -gboolean purple_email_is_valid(const char *address); - -/** - * Checks if the given IP address is a syntactically valid IPv4 address. - * - * @param ip The IP address to validate. - * - * @return True if the IP address is syntactically correct. - * @deprecated This function will be replaced with one that validates - * as either IPv4 or IPv6 in 3.0.0. If you don't want this, - * behavior, use one of the more specific functions. - */ -gboolean purple_ip_address_is_valid(const char *ip); - -/** - * Checks if the given IP address is a syntactically valid IPv4 address. - * - * @param ip The IP address to validate. - * - * @return True if the IP address is syntactically correct. - * @since 2.6.0 - */ -gboolean purple_ipv4_address_is_valid(const char *ip); - -/** - * Checks if the given IP address is a syntactically valid IPv6 address. - * - * @param ip The IP address to validate. - * - * @return True if the IP address is syntactically correct. - * @since 2.6.0 - */ -gboolean purple_ipv6_address_is_valid(const char *ip); - -/** - * This function extracts a list of URIs from the a "text/uri-list" - * string. It was "borrowed" from gnome_uri_list_extract_uris - * - * @param uri_list An uri-list in the standard format. - * - * @return A GList containing strings allocated with g_malloc - * that have been splitted from uri-list. - */ -GList *purple_uri_list_extract_uris(const gchar *uri_list); - -/** - * This function extracts a list of filenames from a - * "text/uri-list" string. It was "borrowed" from - * gnome_uri_list_extract_filenames - * - * @param uri_list A uri-list in the standard format. - * - * @return A GList containing strings allocated with g_malloc that - * contain the filenames in the uri-list. Note that unlike - * purple_uri_list_extract_uris() function, this will discard - * any non-file uri from the result value. - */ -GList *purple_uri_list_extract_filenames(const gchar *uri_list); - -/*@}*/ - -/************************************************************************** - * UTF8 String Functions - **************************************************************************/ -/*@{*/ - -/** - * Attempts to convert a string to UTF-8 from an unknown encoding. - * - * This function checks the locale and tries sane defaults. - * - * @param str The source string. - * - * @return The UTF-8 string, or @c NULL if it could not be converted. - */ -gchar *purple_utf8_try_convert(const char *str); - -/** - * Salvages the valid UTF-8 characters from a string, replacing any - * invalid characters with a filler character (currently hardcoded to - * '?'). - * - * @param str The source string. - * - * @return A valid UTF-8 string. - */ -gchar *purple_utf8_salvage(const char *str); - -/** - * Removes unprintable characters from a UTF-8 string. These characters - * (in particular low-ASCII characters) are invalid in XML 1.0 and thus - * are not allowed in XMPP and are rejected by libxml2 by default. - * - * The returned string must be freed by the caller. - * - * @param str A valid UTF-8 string. - * - * @return A newly allocated UTF-8 string without the unprintable characters. - * @since 2.6.0 - */ -gchar *purple_utf8_strip_unprintables(const gchar *str); - -/** - * Return the UTF-8 version of gai_strerror(). It calls gai_strerror() - * then converts the result to UTF-8. This function is analogous to - * g_strerror(). - * - * @param errnum The error code. - * - * @return The UTF-8 error message. - * @since 2.4.0 - */ -G_CONST_RETURN gchar *purple_gai_strerror(gint errnum); - -/** - * Compares two UTF-8 strings case-insensitively. This comparison is - * more expensive than a simple g_utf8_collate() comparison because - * it calls g_utf8_casefold() on each string, which allocates new - * strings. - * - * @param a The first string. - * @param b The second string. - * - * @return -1 if @a is less than @a b. - * 0 if @a is equal to @a b. - * 1 if @a is greater than @a b. - */ -int purple_utf8_strcasecmp(const char *a, const char *b); - -/** - * Case insensitive search for a word in a string. The needle string - * must be contained in the haystack string and not be immediately - * preceded or immediately followed by another alpha-numeric character. - * - * @param haystack The string to search in. - * @param needle The substring to find. - * - * @return TRUE if haystack has the word, otherwise FALSE - */ -gboolean purple_utf8_has_word(const char *haystack, const char *needle); - -/** - * Prints a UTF-8 message to the given file stream. The function - * tries to convert the UTF-8 message to user's locale. If this - * is not possible, the original UTF-8 text will be printed. - * - * @param filestream The file stream (e.g. STDOUT or STDERR) - * @param message The message to print. - */ -void purple_print_utf8_to_console(FILE *filestream, char *message); - -/** - * Checks for messages starting (post-HTML) with "/me ", including the space. - * - * @param message The message to check - * @param len The message length, or -1 - * - * @return TRUE if it starts with "/me ", and it has been removed, otherwise - * FALSE - */ -gboolean purple_message_meify(char *message, gssize len); - -/** - * Removes the underscore characters from a string used identify the mnemonic - * character. - * - * @param in The string to strip - * - * @return The stripped string - */ -char *purple_text_strip_mnemonic(const char *in); - -/*@}*/ - -/** - * Adds 8 to something. - * - * Blame SimGuy. - * - * @param x The number to add 8 to. - * - * @return x + 8 - */ -#define purple_add_eight(x) ((x)+8) - -/** - * Does the reverse of purple_escape_filename - * - * This will change hex codes and such to their ascii equivalents. - * - * @param str The string to translate. - * - * @return The resulting string. - */ -const char *purple_unescape_filename(const char *str); - -/** - * Escapes filesystem-unfriendly characters from a filename - * - * @param str The string to translate. - * - * @return The resulting string. - */ -const char *purple_escape_filename(const char *str); - -/** - * This is added temporarily to assist the split of oscar into aim and icq. - * This should not be used by plugins. - * - * @deprecated This function should not be used in new code and should be - * removed in 3.0.0. The aim/icq prpl split happened a long - * time ago, and we don't need to keep migrating old data. - */ -const char *_purple_oscar_convert(const char *act, const char *protocol); - -/** - * Restore default signal handlers for signals which might reasonably have - * handlers. This should be called by a fork()'d child process, since child processes - * inherit the handlers of the parent. - */ -void purple_restore_default_signal_handlers(void); - -/** - * Gets the host name of the machine. If it not possible to determine the - * host name, "localhost" is returned - * - * @constreturn The hostname - */ -const gchar *purple_get_host_name(void); - -/** - * Returns a type 4 (random) UUID - * - * @return A UUID, caller is responsible for freeing it - * @since 2.7.0 - */ -gchar *purple_uuid_random(void); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_UTIL_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/value.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/value.h deleted file mode 100644 index 155c014..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/value.h +++ /dev/null @@ -1,504 +0,0 @@ -/** - * @file value.h Value wrapper API - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_VALUE_H_ -#define _PURPLE_VALUE_H_ - -#include - -/** - * Specific value types. - */ -typedef enum -{ - PURPLE_TYPE_UNKNOWN = 0, /**< Unknown type. */ - PURPLE_TYPE_SUBTYPE, /**< Subtype. */ - PURPLE_TYPE_CHAR, /**< Character. */ - PURPLE_TYPE_UCHAR, /**< Unsigned character. */ - PURPLE_TYPE_BOOLEAN, /**< Boolean. */ - PURPLE_TYPE_SHORT, /**< Short integer. */ - PURPLE_TYPE_USHORT, /**< Unsigned short integer. */ - PURPLE_TYPE_INT, /**< Integer. */ - PURPLE_TYPE_UINT, /**< Unsigned integer. */ - PURPLE_TYPE_LONG, /**< Long integer. */ - PURPLE_TYPE_ULONG, /**< Unsigned long integer. */ - PURPLE_TYPE_INT64, /**< 64-bit integer. */ - PURPLE_TYPE_UINT64, /**< 64-bit unsigned integer. */ - PURPLE_TYPE_STRING, /**< String. */ - PURPLE_TYPE_OBJECT, /**< Object pointer. */ - PURPLE_TYPE_POINTER, /**< Generic pointer. */ - PURPLE_TYPE_ENUM, /**< Enum. */ - PURPLE_TYPE_BOXED /**< Boxed pointer with specific type. */ - -} PurpleType; - - -/** - * Purple-specific subtype values. - */ -typedef enum -{ - PURPLE_SUBTYPE_UNKNOWN = 0, - PURPLE_SUBTYPE_ACCOUNT, - PURPLE_SUBTYPE_BLIST, - PURPLE_SUBTYPE_BLIST_BUDDY, - PURPLE_SUBTYPE_BLIST_GROUP, - PURPLE_SUBTYPE_BLIST_CHAT, - PURPLE_SUBTYPE_BUDDY_ICON, - PURPLE_SUBTYPE_CONNECTION, - PURPLE_SUBTYPE_CONVERSATION, - PURPLE_SUBTYPE_PLUGIN, - PURPLE_SUBTYPE_BLIST_NODE, - PURPLE_SUBTYPE_CIPHER, - PURPLE_SUBTYPE_STATUS, - PURPLE_SUBTYPE_LOG, - PURPLE_SUBTYPE_XFER, - PURPLE_SUBTYPE_SAVEDSTATUS, - PURPLE_SUBTYPE_XMLNODE, - PURPLE_SUBTYPE_USERINFO, - PURPLE_SUBTYPE_STORED_IMAGE, - PURPLE_SUBTYPE_CERTIFICATEPOOL, - PURPLE_SUBTYPE_CHATBUDDY -} PurpleSubType; - -/** - * A wrapper for a type, subtype, and specific type of value. - */ -typedef struct -{ - PurpleType type; - unsigned short flags; - - union - { - char char_data; - unsigned char uchar_data; - gboolean boolean_data; - short short_data; - unsigned short ushort_data; - int int_data; - unsigned int uint_data; - long long_data; - unsigned long ulong_data; - gint64 int64_data; - guint64 uint64_data; - char *string_data; - void *object_data; - void *pointer_data; - int enum_data; - void *boxed_data; - - } data; - - union - { - unsigned int subtype; - char *specific_type; - - } u; - -} PurpleValue; - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Creates a new PurpleValue. - * - * This function takes a type and, depending on that type, a sub-type - * or specific type. - * - * If @a type is PURPLE_TYPE_BOXED, the next parameter must be a - * string representing the specific type. - * - * If @a type is PURPLE_TYPE_SUBTYPE, the next parameter must be a - * integer or enum representing the sub-type. - * - * If the subtype or specific type is not set when required, random - * errors may occur. You have been warned. - * - * @param type The type. - * - * @return The new value. - */ -PurpleValue *purple_value_new(PurpleType type, ...); - -/** - * Creates a new outgoing PurpleValue. If a value is an "outgoing" value - * it means the value can be modified by plugins and scripts. - * - * This function takes a type and, depending on that type, a sub-type - * or specific type. - * - * If @a type is PURPLE_TYPE_BOXED, the next parameter must be a - * string representing the specific type. - * - * If @a type is PURPLE_TYPE_SUBTYPE, the next parameter must be a - * integer or enum representing the sub-type. - * - * If the sub-type or specific type is not set when required, random - * errors may occur. You have been warned. - * - * @param type The type. - * - * @return The new value. - */ -PurpleValue *purple_value_new_outgoing(PurpleType type, ...); - -/** - * Destroys a PurpleValue. - * - * @param value The value to destroy. - */ -void purple_value_destroy(PurpleValue *value); - -/** - * Duplicated a PurpleValue. - * - * @param value The value to duplicate. - * - * @return The duplicate value. - */ -PurpleValue *purple_value_dup(const PurpleValue *value); - -/** - * Returns a value's type. - * - * @param value The value whose type you want. - * - * @return The value's type. - */ -PurpleType purple_value_get_type(const PurpleValue *value); - -/** - * Returns a value's subtype. - * - * If the value's type is not PURPLE_TYPE_SUBTYPE, this will return 0. - * Subtypes should never have a subtype of 0. - * - * @param value The value whose subtype you want. - * - * @return The value's subtype, or 0 if @a type is not PURPLE_TYPE_SUBTYPE. - */ -unsigned int purple_value_get_subtype(const PurpleValue *value); - -/** - * Returns a value's specific type. - * - * If the value's type is not PURPLE_TYPE_BOXED, this will return @c NULL. - * - * @param value The value whose specific type you want. - * - * @return The value's specific type, or @a NULL if not PURPLE_TYPE_BOXED. - */ -const char *purple_value_get_specific_type(const PurpleValue *value); - -/** - * Returns whether or not the value is an outgoing value. - * - * @param value The value. - * - * @return TRUE if the value is outgoing, or FALSE otherwise. - */ -gboolean purple_value_is_outgoing(const PurpleValue *value); - -/** - * Sets the value's character data. - * - * @param value The value. - * @param data The character data. - */ -void purple_value_set_char(PurpleValue *value, char data); - -/** - * Sets the value's unsigned character data. - * - * @param value The value. - * @param data The unsigned character data. - */ -void purple_value_set_uchar(PurpleValue *value, unsigned char data); - -/** - * Sets the value's boolean data. - * - * @param value The value. - * @param data The boolean data. - */ -void purple_value_set_boolean(PurpleValue *value, gboolean data); - -/** - * Sets the value's short integer data. - * - * @param value The value. - * @param data The short integer data. - */ -void purple_value_set_short(PurpleValue *value, short data); - -/** - * Sets the value's unsigned short integer data. - * - * @param value The value. - * @param data The unsigned short integer data. - */ -void purple_value_set_ushort(PurpleValue *value, unsigned short data); - -/** - * Sets the value's integer data. - * - * @param value The value. - * @param data The integer data. - */ -void purple_value_set_int(PurpleValue *value, int data); - -/** - * Sets the value's unsigned integer data. - * - * @param value The value. - * @param data The unsigned integer data. - */ -void purple_value_set_uint(PurpleValue *value, unsigned int data); - -/** - * Sets the value's long integer data. - * - * @param value The value. - * @param data The long integer data. - */ -void purple_value_set_long(PurpleValue *value, long data); - -/** - * Sets the value's unsigned long integer data. - * - * @param value The value. - * @param data The unsigned long integer data. - */ -void purple_value_set_ulong(PurpleValue *value, unsigned long data); - -/** - * Sets the value's 64-bit integer data. - * - * @param value The value. - * @param data The 64-bit integer data. - */ -void purple_value_set_int64(PurpleValue *value, gint64 data); - -/** - * Sets the value's unsigned 64-bit integer data. - * - * @param value The value. - * @param data The unsigned 64-bit integer data. - */ -void purple_value_set_uint64(PurpleValue *value, guint64 data); - -/** - * Sets the value's string data. - * - * @param value The value. - * @param data The string data. - */ -void purple_value_set_string(PurpleValue *value, const char *data); - -/** - * Sets the value's object data. - * - * @param value The value. - * @param data The object data. - */ -void purple_value_set_object(PurpleValue *value, void *data); - -/** - * Sets the value's pointer data. - * - * @param value The value. - * @param data The pointer data. - */ -void purple_value_set_pointer(PurpleValue *value, void *data); - -/** - * Sets the value's enum data. - * - * @param value The value. - * @param data The enum data. - */ -void purple_value_set_enum(PurpleValue *value, int data); - -/** - * Sets the value's boxed data. - * - * @param value The value. - * @param data The boxed data. - */ -void purple_value_set_boxed(PurpleValue *value, void *data); - -/** - * Returns the value's character data. - * - * @param value The value. - * - * @return The character data. - */ -char purple_value_get_char(const PurpleValue *value); - -/** - * Returns the value's unsigned character data. - * - * @param value The value. - * - * @return The unsigned character data. - */ -unsigned char purple_value_get_uchar(const PurpleValue *value); - -/** - * Returns the value's boolean data. - * - * @param value The value. - * - * @return The boolean data. - */ -gboolean purple_value_get_boolean(const PurpleValue *value); - -/** - * Returns the value's short integer data. - * - * @param value The value. - * - * @return The short integer data. - */ -short purple_value_get_short(const PurpleValue *value); - -/** - * Returns the value's unsigned short integer data. - * - * @param value The value. - * - * @return The unsigned short integer data. - */ -unsigned short purple_value_get_ushort(const PurpleValue *value); - -/** - * Returns the value's integer data. - * - * @param value The value. - * - * @return The integer data. - */ -int purple_value_get_int(const PurpleValue *value); - -/** - * Returns the value's unsigned integer data. - * - * @param value The value. - * - * @return The unsigned integer data. - */ -unsigned int purple_value_get_uint(const PurpleValue *value); - -/** - * Returns the value's long integer data. - * - * @param value The value. - * - * @return The long integer data. - */ -long purple_value_get_long(const PurpleValue *value); - -/** - * Returns the value's unsigned long integer data. - * - * @param value The value. - * - * @return The unsigned long integer data. - */ -unsigned long purple_value_get_ulong(const PurpleValue *value); - -/** - * Returns the value's 64-bit integer data. - * - * @param value The value. - * - * @return The 64-bit integer data. - */ -gint64 purple_value_get_int64(const PurpleValue *value); - -/** - * Returns the value's unsigned 64-bit integer data. - * - * @param value The value. - * - * @return The unsigned 64-bit integer data. - */ -guint64 purple_value_get_uint64(const PurpleValue *value); - -/** - * Returns the value's string data. - * - * @param value The value. - * - * @return The string data. - */ -const char *purple_value_get_string(const PurpleValue *value); - -/** - * Returns the value's object data. - * - * @param value The value. - * - * @return The object data. - */ -void *purple_value_get_object(const PurpleValue *value); - -/** - * Returns the value's pointer data. - * - * @param value The value. - * - * @return The pointer data. - */ -void *purple_value_get_pointer(const PurpleValue *value); - -/** - * Returns the value's enum data. - * - * @param value The value. - * - * @return The enum data. - */ -int purple_value_get_enum(const PurpleValue *value); - -/** - * Returns the value's boxed data. - * - * @param value The value. - * - * @return The boxed data. - */ -void *purple_value_get_boxed(const PurpleValue *value); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_VALUE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/version.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/version.h deleted file mode 100644 index a54dc9b..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/version.h +++ /dev/null @@ -1,88 +0,0 @@ -/** - * @file version.h Purple Versioning - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_VERSION_H_ -#define _PURPLE_VERSION_H_ - -/** The major version of the running libpurple. */ -#define PURPLE_MAJOR_VERSION (2) -/** The minor version of the running libpurple. */ -#define PURPLE_MINOR_VERSION (10) -/** The micro version of the running libpurple. */ -#define PURPLE_MICRO_VERSION (7) - -#define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \ - ((y) < PURPLE_MINOR_VERSION || \ - ((y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION))) - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Checks that the libpurple version is compatible with the requested - * version - * - * @param required_major: the required major version. - * @param required_minor: the required minor version. - * @param required_micro: the required micro version. - * - * @return NULL if the versions are compatible, or a string describing - * the version mismatch if not compatible. - */ -const char *purple_version_check(guint required_major, guint required_minor, guint required_micro); - -/** - * The major version of the running libpurple. Contrast with - * #PURPLE_MAJOR_VERSION, which expands at compile time to the major version of - * libpurple being compiled against. - * - * @since 2.4.0 - */ -extern const guint purple_major_version; - -/** - * The minor version of the running libpurple. Contrast with - * #PURPLE_MINOR_VERSION, which expands at compile time to the minor version of - * libpurple being compiled against. - * - * @since 2.4.0 - */ -extern const guint purple_minor_version; - -/** - * - * The micro version of the running libpurple. Contrast with - * #PURPLE_MICRO_VERSION, which expands at compile time to the micro version of - * libpurple being compiled against. - * - * @since 2.4.0 - */ -extern const guint purple_micro_version; - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_VERSION_H_ */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/whiteboard.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/whiteboard.h deleted file mode 100644 index 7d5700d..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/whiteboard.h +++ /dev/null @@ -1,262 +0,0 @@ -/** - * @file whiteboard.h The PurpleWhiteboard core object - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_WHITEBOARD_H_ -#define _PURPLE_WHITEBOARD_H_ - -/** - * Whiteboard PRPL Operations - */ -typedef struct _PurpleWhiteboardPrplOps PurpleWhiteboardPrplOps; - -#include "account.h" - -/** - * A PurpleWhiteboard - */ -typedef struct _PurpleWhiteboard -{ - int state; /**< State of whiteboard session */ - - PurpleAccount *account; /**< Account associated with this session */ - char *who; /**< Name of the remote user */ - - void *ui_data; /**< Graphical user-interface data */ - void *proto_data; /**< Protocol specific data */ - PurpleWhiteboardPrplOps *prpl_ops; /**< Protocol-plugin operations */ - - GList *draw_list; /**< List of drawing elements/deltas to send */ -} PurpleWhiteboard; - -/** - * The PurpleWhiteboard UI Operations - */ -typedef struct _PurpleWhiteboardUiOps -{ - void (*create)(PurpleWhiteboard *wb); /**< create function */ - void (*destroy)(PurpleWhiteboard *wb); /**< destory function */ - void (*set_dimensions)(PurpleWhiteboard *wb, int width, int height); /**< set_dimensions function */ - void (*set_brush) (PurpleWhiteboard *wb, int size, int color); /**< set the size and color of the brush */ - void (*draw_point)(PurpleWhiteboard *wb, int x, int y, - int color, int size); /**< draw_point function */ - void (*draw_line)(PurpleWhiteboard *wb, int x1, int y1, - int x2, int y2, - int color, int size); /**< draw_line function */ - void (*clear)(PurpleWhiteboard *wb); /**< clear function */ - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -} PurpleWhiteboardUiOps; - -/** - * PurpleWhiteboard PRPL Operations - */ -struct _PurpleWhiteboardPrplOps -{ - void (*start)(PurpleWhiteboard *wb); /**< start function */ - void (*end)(PurpleWhiteboard *wb); /**< end function */ - void (*get_dimensions)(const PurpleWhiteboard *wb, int *width, int *height); /**< get_dimensions function */ - void (*set_dimensions)(PurpleWhiteboard *wb, int width, int height); /**< set_dimensions function */ - void (*get_brush) (const PurpleWhiteboard *wb, int *size, int *color); /**< get the brush size and color */ - void (*set_brush) (PurpleWhiteboard *wb, int size, int color); /**< set the brush size and color */ - void (*send_draw_list)(PurpleWhiteboard *wb, GList *draw_list); /**< send_draw_list function */ - void (*clear)(PurpleWhiteboard *wb); /**< clear function */ - - void (*_purple_reserved1)(void); - void (*_purple_reserved2)(void); - void (*_purple_reserved3)(void); - void (*_purple_reserved4)(void); -}; - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - -/******************************************************************************/ -/** @name PurpleWhiteboard API */ -/******************************************************************************/ -/*@{*/ - -/** - * Sets the UI operations - * - * @param ops The UI operations to set - */ -void purple_whiteboard_set_ui_ops(PurpleWhiteboardUiOps *ops); - -/** - * Sets the prpl operations for a whiteboard - * - * @param wb The whiteboard for which to set the prpl operations - * @param ops The prpl operations to set - */ -void purple_whiteboard_set_prpl_ops(PurpleWhiteboard *wb, PurpleWhiteboardPrplOps *ops); - -/** - * Creates a whiteboard - * - * @param account The account. - * @param who Who you're drawing with. - * @param state The state. - * - * @return The new whiteboard - */ -PurpleWhiteboard *purple_whiteboard_create(PurpleAccount *account, const char *who, int state); - -/** - * Destroys a whiteboard - * - * @param wb The whiteboard. - */ -void purple_whiteboard_destroy(PurpleWhiteboard *wb); - -/** - * Starts a whiteboard - * - * @param wb The whiteboard. - */ -void purple_whiteboard_start(PurpleWhiteboard *wb); - -/** - * Finds a whiteboard from an account and user. - * - * @param account The account. - * @param who The user. - * - * @return The whiteboard if found, otherwise @c NULL. - */ -PurpleWhiteboard *purple_whiteboard_get_session(const PurpleAccount *account, const char *who); - -/** - * Destorys a drawing list for a whiteboard - * - * @param draw_list The drawing list. - */ -void purple_whiteboard_draw_list_destroy(GList *draw_list); - -/** - * Gets the dimension of a whiteboard. - * - * @param wb The whiteboard. - * @param width The width to be set. - * @param height The height to be set. - * - * @return TRUE if the values of width and height were set. - */ -gboolean purple_whiteboard_get_dimensions(const PurpleWhiteboard *wb, int *width, int *height); - -/** - * Sets the dimensions for a whiteboard. - * - * @param wb The whiteboard. - * @param width The width. - * @param height The height. - */ -void purple_whiteboard_set_dimensions(PurpleWhiteboard *wb, int width, int height); - -/** - * Draws a point on a whiteboard. - * - * @param wb The whiteboard. - * @param x The x coordinate. - * @param y The y coordinate. - * @param color The color to use. - * @param size The brush size. - */ -void purple_whiteboard_draw_point(PurpleWhiteboard *wb, int x, int y, int color, int size); - -/** - * Send a list of points to draw to the buddy. - * - * @param wb The whiteboard - * @param list A GList of points - */ -void purple_whiteboard_send_draw_list(PurpleWhiteboard *wb, GList *list); - -/** - * Draws a line on a whiteboard - * - * @param wb The whiteboard. - * @param x1 The top-left x coordinate. - * @param y1 The top-left y coordinate. - * @param x2 The bottom-right x coordinate. - * @param y2 The bottom-right y coordinate. - * @param color The color to use. - * @param size The brush size. - */ -void purple_whiteboard_draw_line(PurpleWhiteboard *wb, int x1, int y1, int x2, int y2, int color, int size); - -/** - * Clears a whiteboard - * - * @param wb The whiteboard. - */ -void purple_whiteboard_clear(PurpleWhiteboard *wb); - -/** - * Sends a request to the buddy to clear the whiteboard. - * - * @param wb The whiteboard - */ -void purple_whiteboard_send_clear(PurpleWhiteboard *wb); - -/** - * Sends a request to change the size and color of the brush. - * - * @param wb The whiteboard - * @param size The size of the brush - * @param color The color of the brush - */ -void purple_whiteboard_send_brush(PurpleWhiteboard *wb, int size, int color); - -/** - * Gets the size and color of the brush. - * - * @param wb The whiteboard - * @param size The size of the brush - * @param color The color of the brush - * - * @return TRUE if the size and color were set. - */ -gboolean purple_whiteboard_get_brush(const PurpleWhiteboard *wb, int *size, int *color); - -/** - * Sets the size and color of the brush. - * - * @param wb The whiteboard - * @param size The size of the brush - * @param color The color of the brush - */ -void purple_whiteboard_set_brush(PurpleWhiteboard *wb, int size, int color); - -/*@}*/ - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif /* _PURPLE_WHITEBOARD_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xfer.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xfer.h deleted file mode 100644 index 23e19f3..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xfer.h +++ /dev/null @@ -1,67 +0,0 @@ -/** - * @file xfer.h MSN File Transfer functions - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef MSN_XFER_H -#define MSN_XFER_H - -#include "slpcall.h" - -#define MAX_FILE_NAME_LEN 260 /* MAX_PATH in Windows */ - -/** - * The context data for a file transfer request - */ -typedef struct -{ - guint32 length; /*< Length of header */ - guint32 version; /*< MSN version */ - guint64 file_size; /*< Size of file */ - guint32 type; /*< Transfer type */ - gunichar2 file_name[MAX_FILE_NAME_LEN]; /*< Self-explanatory */ - gchar unknown1[30]; /*< Used somehow for background sharing */ - guint32 unknown2; /*< Possibly for background sharing as well */ - gchar *preview; /*< File preview data, 96x96 PNG */ - gsize preview_len; -} MsnFileContext; - -#define MSN_FILE_CONTEXT_SIZE (4*4 + 1*8 + 2*MAX_FILE_NAME_LEN + 30) - -void msn_xfer_init(PurpleXfer *xfer); -void msn_xfer_cancel(PurpleXfer *xfer); - -gssize msn_xfer_write(const guchar *data, gsize len, PurpleXfer *xfer); -gssize msn_xfer_read(guchar **data, PurpleXfer *xfer); - -void msn_xfer_completed_cb(MsnSlpCall *slpcall, - const guchar *body, gsize size); -void msn_xfer_end_cb(MsnSlpCall *slpcall, MsnSession *session); - -gchar * -msn_file_context_to_wire(MsnFileContext *context); - -MsnFileContext * -msn_file_context_from_wire(const char *buf, gsize len); - -#endif /* MSN_XFER_H */ - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xmlnode.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xmlnode.h deleted file mode 100644 index ef8c2fb..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/xmlnode.h +++ /dev/null @@ -1,397 +0,0 @@ -/** - * @file xmlnode.h XML DOM functions - * @ingroup core - */ - -/* purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _PURPLE_XMLNODE_H_ -#define _PURPLE_XMLNODE_H_ - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * The valid types for an xmlnode - */ -typedef enum _XMLNodeType -{ - XMLNODE_TYPE_TAG, /**< Just a tag */ - XMLNODE_TYPE_ATTRIB, /**< Has attributes */ - XMLNODE_TYPE_DATA /**< Has data */ -} XMLNodeType; - -/** - * An xmlnode. - */ -typedef struct _xmlnode xmlnode; -struct _xmlnode -{ - char *name; /**< The name of the node. */ - char *xmlns; /**< The namespace of the node */ - XMLNodeType type; /**< The type of the node. */ - char *data; /**< The data for the node. */ - size_t data_sz; /**< The size of the data. */ - xmlnode *parent; /**< The parent node or @c NULL.*/ - xmlnode *child; /**< The child node or @c NULL.*/ - xmlnode *lastchild; /**< The last child node or @c NULL.*/ - xmlnode *next; /**< The next node or @c NULL. */ - char *prefix; /**< The namespace prefix if any. */ - GHashTable *namespace_map; /**< The namespace map. */ -}; - -/** - * Creates a new xmlnode. - * - * @param name The name of the node. - * - * @return The new node. - */ -xmlnode *xmlnode_new(const char *name); - -/** - * Creates a new xmlnode child. - * - * @param parent The parent node. - * @param name The name of the child node. - * - * @return The new child node. - */ -xmlnode *xmlnode_new_child(xmlnode *parent, const char *name); - -/** - * Inserts a node into a node as a child. - * - * @param parent The parent node to insert child into. - * @param child The child node to insert into parent. - */ -void xmlnode_insert_child(xmlnode *parent, xmlnode *child); - -/** - * Gets a child node named name. - * - * @param parent The parent node. - * @param name The child's name. - * - * @return The child or NULL. - */ -xmlnode *xmlnode_get_child(const xmlnode *parent, const char *name); - -/** - * Gets a child node named name in a namespace. - * - * @param parent The parent node. - * @param name The child's name. - * @param xmlns The namespace. - * - * @return The child or NULL. - */ -xmlnode *xmlnode_get_child_with_namespace(const xmlnode *parent, const char *name, const char *xmlns); - -/** - * Gets the next node with the same name as node. - * - * @param node The node of a twin to find. - * - * @return The twin of node or NULL. - */ -xmlnode *xmlnode_get_next_twin(xmlnode *node); - -/** - * Inserts data into a node. - * - * @param node The node to insert data into. - * @param data The data to insert. - * @param size The size of the data to insert. If data is - * null-terminated you can pass in -1. - */ -void xmlnode_insert_data(xmlnode *node, const char *data, gssize size); - -/** - * Gets (escaped) data from a node. - * - * @param node The node to get data from. - * - * @return The data from the node or NULL. This data is in raw escaped format. - * You must g_free this string when finished using it. - */ -char *xmlnode_get_data(const xmlnode *node); - -/** - * Gets unescaped data from a node. - * - * @param node The node to get data from. - * - * @return The data from the node, in unescaped form. You must g_free - * this string when finished using it. - */ -char *xmlnode_get_data_unescaped(const xmlnode *node); - -/** - * Sets an attribute for a node. - * - * @param node The node to set an attribute for. - * @param attr The name of the attribute. - * @param value The value of the attribute. - */ -void xmlnode_set_attrib(xmlnode *node, const char *attr, const char *value); - -#if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_XMLNODE_C_) -/** - * Sets a prefixed attribute for a node - * - * @param node The node to set an attribute for. - * @param attr The name of the attribute to set - * @param prefix The prefix of the attribute to ste - * @param value The value of the attribute - * - * @deprecated Use xmlnode_set_attrib_full instead. - */ -void xmlnode_set_attrib_with_prefix(xmlnode *node, const char *attr, const char *prefix, const char *value); - -/** - * Sets a namespaced attribute for a node - * - * @param node The node to set an attribute for. - * @param attr The name of the attribute to set - * @param xmlns The namespace of the attribute to ste - * @param value The value of the attribute - * - * @deprecated Use xmlnode_set_attrib_full instead. - */ -void xmlnode_set_attrib_with_namespace(xmlnode *node, const char *attr, const char *xmlns, const char *value); -#endif /* PURPLE_DISABLE_DEPRECATED */ - -/** - * Sets a namespaced attribute for a node - * - * @param node The node to set an attribute for. - * @param attr The name of the attribute to set - * @param xmlns The namespace of the attribute to ste - * @param prefix The prefix of the attribute to ste - * @param value The value of the attribute - * - * @since 2.6.0 - */ -void xmlnode_set_attrib_full(xmlnode *node, const char *attr, const char *xmlns, - const char *prefix, const char *value); - -/** - * Gets an attribute from a node. - * - * @param node The node to get an attribute from. - * @param attr The attribute to get. - * - * @return The value of the attribute. - */ -const char *xmlnode_get_attrib(const xmlnode *node, const char *attr); - -/** - * Gets a namespaced attribute from a node - * - * @param node The node to get an attribute from. - * @param attr The attribute to get - * @param xmlns The namespace of the attribute to get - * - * @return The value of the attribute/ - */ -const char *xmlnode_get_attrib_with_namespace(const xmlnode *node, const char *attr, const char *xmlns); - -/** - * Removes an attribute from a node. - * - * @param node The node to remove an attribute from. - * @param attr The attribute to remove. - */ -void xmlnode_remove_attrib(xmlnode *node, const char *attr); - -/** - * Removes a namespaced attribute from a node - * - * @param node The node to remove an attribute from - * @param attr The attribute to remove - * @param xmlns The namespace of the attribute to remove - */ -void xmlnode_remove_attrib_with_namespace(xmlnode *node, const char *attr, const char *xmlns); - -/** - * Sets the namespace of a node - * - * @param node The node to qualify - * @param xmlns The namespace of the node - */ -void xmlnode_set_namespace(xmlnode *node, const char *xmlns); - -/** - * Returns the namespace of a node - * - * @param node The node to get the namepsace from - * @return The namespace of this node - */ -const char *xmlnode_get_namespace(const xmlnode *node); - -/** - * Returns the current default namespace. The default - * namespace is the current namespace which applies to child - * elements which are unprefixed and which do not contain their - * own namespace. - * - * For example, given: - * - * - * - * - * The default namespace of all nodes (including 'child1') is "jabber:client", - * though the namespace for 'element' is "http://example.org/ns1". - * - * @param node The node for which to return the default namespace - * @return The default namespace of this node - */ -const char *xmlnode_get_default_namespace(const xmlnode *node); - -/** - * Returns the defined namespace for a prefix. - * - * @param node The node from which to start the search. - * @param prefix The prefix for which to return the associated namespace. - * @return The namespace for this prefix. - */ -const char *xmlnode_get_prefix_namespace(const xmlnode *node, const char *prefix); - -/** - * Sets the prefix of a node - * - * @param node The node to qualify - * @param prefix The prefix of the node - */ -void xmlnode_set_prefix(xmlnode *node, const char *prefix); - -/** - * Returns the prefix of a node - * - * @param node The node to get the prefix from - * @return The prefix of this node - */ -const char *xmlnode_get_prefix(const xmlnode *node); - -/** - * Remove all element prefixes from an xmlnode tree. The prefix's - * namespace is transformed into the default namespace for an element. - * - * Note that this will not necessarily remove all prefixes in use - * (prefixed attributes may still exist), and that this usage may - * break some applications (SOAP / XPath apparently often rely on - * the prefixes having the same name. - * - * @param node The node from which to strip prefixes - */ -void xmlnode_strip_prefixes(xmlnode *node); - -/** - * Gets the parent node. - * - * @param child The child node. - * - * @return The parent or NULL. - * - * @since 2.6.0 - */ -xmlnode *xmlnode_get_parent(const xmlnode *child); - -/** - * Returns the node in a string of xml. - * - * @param node The starting node to output. - * @param len Address for the size of the string. - * - * @return The node represented as a string. You must - * g_free this string when finished using it. - */ -char *xmlnode_to_str(const xmlnode *node, int *len); - -/** - * Returns the node in a string of human readable xml. - * - * @param node The starting node to output. - * @param len Address for the size of the string. - * - * @return The node as human readable string including - * tab and new line characters. You must - * g_free this string when finished using it. - */ -char *xmlnode_to_formatted_str(const xmlnode *node, int *len); - -/** - * Creates a node from a string of XML. Calling this on the - * root node of an XML document will parse the entire document - * into a tree of nodes, and return the xmlnode of the root. - * - * @param str The string of xml. - * @param size The size of the string, or -1 if @a str is - * NUL-terminated. - * - * @return The new node. - */ -xmlnode *xmlnode_from_str(const char *str, gssize size); - -/** - * Creates a new node from the source node. - * - * @param src The node to copy. - * - * @return A new copy of the src node. - */ -xmlnode *xmlnode_copy(const xmlnode *src); - -/** - * Frees a node and all of its children. - * - * @param node The node to free. - */ -void xmlnode_free(xmlnode *node); - -/** - * Creates a node from a XML File. Calling this on the - * root node of an XML document will parse the entire document - * into a tree of nodes, and return the xmlnode of the root. - * - * @param dir The directory where the file is located - * @param filename The filename - * @param description A description of the file being parsed. Displayed to - * the user if the file cannot be read. - * @param process The subsystem that is calling xmlnode_from_file. Used as - * the category for debugging. - * - * @return The new node or NULL if an error occurred. - * - * @since 2.6.0 - */ -xmlnode *xmlnode_from_file(const char *dir, const char *filename, - const char *description, const char *process); - -#ifdef __cplusplus -} -#endif - -#endif /* _PURPLE_XMLNODE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_aliases.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_aliases.h deleted file mode 100644 index 0eb7fef..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_aliases.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - - -#include "internal.h" - -#include "account.h" -#include "accountopt.h" -#include "blist.h" -#include "debug.h" -#include "util.h" -#include "version.h" -#include "libymsg.h" -#include "yahoo_packet.h" - -void yahoo_update_alias(PurpleConnection *gc, const char *who, const char *alias); -void yahoo_fetch_aliases(PurpleConnection *gc); -void yahoo_set_userinfo(PurpleConnection *gc); -void yahoo_set_userinfo_for_buddy(PurpleConnection *gc, PurpleBuddy *buddy); -void yahoo_personal_details_reset(YahooPersonalDetails *ypd, gboolean all); -void yahoo_process_contact_details(PurpleConnection *gc, struct yahoo_packet *pkt); diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_doodle.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_doodle.h deleted file mode 100644 index 91329d4..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_doodle.h +++ /dev/null @@ -1,131 +0,0 @@ -/** - * @file yahoo_doodle.h The Yahoo! protocol plugin Doodle IMVironment object - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _YAHOO_DOODLE_H_ -#define _YAHOO_DOODLE_H_ - -/****************************************************************************** - * Includes - *****************************************************************************/ -#include "whiteboard.h" -#include "cmds.h" - -#define DOODLE_IMV_KEY "doodle;106" - -/****************************************************************************** - * Defines - *****************************************************************************/ -/* Doodle communication commands */ -/* TODO: Should be an enum. */ -#define DOODLE_CMD_REQUEST 0 -#define DOODLE_CMD_CLEAR 1 -#define DOODLE_CMD_DRAW 2 -#define DOODLE_CMD_EXTRA 3 -#define DOODLE_CMD_READY 4 -#define DOODLE_CMD_CONFIRM 5 -/* Doodle communication command for shutting down (also 0) */ -#define DOODLE_CMD_SHUTDOWN 0 - -#define DOODLE_EXTRA_NONE "\"1\"" -#define DOODLE_EXTRA_TICTACTOE "\"3\"" -#define DOODLE_EXTRA_DOTS "\"2\"" - -/* Doodle session states */ -/* TODO: Should be an enum. */ -#define DOODLE_STATE_REQUESTING 0 -#define DOODLE_STATE_REQUESTED 1 -#define DOODLE_STATE_ESTABLISHED 2 -#define DOODLE_STATE_CANCELLED 3 - -/* Doodle canvas dimensions */ -#define DOODLE_CANVAS_WIDTH 368 -#define DOODLE_CANVAS_HEIGHT 256 - -/* Doodle color codes (most likely RGB) */ -/* TODO: Should be an enum and sorted by color name. */ -#define DOODLE_COLOR_RED 13369344 -#define DOODLE_COLOR_ORANGE 16737792 -#define DOODLE_COLOR_YELLOW 15658496 -#define DOODLE_COLOR_GREEN 52224 -#define DOODLE_COLOR_CYAN 52428 -#define DOODLE_COLOR_BLUE 204 -#define DOODLE_COLOR_VIOLET 5381277 -#define DOODLE_COLOR_PURPLE 13369548 -#define DOODLE_COLOR_TAN 12093547 -#define DOODLE_COLOR_BROWN 5256485 -#define DOODLE_COLOR_BLACK 0 -#define DOODLE_COLOR_GREY 11184810 -#define DOODLE_COLOR_WHITE 16777215 - -#define PALETTE_NUM_OF_COLORS 12 - -/* Doodle brush sizes (most likely variable) */ -#define DOODLE_BRUSH_SMALL 2 -#define DOODLE_BRUSH_MEDIUM 5 -#define DOODLE_BRUSH_LARGE 10 - -#define DOODLE_MAX_BRUSH_MOTIONS 100 - -/****************************************************************************** - * Datatypes - *****************************************************************************/ -typedef struct _doodle_session -{ - int brush_size; /* Size of drawing brush */ - int brush_color; /* Color of drawing brush */ - gchar *imv_key; -} doodle_session; - -/****************************************************************************** - * API - *****************************************************************************/ - -PurpleCmdRet yahoo_doodle_purple_cmd_start(PurpleConversation *conv, const char *cmd, char **args, - char **error, void *data); - -void yahoo_doodle_process(PurpleConnection *gc, const char *me, const char *from, - const char *command, const char *message, const char *imv_key); -void yahoo_doodle_initiate(PurpleConnection *gc, const char *to); - -void yahoo_doodle_command_got_shutdown(PurpleConnection *gc, const char *from); - -void yahoo_doodle_command_send_request(PurpleConnection *gc, const char *to, const char *imv_key); -void yahoo_doodle_command_send_ready(PurpleConnection *gc, const char *to, const char *imv_key); -void yahoo_doodle_command_send_draw(PurpleConnection *gc, const char *to, const char *message, const char *imv_key); -void yahoo_doodle_command_send_clear(PurpleConnection *gc, const char *to, const char *imv_key); -void yahoo_doodle_command_send_extra(PurpleConnection *gc, const char *to, const char *message, const char *imv_key); -void yahoo_doodle_command_send_confirm(PurpleConnection *gc, const char *to, const char *imv_key); -void yahoo_doodle_command_send_shutdown(PurpleConnection *gc, const char *to); - -void yahoo_doodle_start(PurpleWhiteboard *wb); -void yahoo_doodle_end(PurpleWhiteboard *wb); -void yahoo_doodle_get_dimensions(const PurpleWhiteboard *wb, int *width, int *height); -void yahoo_doodle_send_draw_list(PurpleWhiteboard *wb, GList *draw_list); -void yahoo_doodle_clear(PurpleWhiteboard *wb); - -void yahoo_doodle_draw_stroke(PurpleWhiteboard *wb, GList *draw_list); -void yahoo_doodle_get_brush(const PurpleWhiteboard *wb, int *size, int *color); -void yahoo_doodle_set_brush(PurpleWhiteboard *wb, int size, int color); - -#endif /* _YAHOO_DOODLE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_filexfer.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_filexfer.h deleted file mode 100644 index c31b029..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_filexfer.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ -#ifndef _YAHOO_FILEXFER_H_ -#define _YAHOO_FILEXFER_H_ - -#include "ft.h" - -/** - * Process ymsg events, particular IMViroments like Doodle - */ -void yahoo_process_p2pfilexfer( PurpleConnection *gc, struct yahoo_packet *pkt ); - -/** - * Process ymsg file receive invites. - */ -void yahoo_process_filetransfer(PurpleConnection *gc, struct yahoo_packet *pkt); - -/** - * Create a new PurpleXfer - * - * @param gc The PurpleConnection handle. - * @param who Who will we be sending it to? - */ -PurpleXfer *yahoo_new_xfer(PurpleConnection *gc, const char *who); - -/** - * Returns TRUE if the buddy can receive file, FALSE otherwise. - * Federated users cannot receive files. So this will return FALSE only - * for them. - * - * @param gc The connection - * @param who The name of the remote user - * - * @return TRUE or FALSE - */ -gboolean yahoo_can_receive_file(PurpleConnection *gc, const char *who); - -/** - * Send a file. - * - * @param gc The PurpleConnection handle. - * @param who Who are we sending it to? - * @param file What file? If NULL, user will choose after this call. - */ -void yahoo_send_file(PurpleConnection *gc, const char *who, const char *file); - -void yahoo_process_filetrans_15(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_filetrans_info_15(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_filetrans_acc_15(PurpleConnection *gc, struct yahoo_packet *pkt); - -#endif diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_friend.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_friend.h deleted file mode 100644 index 2560fc7..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_friend.h +++ /dev/null @@ -1,93 +0,0 @@ -/** - * @file yahoo_friend.h The Yahoo! protocol plugin YahooFriend object - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _YAHOO_FRIEND_H_ -#define _YAHOO_FRIEND_H_ - -#include "libymsg.h" -#include "yahoo_packet.h" - -typedef enum { - YAHOO_PRESENCE_DEFAULT = 0, - YAHOO_PRESENCE_ONLINE, - YAHOO_PRESENCE_PERM_OFFLINE -} YahooPresenceVisibility; - -typedef enum { - YAHOO_P2PSTATUS_NOT_CONNECTED = 0, - YAHOO_P2PSTATUS_DO_NOT_CONNECT, - YAHOO_P2PSTATUS_WE_ARE_SERVER, - YAHOO_P2PSTATUS_WE_ARE_CLIENT -} YahooP2PStatus; - - -/* these are called friends instead of buddies mainly so I can use variables - * named f and not confuse them with variables named b - */ -typedef struct _YahooFriend { - enum yahoo_status status; - gchar *msg; - gchar *game; - int idle; - int away; - gboolean sms; - gchar *ip; - gboolean bicon_sent_request; - YahooPresenceVisibility presence; - YahooFederation fed; - long int version_id; - YahooPersonalDetails ypd; - YahooP2PStatus p2p_status; - gboolean p2p_packet_sent; /* 0:not sent, 1=sent */ - gint session_id; /* session id of friend */ -} YahooFriend; - -YahooFriend *yahoo_friend_find(PurpleConnection *gc, const char *name); -YahooFriend *yahoo_friend_find_or_new(PurpleConnection *gc, const char *name); - -void yahoo_friend_set_ip(YahooFriend *f, const char *ip); -const char *yahoo_friend_get_ip(YahooFriend *f); - -void yahoo_friend_set_game(YahooFriend *f, const char *game); -const char *yahoo_friend_get_game(YahooFriend *f); - -void yahoo_friend_set_status_message(YahooFriend *f, char *msg); -const char *yahoo_friend_get_status_message(YahooFriend *f); - -void yahoo_friend_set_alias_id(YahooFriend *f, const char *alias_id); -const char *yahoo_friend_get_alias_id(YahooFriend *f); - -void yahoo_friend_set_buddy_icon_need_request(YahooFriend *f, gboolean needs); -gboolean yahoo_friend_get_buddy_icon_need_request(YahooFriend *f); - -void yahoo_friend_free(gpointer p); - -void yahoo_process_presence(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_friend_update_presence(PurpleConnection *gc, const char *name, - YahooPresenceVisibility presence); - -void yahoo_friend_set_p2p_status(YahooFriend *f, YahooP2PStatus p2p_status); -YahooP2PStatus yahoo_friend_get_p2p_status(YahooFriend *f); - -#endif /* _YAHOO_FRIEND_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_packet.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_packet.h deleted file mode 100644 index f214351..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_packet.h +++ /dev/null @@ -1,150 +0,0 @@ -/** - * @file yahoo_packet.h The Yahoo! protocol plugin - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _YAHOO_PACKET_H_ -#define _YAHOO_PACKET_H_ - -enum yahoo_service { /* these are easier to see in hex */ - YAHOO_SERVICE_LOGON = 1, - YAHOO_SERVICE_LOGOFF, - YAHOO_SERVICE_ISAWAY, - YAHOO_SERVICE_ISBACK, - YAHOO_SERVICE_IDLE, /* 5 (placemarker) */ - YAHOO_SERVICE_MESSAGE, - YAHOO_SERVICE_IDACT, - YAHOO_SERVICE_IDDEACT, - YAHOO_SERVICE_MAILSTAT, - YAHOO_SERVICE_USERSTAT, /* 0xa */ - YAHOO_SERVICE_NEWMAIL, - YAHOO_SERVICE_CHATINVITE, - YAHOO_SERVICE_CALENDAR, - YAHOO_SERVICE_NEWPERSONALMAIL, - YAHOO_SERVICE_NEWCONTACT, - YAHOO_SERVICE_ADDIDENT, /* 0x10 */ - YAHOO_SERVICE_ADDIGNORE, - YAHOO_SERVICE_PING, - YAHOO_SERVICE_GOTGROUPRENAME, - YAHOO_SERVICE_SYSMESSAGE = 0x14, - YAHOO_SERVICE_SKINNAME = 0x15, - YAHOO_SERVICE_PASSTHROUGH2 = 0x16, - YAHOO_SERVICE_CONFINVITE = 0x18, - YAHOO_SERVICE_CONFLOGON, - YAHOO_SERVICE_CONFDECLINE, - YAHOO_SERVICE_CONFLOGOFF, - YAHOO_SERVICE_CONFADDINVITE, - YAHOO_SERVICE_CONFMSG, - YAHOO_SERVICE_CHATLOGON, - YAHOO_SERVICE_CHATLOGOFF, - YAHOO_SERVICE_CHATMSG = 0x20, - YAHOO_SERVICE_GAMELOGON = 0x28, - YAHOO_SERVICE_GAMELOGOFF, - YAHOO_SERVICE_GAMEMSG = 0x2a, - YAHOO_SERVICE_FILETRANSFER = 0x46, - YAHOO_SERVICE_VOICECHAT = 0x4A, - YAHOO_SERVICE_NOTIFY = 0x4B, - YAHOO_SERVICE_VERIFY, - YAHOO_SERVICE_P2PFILEXFER, - YAHOO_SERVICE_PEERTOPEER = 0x4F, - YAHOO_SERVICE_WEBCAM, - YAHOO_SERVICE_AUTHRESP = 0x54, - YAHOO_SERVICE_LIST = 0x55, - YAHOO_SERVICE_AUTH = 0x57, - YAHOO_SERVICE_AUTHBUDDY = 0x6d, - YAHOO_SERVICE_ADDBUDDY = 0x83, - YAHOO_SERVICE_REMBUDDY = 0x84, - YAHOO_SERVICE_IGNORECONTACT, /* > 1, 7, 13 < 1, 66, 13, 0*/ - YAHOO_SERVICE_REJECTCONTACT, - YAHOO_SERVICE_GROUPRENAME = 0x89, /* > 1, 65(new), 66(0), 67(old) */ - YAHOO_SERVICE_KEEPALIVE = 0x8A, - YAHOO_SERVICE_CHATONLINE = 0x96, /* > 109(id), 1, 6(abcde) < 0,1*/ - YAHOO_SERVICE_CHATGOTO, - YAHOO_SERVICE_CHATJOIN, /* > 1 104-room 129-1600326591 62-2 */ - YAHOO_SERVICE_CHATLEAVE, - YAHOO_SERVICE_CHATEXIT = 0x9b, - YAHOO_SERVICE_CHATADDINVITE = 0x9d, - YAHOO_SERVICE_CHATLOGOUT = 0xa0, - YAHOO_SERVICE_CHATPING, - YAHOO_SERVICE_COMMENT = 0xa8, - YAHOO_SERVICE_PRESENCE_PERM = 0xb9, - YAHOO_SERVICE_PRESENCE_SESSION = 0xba, - YAHOO_SERVICE_AVATAR = 0xbc, - YAHOO_SERVICE_PICTURE_CHECKSUM = 0xbd, - YAHOO_SERVICE_PICTURE = 0xbe, - YAHOO_SERVICE_PICTURE_UPDATE = 0xc1, - YAHOO_SERVICE_PICTURE_UPLOAD = 0xc2, - YAHOO_SERVICE_Y6_VISIBLE_TOGGLE = 0xc5, - YAHOO_SERVICE_Y6_STATUS_UPDATE = 0xc6, - YAHOO_SERVICE_AVATAR_UPDATE = 0xc7, - YAHOO_SERVICE_VERIFY_ID_EXISTS = 0xc8, - YAHOO_SERVICE_AUDIBLE = 0xd0, - YAHOO_SERVICE_CONTACT_DETAILS = 0xd3, - /* YAHOO_SERVICE_CHAT_SESSION = 0xd4,?? Reports start of chat session, gets an id from server */ - YAHOO_SERVICE_AUTH_REQ_15 = 0xd6, - YAHOO_SERVICE_FILETRANS_15 = 0xdc, - YAHOO_SERVICE_FILETRANS_INFO_15 = 0xdd, - YAHOO_SERVICE_FILETRANS_ACC_15 = 0xde, - /* photo sharing services ?? - 0xd2, 0xd7, 0xd8, 0xda */ - YAHOO_SERVICE_CHGRP_15 = 0xe7, - YAHOO_SERVICE_STATUS_15 = 0xf0, - YAHOO_SERVICE_LIST_15 = 0xf1, - YAHOO_SERVICE_MESSAGE_ACK = 0xfb, - YAHOO_SERVICE_WEBLOGIN = 0x0226, - YAHOO_SERVICE_SMS_MSG = 0x02ea - /* YAHOO_SERVICE_DISCONNECT = 0x07d1 Server forces us to disconnect. Is sent with TCP FIN flag set */ -}; - -struct yahoo_pair { - int key; - char *value; -}; - -struct yahoo_packet { - guint16 service; - guint32 status; - guint32 id; - GSList *hash; -}; - -#define YAHOO_WEBMESSENGER_PROTO_VER 0x0065 -#define YAHOO_PROTO_VER 0x0010 -#define YAHOO_PROTO_VER_JAPAN 0x0010 - -#define YAHOO_PACKET_HDRLEN (4 + 2 + 2 + 2 + 2 + 4 + 4) - -struct yahoo_packet *yahoo_packet_new(enum yahoo_service service, - enum yahoo_status status, int id); -void yahoo_packet_hash(struct yahoo_packet *pkt, const char *fmt, ...); -void yahoo_packet_hash_str(struct yahoo_packet *pkt, int key, const char *value); -void yahoo_packet_hash_int(struct yahoo_packet *pkt, int key, int value); -int yahoo_packet_send(struct yahoo_packet *pkt, YahooData *yd); -int yahoo_packet_send_and_free(struct yahoo_packet *pkt, YahooData *yd); -size_t yahoo_packet_build(struct yahoo_packet *pkt, int pad, gboolean wm, gboolean jp, -guchar **buf); -void yahoo_packet_read(struct yahoo_packet *pkt, const guchar *data, int len); -void yahoo_packet_write(struct yahoo_packet *pkt, guchar *data); -void yahoo_packet_dump(guchar *data, int len); -size_t yahoo_packet_length(struct yahoo_packet *pkt); -void yahoo_packet_free(struct yahoo_packet *pkt); - -#endif /* _YAHOO_PACKET_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_picture.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_picture.h deleted file mode 100644 index cf030f1..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoo_picture.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - * - */ - -#ifndef _YAHOO_PICTURE_H_ -#define _YAHOO_PICTURE_H_ - -void yahoo_send_picture_request(PurpleConnection *gc, const char *who); -void yahoo_send_picture_info(PurpleConnection *gc, const char *who); -void yahoo_send_picture_checksum(PurpleConnection *gc); -void yahoo_send_picture_update(PurpleConnection *gc, int type); -void yahoo_send_picture_update_to_user(PurpleConnection *gc, const char *who, int type); - -void yahoo_process_picture(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_picture_checksum(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_picture_upload(PurpleConnection *gc, struct yahoo_packet *pkt); - -void yahoo_process_avatar_update(PurpleConnection *gc, struct yahoo_packet *pkt); - -void yahoo_set_buddy_icon(PurpleConnection *gc, PurpleStoredImage *img); -void yahoo_buddy_icon_upload(PurpleConnection *gc, struct yahoo_buddy_icon_upload_data *d); -void yahoo_buddy_icon_upload_data_free(struct yahoo_buddy_icon_upload_data *d); - -#endif /* _YAHOO_PICTURE_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoochat.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoochat.h deleted file mode 100644 index 061be77..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/yahoochat.h +++ /dev/null @@ -1,66 +0,0 @@ -/** - * @file yahoochat.h The Yahoo! protocol plugin, chat and conference stuff - * - * purple - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _YAHOOCHAT_H_ -#define _YAHOOCHAT_H_ - -#include "roomlist.h" -#include "yahoo_packet.h" - -void yahoo_process_conference_invite(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_conference_decline(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_conference_logon(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_conference_logoff(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_conference_message(PurpleConnection *gc, struct yahoo_packet *pkt); - -void yahoo_process_chat_online(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_logout(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_join(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_exit(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_message(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_addinvite(PurpleConnection *gc, struct yahoo_packet *pkt); -void yahoo_process_chat_goto(PurpleConnection *gc, struct yahoo_packet *pkt); - -void yahoo_c_leave(PurpleConnection *gc, int id); -int yahoo_c_send(PurpleConnection *gc, int id, const char *what, PurpleMessageFlags flags); -GList *yahoo_c_info(PurpleConnection *gc); -GHashTable *yahoo_c_info_defaults(PurpleConnection *gc, const char *chat_name); -void yahoo_c_join(PurpleConnection *gc, GHashTable *data); -char *yahoo_get_chat_name(GHashTable *data); -void yahoo_c_invite(PurpleConnection *gc, int id, const char *msg, const char *name); - -void yahoo_conf_leave(YahooData *yd, const char *room, const char *dn, GList *who); - -void yahoo_chat_goto(PurpleConnection *gc, const char *name); - -/* room listing functions */ -PurpleRoomlist *yahoo_roomlist_get_list(PurpleConnection *gc); -void yahoo_roomlist_cancel(PurpleRoomlist *list); -void yahoo_roomlist_expand_category(PurpleRoomlist *list, PurpleRoomlistRoom *category); - -/* util */ -void yahoo_chat_add_users(PurpleConvChat *chat, GList *newusers); -void yahoo_chat_add_user(PurpleConvChat *chat, const char *user, const char *reason); - -#endif /* _YAHOO_CHAT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ycht.h b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ycht.h deleted file mode 100644 index 325745c..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Headers/ycht.h +++ /dev/null @@ -1,97 +0,0 @@ -/** - * @file ycht.h The Yahoo! protocol plugin, YCHT protocol stuff. - * - * purple - * - * Copyright (C) 2004 Timothy Ringenbach - * - * Purple is the legal property of its developers, whose names are too numerous - * to list here. Please refer to the COPYRIGHT file distributed with this - * source distribution. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA - */ - -#ifndef _PURPLE_YCHT_H_ -#define _PURPLE_YCHT_H_ - -/* #define YAHOO_YCHT_DEBUG */ - -#define YAHOO_YCHT_HOST "jcs3.chat.dcn.yahoo.com" -#define YAHOO_YCHT_PORT 8002 - -#define YCHT_VERSION (0xae) -#define YCHT_HEADER_LEN (0x10) - -typedef enum { - YCHT_SERVICE_LOGIN = 0x01, - YCHT_SERVICE_LOGOUT = 0x02, - YCHT_SERVICE_CHATJOIN = 0x11, - YCHT_SERVICE_CHATPART = 0x12, - YCHT_SERVICE_CHATMSG = 0x41, - YCHT_SERVICE_CHATMSG_EMOTE = 0x43, - YCHT_SERVICE_PING = 0x62, - YCHT_SERVICE_ONLINE_FRIENDS = 0x68 -} ycht_service; -/* -yahoo: YCHT Service: 0x11 Version: 0x100 -yahoo: Data[0]: Linux, FreeBSD, Solaris:1 -yahoo: Data[1]: Questions, problems and discussions about all flavors of Unix. -yahoo: Data[2]: -yahoo: Data[3]: 0 -yahoo: Data[4]: sgooki888\0020\002 \0022769036\00258936\002 -yahoo: --==End of incoming YCHT packet==-- - -yahoo: --==Incoming YCHT packet==-- -yahoo: YCHT Service: 0x12 Version: 0x100 -yahoo: Data[0]: Linux, FreeBSD, Solaris:1 -yahoo: Data[1]: cccc4cccc -yahoo: --==End of incoming YCHT packet==-- - -*/ -#define YCHT_SEP "\xc0\x80" - -typedef struct _YchtConn { - PurpleConnection *gc; - gchar *room; - int room_id; - gint fd; - gint inpa; - gboolean logged_in; - gboolean changing_rooms; - guchar *rxqueue; - guint rxlen; - PurpleCircBuffer *txbuf; - guint tx_handler; -} YchtConn; - -typedef struct { - guint version; - guint service; - gint status; - GList *data; -} YchtPkt; - -void ycht_connection_open(PurpleConnection *gc); -void ycht_connection_close(YchtConn *ycht); - -void ycht_chat_join(YchtConn *ycht, const char *room); -int ycht_chat_send(YchtConn *ycht, const char *room, const char *what); -void ycht_chat_leave(YchtConn *ycht, const char *room, gboolean logout); -void ycht_chat_send_invite(YchtConn *ycht, const char *room, const char *buddy, const char *msg); -void ycht_chat_goto_user(YchtConn *ycht, const char *name); -void ycht_chat_send_keepalive(YchtConn *ycht); - -#endif /* _PURPLE_YCHT_H_ */ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/English.lproj/InfoPlist.strings b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/English.lproj/InfoPlist.strings deleted file mode 100644 index 32639b0..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/English.lproj/InfoPlist.strings +++ /dev/null @@ -1,3 +0,0 @@ -/* Localized versions of Info.plist keys */ - -CFBundleName = "libpurple"; diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/Info.plist b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/Info.plist deleted file mode 100644 index 6dce541..0000000 --- a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/Info.plist +++ /dev/null @@ -1,18 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 0.0.1d1 - CFBundleIdentifier - im.pidgin.libpurple - - diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/bn_IN/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/bn_IN/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 0f95358..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/bn_IN/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ca/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ca/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 4ea5ddd..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ca/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/cs/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/cs/LC_MESSAGES/pidgin.mo deleted file mode 100644 index ac0541e..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/cs/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/da/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/da/LC_MESSAGES/pidgin.mo deleted file mode 100644 index c223d01..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/da/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/de/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/de/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 3683f7f..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/de/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/el/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/el/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 29cd4ac..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/el/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_AU/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_AU/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 92b64b7..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_AU/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_CA/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_CA/LC_MESSAGES/pidgin.mo deleted file mode 100644 index d5529b1..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_CA/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_GB/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_GB/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 45c44ea..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/en_GB/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/es/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/es/LC_MESSAGES/pidgin.mo deleted file mode 100644 index f5f4169..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/es/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fi/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fi/LC_MESSAGES/pidgin.mo deleted file mode 100644 index f7e5cf4..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fi/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fr/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fr/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 222cb84..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/fr/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hr/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hr/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 6559616..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hr/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hu/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hu/LC_MESSAGES/pidgin.mo deleted file mode 100644 index e2ad143..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/hu/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/it/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/it/LC_MESSAGES/pidgin.mo deleted file mode 100644 index e3c9dc9..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/it/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ja/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ja/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 5520ae0..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ja/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mai/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mai/LC_MESSAGES/pidgin.mo deleted file mode 100644 index fb5e7eb..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mai/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mhr/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mhr/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 05e005a..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mhr/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mr/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mr/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 98602c5..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/mr/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nb/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nb/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 9f0af85..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nb/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nl/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nl/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 53f6659..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/nl/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pl/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pl/LC_MESSAGES/pidgin.mo deleted file mode 100644 index ad7a51b..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pl/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt/LC_MESSAGES/pidgin.mo deleted file mode 100644 index ede5b5e..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt_BR/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt_BR/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 73d6cd2..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/pt_BR/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ru/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ru/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 017964d..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/ru/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sl/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sl/LC_MESSAGES/pidgin.mo deleted file mode 100644 index de394ba..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sl/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sv/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sv/LC_MESSAGES/pidgin.mo deleted file mode 100644 index ba93ccb..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/sv/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/tr/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/tr/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 4469be0..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/tr/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/uk/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/uk/LC_MESSAGES/pidgin.mo deleted file mode 100644 index cab844a..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/uk/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_CN/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_CN/LC_MESSAGES/pidgin.mo deleted file mode 100644 index c1c1a4c..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_CN/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_TW/LC_MESSAGES/pidgin.mo b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_TW/LC_MESSAGES/pidgin.mo deleted file mode 100644 index 03239eb..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/Resources/zh_TW/LC_MESSAGES/pidgin.mo and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/libpurple b/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/libpurple deleted file mode 100755 index 1e88b81..0000000 Binary files a/telegram-adium/libpurple.framework/Versions/2.10.7r5340f4a9bd6a/libpurple and /dev/null differ diff --git a/telegram-adium/libpurple.framework/Versions/Current b/telegram-adium/libpurple.framework/Versions/Current deleted file mode 120000 index 2f39884..0000000 --- a/telegram-adium/libpurple.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -2.10.7r5340f4a9bd6a \ No newline at end of file diff --git a/telegram-adium/libpurple.framework/libpurple b/telegram-adium/libpurple.framework/libpurple deleted file mode 120000 index 727bff6..0000000 --- a/telegram-adium/libpurple.framework/libpurple +++ /dev/null @@ -1 +0,0 @@ -Versions/2.10.7r5340f4a9bd6a/libpurple \ No newline at end of file